@charset "UTF-8";
/* ===== RESET & BASE STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #334155;
  background-color: #ffffff;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #0f172a;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.25rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, #27c291, #186b4e);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

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

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

/* ===== HEADER & NAVIGATION ===== */
.header {
  background: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}
@media (max-width: 992px) {
  .header {
    background: #186b4e !important;
  }
}

.logo-bright {
  display: none;
}

@media (max-width: 992px) {
  .logo-dark {
    display: none;
  }
  .logo-bright {
    display: block;
  }
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.navbar-menu {
  display: flex;
  align-items: center;
  gap: 3rem;
}
@media (max-width: 992px) {
  .navbar-menu {
    display: none;
  }
}

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

.nav-item {
  position: relative;
}

.nav-link {
  color: #475569;
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #27c291;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  padding: 1rem 0;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: #475569;
  text-decoration: none;
  transition: all 0.3s ease;
}

.dropdown-menu a:hover {
  background: #f8fafc;
  color: #27c291;
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}
@media (max-width: 992px) {
  .mobile-menu-toggle {
    display: flex;
  }
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: #475569;
  border-radius: 2px;
  transition: all 0.3s ease;
}
@media (max-width: 992px) {
  .mobile-menu-toggle span {
    background: white;
  }
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  max-width: 90vw;
  height: 100%;
  background: white;
  z-index: 999;
  padding: 2rem 1.5rem;
  transition: right 0.3s ease;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
}
.mobile-menu.active {
  right: 0;
}

.mobile-menu-header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e2e8f0;
}
@media (max-width: 380px) {
  .mobile-menu-header {
    margin-left: -0.5rem;
    margin-right: -0.5rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}

.mobile-menu-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #475569;
  padding: 0.5rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.mobile-menu-close:hover {
  background: #f1f5f9;
  color: #27c291;
}
.mobile-menu-close:active {
  transform: scale(0.95);
}

.mobile-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav li {
  margin-bottom: 0.5rem;
}

.mobile-nav a {
  display: block;
  padding: 1rem 0;
  color: #475569;
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid #f1f5f9;
  transition: color 0.3s ease;
}
.mobile-nav a:hover {
  color: #27c291;
}

.mobile-actions {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-contact {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #e2e8f0;
}

.mobile-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 0;
  border-bottom: 1px solid #f1f5f9;
}
.mobile-contact-item:last-child {
  border-bottom: none;
}
.mobile-contact-item i {
  color: #27c291;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.mobile-contact-item span {
  color: #64748b;
  font-size: 0.875rem;
}
.mobile-contact-item a {
  color: #64748b;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}
.mobile-contact-item a:hover {
  color: #27c291;
}

.mobile-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mobile-nav .mobile-submenu {
  margin-left: 1rem;
  margin-top: 0.5rem;
  border-left: 2px solid #e2e8f0;
  padding-left: 1rem;
}
.mobile-nav .mobile-sub-submenu {
  margin-left: 1rem;
  margin-top: 0.5rem;
  border-left: 2px solid #f1f5f9;
  padding-left: 1rem;
}
.mobile-nav .mobile-submenu a,
.mobile-nav .mobile-sub-submenu a {
  font-size: 0.9rem;
  color: #64748b;
}
.mobile-nav .mobile-submenu a:hover,
.mobile-nav .mobile-sub-submenu a:hover {
  color: #27c291;
}
.mobile-nav .mobile-submenu a.active,
.mobile-nav .mobile-sub-submenu a.active {
  color: #27c291;
  font-weight: 600;
}

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

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

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

.navbar-nav .nav-item {
  position: relative;
}

.navbar-nav .nav-link {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #4a6559;
  text-decoration: none;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
  display: block;
}
.navbar-nav .nav-link:hover {
  color: #27c291;
}
.navbar-nav .nav-link.active {
  color: #27c291;
  font-weight: 600;
}

.nav-item.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a,
.dropdown-item {
  display: block;
  padding: 0.75rem 1.5rem;
  color: #4a6559;
  text-decoration: none;
  transition: all 0.3s ease;
}
.dropdown-menu a:hover,
.dropdown-item:hover {
  background: #f6fdf9;
  color: #27c291;
}
.dropdown-menu a.active,
.dropdown-item.active {
  color: #27c291;
  font-weight: 600;
}

.dropdown-item-wrapper {
  position: relative;
}
.dropdown-item-wrapper.has-submenu .dropdown-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.dropdown-item-wrapper:hover .dropdown-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.dropdown-item-wrapper.has-submenu:hover .submenu-arrow {
  opacity: 1;
}

.submenu-arrow {
  font-size: 0.8rem;
  opacity: 0.6;
  transition: opacity 0.3s ease;
  margin-left: auto;
}

.dropdown-submenu {
  position: absolute;
  top: 0;
  left: 100%;
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  padding: 1rem 0;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-10px);
  transition: all 0.3s ease;
  z-index: 1001;
  margin-left: 5px;
}
.dropdown-submenu .dropdown-item {
  display: block;
  padding: 0.75rem 1.5rem;
  color: #4a6559;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  background: none;
}
.dropdown-submenu .dropdown-item:hover {
  background: #f6fdf9;
  color: #27c291;
}
.dropdown-submenu .dropdown-item.active {
  color: #27c291;
  font-weight: 600;
}

@media (max-width: 768px) {
  .dropdown-submenu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding: 0;
    margin-left: 1rem;
    border-left: 2px solid #d1fae5;
  }
  .dropdown-item-wrapper.has-submenu .dropdown-item {
    display: block;
  }
  .submenu-arrow {
    display: none;
  }
}
/* ===== FOOTER ===== */
.footer {
  background: #14563f;
  color: white;
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2.5fr repeat(4, 1.5fr);
  gap: 3rem;
  margin-bottom: 3rem;
}

.brand-description {
  color: #a7f3d0;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  color: #a7f3d0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.social-link:hover {
  color: #bbeed1;
}

.footer-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: white;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: #a7f3d0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #bbeed1;
}

.footer-bottom {
  border-top: 1px solid #186b4e;
  padding-top: 2rem;
}

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

.copyright {
  color: #86cfb0;
}

.footer-bottom-links {
  display: flex;
  gap: 2rem;
}

.footer-bottom-links a {
  color: #86cfb0;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: white;
}

/* ===== INTERNAL PAGE STYLES ===== */
/* Page Header */
.page-header {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 4rem 0 1rem;
  border-bottom: 1px solid #e2e8f0;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
}

.breadcrumb a {
  color: #27c291;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: #186b4e;
}

.breadcrumb-separator {
  color: #86cfb0;
}

.page-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
  color: #0f172a;
}

.page-subtitle {
  font-size: 1.25rem;
  color: #64748b;
  max-width: 600px;
}

/* Main Content Layout */
.main-content {
  padding: 2rem 0;
  background: white;
}

.content-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 4rem;
  align-items: start;
}

/* Sidebar */
.sidebar {
  position: sticky;
  top: 2rem;
}

.sidebar-widget {
  background: #f8fafc;
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 2rem;
  border: 1px solid #e2e8f0;
}

.widget-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #0f172a;
}

.sidebar-nav {
  list-style: none;
}

.sidebar-nav li {
  margin-bottom: 0.75rem;
}

.sidebar-nav a {
  color: #475569;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  display: block;
  padding: 0.5rem 0;
}

.sidebar-nav a:hover {
  color: #27c291;
}

.widget-content p {
  color: #64748b;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

/* Content Sections */
.content {
  max-width: none;
}

.content-section {
  margin-bottom: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid #f1f5f9;
}

.content-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.content-section .section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #0f172a;
}

.intro-content .lead {
  font-size: 1.25rem;
  line-height: 1.6;
  color: #334155;
  margin-bottom: 2rem;
}

/* Highlight Sections */
.highlight-section {
  background: linear-gradient(135deg, #f8fafc, #e2e8f0);
  padding: 3rem;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
}

.highlight-content p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #334155;
  margin-bottom: 1.5rem;
}

.highlight-content strong {
  color: #27c291;
  font-weight: 600;
}

/* Versions Section */
.versions-section {
  margin-top: 3rem;
}

.versions-section h3 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: #0f172a;
}

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

.version-card {
  background: white;
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.version-card:hover {
  border-color: #27c291;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 120, 107, 0.1);
}

.version-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #27c291, #186b4e);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
}

.version-card h4 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #0f172a;
}

.version-card p {
  color: #64748b;
  line-height: 1.6;
}

.versions-note {
  font-style: italic;
  color: #64748b;
  background: #f8fafc;
  padding: 1.5rem;
  border-radius: 12px;
  border-left: 4px solid #27c291;
}

/* Standout Features */
.standout-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.feature-highlight {
  background: white;
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.feature-highlight:hover {
  border-color: #27c291;
  box-shadow: 0 10px 30px rgba(0, 120, 107, 0.1);
}

.feature-highlight h4 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #0f172a;
}

.feature-highlight p {
  color: #64748b;
  line-height: 1.6;
}

/* Communication Features */
.communication-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.comm-feature {
  background: white;
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.comm-feature:hover {
  border-color: #27c291;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 120, 107, 0.1);
}

.comm-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.comm-feature h4 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  color: #0f172a;
}

.comm-feature p {
  color: #64748b;
  font-size: 0.875rem;
}

/* Features Grid */
.features-intro {
  text-align: center;
  color: #64748b;
  font-size: 1.125rem;
  margin-bottom: 3rem;
}

.feature-categories {
  display: grid;
  gap: 2rem;
}

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

.category-item {
  background: white;
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.category-item:hover {
  border-color: #27c291;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 120, 107, 0.1);
}

.category-item h4 {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  color: #0f172a;
}

.feature-icons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.feature-icon-item {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #27c291, #186b4e);
  color: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: transform 0.3s ease;
}

.feature-icon-item:hover {
  transform: scale(1.1);
}

/* Content CTA */
.content-cta {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 2px solid #e2e8f0;
}

.cta-card {
  background: linear-gradient(135deg, #27c291, #186b4e);
  color: white;
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
}

.cta-card h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}

.cta-card p {
  font-size: 1.125rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

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

/* Fix button colors inside CTA card */
.cta-card .btn-outline {
  background: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.3);
}

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

.cta-card .btn-primary {
  background: white;
  color: #27c291;
  border-color: white;
}

.cta-card .btn-primary:hover {
  background: rgba(255, 255, 255, 0.9);
  color: #27c291;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* Responsive Design for Internal Pages */
@media (max-width: 1024px) {
  .content-layout {
    grid-template-columns: 250px 1fr;
    gap: 2rem;
  }
}
@media (max-width: 768px) {
  .content-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .sidebar {
    position: static;
    order: 2;
  }
  .content {
    order: 1;
  }
  .versions-grid,
  .standout-features,
  .category-row {
    grid-template-columns: 1fr;
  }
  .communication-features {
    grid-template-columns: 1fr;
  }
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
  .page-header {
    padding: 2rem 0 1rem;
  }
  .main-content {
    padding: 2rem 0;
  }
}
/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background: linear-gradient(135deg, #27c291, #186b4e);
  color: white;
  box-shadow: 0 4px 15px rgba(39, 194, 145, 0.3);
  border: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(39, 194, 145, 0.4);
}

.btn-secondary {
  background: white;
  color: #27c291;
  border-color: #27c291;
}

.btn-secondary:hover {
  background: #27c291;
  color: white;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: #27c291;
  border-color: #e2e8f0;
}

.btn-outline:hover {
  background: #f8fafc;
  border-color: #27c291;
}

.btn-large {
  padding: 1.25rem 2.5rem;
  font-size: 1.125rem;
}

.btn-icon {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.btn:hover .btn-icon {
  transform: translateX(3px);
}

/* ===== HERO BADGES ===== */
.trust-badges {
  display: flex;
  gap: 1rem;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 0.875rem;
}

.trust-badge .icon {
  width: 16px;
  height: 16px;
  display: inline-block;
  position: relative;
}

.trust-badge .icon.shield::before {
  content: "🛡️";
  font-size: 16px;
}

.trust-badge .icon.check::before {
  content: "✓";
  font-weight: bold;
  color: #10b981;
  font-size: 16px;
}

.trust-badge.ssl .icon.check::before {
  color: #6b7280;
}

.trust-badge.ccpa .icon.check::before {
  color: #27c291;
}

.trust-badge.hipaa .icon.check::before {
  color: #10b981;
}

.badge-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.badge-title {
  font-weight: 600;
  color: #374151;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

.badge-subtitle {
  font-weight: 400;
  color: #6b7280;
  font-size: 0.625rem;
}

/* ===== HERO IMAGE ===== */
.hero-image {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 1200px) {
  .hero-image {
    max-width: 1300px;
  }
}
.hero-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}
@media (min-width: 769px) {
  .hero-image img {
    max-width: 100%;
    transform: scale(1.2);
    transform-origin: center;
  }
}
@media (min-width: 1200px) {
  .hero-image img {
    transform: scale(1.3);
  }
}
@media (max-width: 768px) and (min-width: 481px) {
  .hero-image img {
    max-width: 625px;
    margin: 0 auto;
  }
}
@media (max-width: 480px) {
  .hero-image img {
    max-width: 100%;
    margin: 0 auto;
  }
}

.dashboard-mockup {
  background: white;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
}

.mockup-header {
  background: #f8fafc;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mockup-controls {
  display: flex;
  gap: 0.5rem;
}

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

.control.red {
  background: #ef4444;
}

.control.yellow {
  background: #f59e0b;
}

.control.green {
  background: #10b981;
}

.mockup-title {
  font-weight: 600;
  color: #475569;
}

.mockup-content {
  padding: 1.5rem;
}

.dashboard-nav {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.nav-item {
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-item.active {
  background: #27c291;
  color: white;
}

.nav-item:not(.active) {
  color: #64748b;
}

.nav-item:not(.active):hover {
  background: #f1f5f9;
}

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

.dashboard-header h3 {
  font-size: 1.25rem;
  color: #0f172a;
}

.date {
  color: #64748b;
  font-size: 0.875rem;
}

.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.stat-card {
  background: #f8fafc;
  padding: 1rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.stat-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.stat-icon.blue {
  background: rgba(39, 194, 145, 0.1);
}

.stat-icon.green {
  background: rgba(16, 185, 129, 0.1);
}

.stat-icon.purple {
  background: rgba(139, 92, 246, 0.1);
}

.stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
}

.stat-name {
  font-size: 0.75rem;
  color: #64748b;
}

.recent-activity h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: #0f172a;
}

.activity-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid #f1f5f9;
}

.activity-item:last-child {
  border-bottom: none;
}

.activity-avatar {
  width: 32px;
  height: 32px;
  background: #27c291;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.875rem;
}

.activity-text {
  flex: 1;
  font-size: 0.875rem;
}

.activity-time {
  font-size: 0.75rem;
  color: #86cfb0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  transition: 0.15s ease;
}
.logo:hover {
  transform: translateY(-1px);
}

.logo-svg,
.logo-img {
  height: 42px;
  width: auto;
  transition: 0.15s ease;
  filter: brightness(1);
}
.logo:hover .logo-svg,
.logo:hover .logo-img {
  filter: brightness(1.1);
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: #27c291;
  color: #ffffff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.25rem;
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: -0.02em;
  transition: background-color 0.15s ease;
}
.logo-icon:hover {
  background: #186b4e;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: linear-gradient(135deg, #27c291, #34d9a3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
  line-height: 1.2;
  transition: 0.15s ease;
}
.logo:hover .logo-text {
  background: linear-gradient(135deg, #186b4e, #1fa576);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-brand .logo {
  margin-bottom: 1rem;
}

.footer-brand .logo-text {
  background: linear-gradient(135deg, #ffffff, #dcf7e8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== TOP BAR ===== */
.top-bar {
  background: #14563f;
  color: white;
  padding: 0;
  font-size: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  line-height: 1;
}
.top-bar .container {
  padding-top: 0;
  padding-bottom: 0;
  padding-right: 0;
  padding-left: 0;
}

.top-bar-content {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 32px;
  max-height: 32px;
  gap: 0.5rem;
  padding: 0 1rem;
}
.top-bar-content .separator {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.5rem;
  line-height: 1;
}
.top-bar-content .top-link {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: all 0.2s ease;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.25rem 0.5rem;
  border-radius: 3px;
  line-height: 1;
}
.top-bar-content .top-link:hover {
  color: white;
  background: rgba(255, 255, 255, 0.08);
}

.email-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.5rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 3px;
  color: white;
  text-decoration: none;
  transition: all 0.2s ease;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1;
}
.email-badge i,
.email-badge svg {
  width: 0.75rem;
  height: 0.75rem;
  flex-shrink: 0;
  opacity: 0.9;
}
.email-badge span {
  line-height: 1;
}
.email-badge:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* ===== HERO SECTION ===== */
.hero {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 5rem 0;
  overflow: hidden;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.hero-image-desktop {
  text-align: center;
}
.hero-image-desktop img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}
@media (max-width: 1024px) {
  .hero-image-desktop {
    display: none;
  }
}

.app-badges {
  display: inline-flex;
  align-items: center;
  gap: 0;
  justify-content: center;
  margin-bottom: 1.25rem;
  background: #fff;
  border-radius: 14px;
  padding: 0.5rem 0.25rem;
  border: 1px solid #cbd5e1;
}
.app-badges .app-badge {
  display: inline-block;
  transition: opacity 0.2s ease;
}
.app-badges .app-badge img {
  height: 52px;
  width: auto;
  display: block;
}
.app-badges .app-badge:first-child {
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}
.app-badges .app-badge:hover {
  opacity: 0.8;
}
.app-badges .app-badge:focus-visible {
  outline: 2px solid #27c291;
  outline-offset: -2px;
  border-radius: 8px;
}
@media (max-width: 1024px) {
  .app-badges {
    justify-content: center;
    margin-bottom: 1rem;
  }
}

.hero-image-mobile {
  display: none;
}
.hero-image-mobile img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}
@media (max-width: 1024px) {
  .hero-image-mobile {
    display: block;
    margin: 2rem 0;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 120, 107, 0.1);
  color: #27c291;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
@media (max-width: 400px) {
  .hero-badge {
    font-size: 0.875rem;
    padding: 0.6rem 1rem;
  }
}

.badge-icon {
  font-size: 1.25rem;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.highlight {
  color: #27c291;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: #4a6559;
  margin-bottom: 2rem;
  line-height: 1.6;
  max-width: 500px;
}
@media (max-width: 1024px) {
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 576px) {
  .hero-stats {
    gap: 1rem;
  }
}

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

.stat-number {
  font-size: 1.75rem;
  font-weight: 700;
  color: #27c291;
}

.stat-label {
  font-size: 0.875rem;
  color: #4a6559;
}

.stat-context {
  font-size: 0.75rem;
  color: #547762;
  font-style: italic;
  margin-top: 0.25rem;
  line-height: 1.4;
  opacity: 0.9;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  justify-content: center;
}
@media (max-width: 576px) {
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
}

.hero-trust {
  margin-top: 2rem;
}

.trust-text {
  color: #4a6559;
  font-size: 0.875rem;
  text-align: center;
}

.trust-badges {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .trust-badges {
    gap: 1rem;
  }
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #4a6559;
}
.trust-badge i {
  width: 16px;
  height: 16px;
  color: #27c291;
}

/* ===== LOGO CLOUD ===== */
.logo-cloud {
  padding: 4rem 0;
  background: white;
}

.logo-cloud-title {
  text-align: center;
  color: #64748b;
  margin-bottom: 2rem;
  font-weight: 500;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  align-items: center;
}

.logo-item {
  text-align: center;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.logo-item:hover {
  opacity: 1;
}

.logo-placeholder {
  background: #f1f5f9;
  padding: 1rem;
  border-radius: 12px;
  color: #64748b;
  font-weight: 500;
  font-size: 0.875rem;
}

/* ===== SOLUTION SPOTLIGHT ===== */
.solution-spotlight {
  padding: 5rem 0;
  background: white;
}

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

.process-steps {
  margin: 2rem 0;
}

.process-step {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.step-number {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #27c291, #186b4e);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.step-content h4 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  color: #0f172a;
}

.step-content p {
  color: #64748b;
  line-height: 1.5;
}

.timeline-mockup {
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  padding: 2rem;
}

.timeline-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e2e8f0;
}

.timeline-header h3 {
  font-size: 1.25rem;
  color: #0f172a;
}

.timeline-date {
  color: #64748b;
  font-size: 0.875rem;
}

.timeline-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #f1f5f9;
}

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

.timeline-time {
  font-size: 0.875rem;
  color: #64748b;
  font-weight: 500;
  min-width: 60px;
}

.timeline-event {
  display: flex;
  gap: 0.75rem;
  flex: 1;
}

.event-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.event-icon.departure {
  background: rgba(239, 68, 68, 0.1);
  color: #dc2626;
}

.event-icon.care {
  background: rgba(245, 158, 11, 0.1);
  color: #d97706;
}

.event-icon.meal {
  background: rgba(34, 197, 94, 0.1);
  color: #047857;
}

.event-icon.photo {
  background: rgba(39, 194, 145, 0.1);
  color: #27c291;
}

.event-icon.milestone {
  background: rgba(0, 120, 107, 0.1);
  color: #27c291;
}

.event-icon.sleep {
  background: rgba(139, 92, 246, 0.1);
  color: #7c3aed;
}

.event-details strong {
  color: #0f172a;
}

.event-meta {
  display: block;
  font-size: 0.75rem;
  color: #86cfb0;
  margin-top: 0.25rem;
}

/* ===== FEATURES OVERVIEW ===== */
.features-overview {
  padding: 5rem 0;
  background: #f6fdf9;
}

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

.feature-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.feature-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  transform: translateY(-5px);
}

.feature-icon {
  margin-bottom: 1.5rem;
}

.feature-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(135deg, #547762, #4a6559);
}

.icon-wrapper.blue {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(135deg, #22c55e, #16a34a);
}

.icon-wrapper.green {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(135deg, #34d9a3, #1fa576);
}

.icon-wrapper.purple {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(135deg, #6D28D9, #4c1d95);
}

.icon-wrapper.orange {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(135deg, #FF6100, #C2410C);
}

.icon-wrapper.red {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(135deg, #f97316, #ea580c);
}

.icon-wrapper.teal {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(135deg, #27c291, #186b4e);
}

.icon-wrapper.yellow {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(135deg, #eab308, #ca8a04);
}

.feature-title {
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1a332d;
}

.feature-description {
  color: #547762;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

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

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

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

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 5rem 0;
  background: #f8fafc;
}

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

.testimonial-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.testimonial-rating {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.stars {
  color: #fbbf24;
  font-size: 1.25rem;
}

.rating-text {
  color: #64748b;
  font-size: 0.875rem;
}

.testimonial-quote {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #334155;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

.author-name {
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.25rem;
}

.author-title {
  color: #27c291;
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.author-location {
  color: #86cfb0;
  font-size: 0.75rem;
}

.testimonials-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.testimonials-stats .stat-item {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.testimonials-stats .stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #27c291;
  margin-bottom: 0.5rem;
}

.testimonials-stats .stat-label {
  color: #64748b;
  font-weight: 500;
}

/* ===== PRICING ===== */
.pricing {
  padding: 5rem 0;
  background: white;
}

/* Matrix pricing structure */
.pricing-matrix {
  max-width: 900px;
  margin: 0 auto;
}

.pricing-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
  gap: 0.5rem;
}

.tab-button {
  padding: 0.5rem 1.5rem;
  border: 2px solid #e2e8f0;
  background: white;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.875rem;
  color: #64748b;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-button.active,
.tab-button:hover {
  border-color: #27c291;
  background: #27c291;
  color: white;
}

.matrix-table {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  border: 1px solid #e2e8f0;
}

.matrix-header {
  display: grid;
  grid-template-columns: 220px 1fr 1fr 1fr;
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  border-bottom: 2px solid #e2e8f0;
}

.header-cell {
  padding: 1rem 0.75rem;
  text-align: center;
  font-weight: 700;
  font-size: 0.875rem;
  color: #475569;
}

.header-cell.empty {
  background: transparent;
}

.header-cell.premium {
  background: linear-gradient(135deg, #27c291, #186b4e);
  color: white;
  position: relative;
}

.header-cell.premium::after {
  content: "★";
  position: absolute;
  top: 0.25rem;
  right: 0.5rem;
  font-size: 0.75rem;
}

.matrix-row {
  display: grid;
  grid-template-columns: 220px 1fr 1fr 1fr;
  border-bottom: 1px solid #f1f5f9;
  transition: all 0.2s ease;
}

.matrix-row:hover {
  background: #fafbfc;
}

.matrix-row.popular {
  background: linear-gradient(90deg, rgba(0, 120, 107, 0.03), rgba(0, 120, 107, 0.01));
}

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

.row-header {
  padding: 1rem 0.75rem;
  font-weight: 600;
  color: #0f172a;
  background: #fafbfc;
  border-right: 1px solid #f1f5f9;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  white-space: nowrap;
}

.popular-tag {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 4px rgba(251, 191, 36, 0.3);
  flex-shrink: 0;
}

.price-cell {
  padding: 1rem 0.75rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.125rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.price-cell:hover {
  background: rgba(0, 120, 107, 0.05);
  transform: scale(1.02);
}

.price-cell.premium {
  background: linear-gradient(135deg, rgba(0, 120, 107, 0.1), rgba(17, 94, 89, 0.1));
  border-left: 2px solid #27c291;
}

.price-cell.premium:hover {
  background: linear-gradient(135deg, rgba(0, 120, 107, 0.15), rgba(17, 94, 89, 0.15));
}

.price {
  font-size: 1.5rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1;
}

.yearly {
  font-size: 0.625rem;
  color: #64748b;
  font-weight: 500;
}

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

.pricing-info {
  margin-top: 1.5rem;
  text-align: center;
  background: #f8fafc;
  border-radius: 8px;
  padding: 1rem;
  border-left: 4px solid #27c291;
}

.pricing-info p {
  margin-bottom: 0.5rem;
  color: #475569;
  font-size: 0.875rem;
  line-height: 1.5;
}

.pricing-info p:last-child {
  margin-bottom: 0;
}

.pricing-note {
  text-align: center;
  color: #64748b;
  font-size: 0.875rem;
  margin-top: 1.5rem;
}

/* ===== CARD-BASED PRICING (NEW) ===== */
.pricing-section {
  padding: 60px 20px;
  background: #f8f9fa;
  overflow-x: hidden;
}
.pricing-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Billing Toggle */
.billing-toggle {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 40px 0;
  padding: 8px;
  background: white;
  border-radius: 50px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.toggle-btn {
  padding: 12px 32px;
  border: none;
  background: transparent;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  color: #4a5568;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}
.toggle-btn.active {
  background: #27c291;
  color: white;
  box-shadow: 0 4px 12px rgba(39, 194, 145, 0.3);
}
.toggle-btn:hover:not(.active) {
  color: #27c291;
}

.save-badge {
  display: inline-block;
  background: #fbbf24;
  color: #78350f;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 700;
  margin-left: 6px;
  vertical-align: middle;
}

/* Pricing Cards Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

.pricing-card {
  background: white;
  padding: 25px 20px;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  border: 2px solid transparent;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.pricing-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}
.pricing-card.featured {
  border-color: #27c291;
  box-shadow: 0 8px 32px rgba(39, 194, 145, 0.2);
  transform: scale(1.02);
}
.pricing-card.featured:hover {
  transform: scale(1.02) translateY(-4px);
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: white;
  padding: 8px 24px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(251, 191, 36, 0.4);
  white-space: nowrap;
}

.plan-badge {
  display: inline-block;
  background: rgba(39, 194, 145, 0.1);
  color: #27c291;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 10px;
}

.plan-icon {
  font-size: 36px;
  margin-bottom: 8px;
  text-align: center;
}

.plan-name {
  font-size: 22px;
  font-weight: 700;
  color: #1a332d;
  margin-bottom: 12px;
  text-align: center;
}

.plan-price {
  text-align: center;
  margin-bottom: 12px;
}
.plan-price.hidden {
  display: none;
}
.plan-price .price-amount {
  font-size: 36px;
  font-weight: 800;
  color: #1a332d;
  line-height: 1;
}
.plan-price .price-period {
  font-size: 15px;
  color: #4a6559;
  font-weight: 500;
}
.plan-price .price-save {
  display: none;
}

.plan-capacity {
  text-align: center;
  padding: 8px 10px;
  background: rgba(39, 194, 145, 0.05);
  border-radius: 8px;
  margin-bottom: 12px;
}
.plan-capacity strong {
  font-size: 15px;
  color: #27c291;
  font-weight: 600;
}

.plan-best-for {
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #d1fae5;
}
.plan-best-for p {
  font-size: 13px;
  font-weight: 600;
  color: #1a332d;
  margin-bottom: 6px;
}
.plan-best-for ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.plan-best-for ul li {
  padding: 2px 0;
  color: #4a6559;
  font-size: 13px;
  padding-left: 16px;
  position: relative;
  line-height: 1.4;
}
.plan-best-for ul li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: #27c291;
  font-weight: 700;
  font-size: 12px;
}

.plan-features {
  margin-bottom: 15px;
  flex: 1;
}
.plan-features p {
  font-size: 13px;
  font-weight: 600;
  color: #1a332d;
  margin-bottom: 8px;
}
.plan-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.plan-features ul li {
  padding: 3px 0;
  color: #4a6559;
  font-size: 13px;
  line-height: 1.4;
}
.plan-features ul li:nth-child(n+6) {
  display: none;
}

.plan-popular-note {
  text-align: center;
  margin: 15px 0 10px;
  padding-top: 12px;
  border-top: 1px solid #d1fae5;
}
.plan-popular-note p {
  font-size: 13px;
  color: #27c291;
  font-weight: 600;
  margin: 0;
}

/* Enterprise Plan */
.enterprise-plan {
  background: linear-gradient(135deg, rgba(39, 194, 145, 0.08), rgba(52, 217, 163, 0.08));
  padding: 40px;
  border-radius: 16px;
  text-align: center;
  margin-top: 40px;
  border: 2px solid rgba(39, 194, 145, 0.2);
}

.enterprise-content h3 {
  font-size: 28px;
  font-weight: 700;
  color: #1a332d;
  margin-bottom: 15px;
}
.enterprise-content p {
  font-size: 18px;
  color: #4a6559;
  margin-bottom: 25px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Pricing Trust Signals */
.pricing-trust {
  margin-top: 50px;
  padding: 30px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.trust-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.trust-list li {
  padding: 15px 20px;
  background: rgba(39, 194, 145, 0.03);
  border-radius: 8px;
  color: #1a332d;
  font-size: 15px;
  line-height: 1.6;
  border-left: 4px solid #27c291;
}
.trust-list li strong {
  font-weight: 700;
  color: #27c291;
}

/* What's Included Section (pricing page only) */
.pricing-included {
  padding: 60px 20px;
  background: white;
  overflow-x: hidden;
}
.pricing-included .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

.feature-category {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
.feature-category:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.category-icon {
  font-size: 48px;
  margin-bottom: 15px;
}

.category-title {
  font-size: 22px;
  font-weight: 700;
  color: #1a332d;
  margin-bottom: 20px;
}

.pricing-included .feature-category .feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 15px 0;
}
.pricing-included .feature-category .feature-list li {
  padding: 8px 0 8px 20px;
  color: #4a6559;
  font-size: 15px;
  position: relative;
}
.pricing-included .feature-category .feature-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #27c291;
  font-weight: 700;
}

.unlimited-badge {
  display: inline-block;
  background: rgba(39, 194, 145, 0.1);
  color: #27c291;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-top: 10px;
}

/* Plan Comparison Table */
.comparison-table-wrapper {
  overflow-x: auto;
  margin-top: 40px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  min-width: 600px;
}
.comparison-table thead {
  background: linear-gradient(135deg, #27c291, rgb(30.4635193133, 151.5364806867, 113.2618025751));
  color: white;
}
.comparison-table thead th {
  padding: 20px;
  text-align: left;
  font-size: 18px;
  font-weight: 700;
}
.comparison-table thead th:first-child {
  text-align: left;
}
.comparison-table thead th.featured-col {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  position: relative;
}
.comparison-table thead th.featured-col:after {
  content: "⭐";
  margin-left: 8px;
}
.comparison-table tbody tr {
  border-bottom: 1px solid #d1fae5;
}
.comparison-table tbody tr:last-child {
  border-bottom: none;
}
.comparison-table tbody tr:nth-child(even) {
  background: #f8f9fa;
}
.comparison-table tbody tr.section-header-row {
  background: linear-gradient(90deg, rgba(39, 194, 145, 0.08), rgba(39, 194, 145, 0.03));
}
.comparison-table tbody tr.section-header-row td {
  padding: 15px 20px;
  font-weight: 700;
  color: #27c291;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.comparison-table tbody tr td {
  padding: 16px 20px;
  font-size: 15px;
  color: #1a332d;
}
.comparison-table tbody tr td:first-child {
  font-weight: 500;
}
.comparison-table tbody tr td.featured-col {
  background: rgba(251, 191, 36, 0.08);
  font-weight: 600;
}
.comparison-table tbody tr td strong {
  font-weight: 700;
}

/* No Hidden Fees Section */
.no-fees-section {
  padding: 60px 20px;
  background: #f8f9fa;
  overflow-x: hidden;
}
.no-fees-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.free-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 40px;
}
@media (max-width: 1024px) {
  .free-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .free-features-grid {
    grid-template-columns: 1fr;
  }
}

.free-feature-card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
}
.free-feature-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}
.free-feature-card .free-icon {
  font-size: 48px;
  margin-bottom: 15px;
}
.free-feature-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1a332d;
  margin-bottom: 12px;
}
.free-feature-card .regular-price {
  font-size: 14px;
  color: #547762;
  text-decoration: line-through;
  margin-bottom: 8px;
}
.free-feature-card .our-price {
  font-size: 22px;
  font-weight: 700;
  color: #10b981;
  margin-bottom: 10px;
}
.free-feature-card .our-price strong {
  font-size: 28px;
}
.free-feature-card .savings {
  font-size: 14px;
  color: #4a6559;
  font-style: italic;
}

/* Savings Example */
.savings-example {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  margin-top: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.savings-example h3 {
  font-size: 26px;
  font-weight: 700;
  color: #1a332d;
  margin-bottom: 15px;
  text-align: center;
}
.savings-example > p {
  font-size: 16px;
  color: #4a6559;
  text-align: center;
  margin-bottom: 30px;
}

.savings-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}
.savings-table thead {
  background: linear-gradient(135deg, #27c291, rgb(30.4635193133, 151.5364806867, 113.2618025751));
  color: white;
}
.savings-table thead th {
  padding: 15px;
  text-align: left;
  font-size: 16px;
  font-weight: 700;
}
.savings-table thead th:first-child {
  text-align: left;
}
.savings-table tbody tr {
  border-bottom: 1px solid #d1fae5;
}
.savings-table tbody tr:nth-child(even) {
  background: #f8f9fa;
}
.savings-table tbody tr.total-row {
  background: rgba(39, 194, 145, 0.08);
  font-weight: 700;
  font-size: 18px;
}
.savings-table tbody tr.total-row td {
  padding: 20px 15px;
}
.savings-table tbody tr.savings-row {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(16, 185, 129, 0.08));
}
.savings-table tbody tr.savings-row td {
  padding: 20px 15px;
  text-align: center;
  color: #065f46;
  font-size: 18px;
  font-weight: 700;
}
.savings-table tbody tr td {
  padding: 15px;
  font-size: 15px;
  color: #1a332d;
}
.savings-table tbody tr td:first-child {
  font-weight: 500;
}
.savings-table tbody tr td strong {
  font-weight: 700;
  color: #10b981;
}

/* CTA Section */
.cta-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, rgba(39, 194, 145, 0.08), rgba(52, 217, 163, 0.08));
  text-align: center;
  overflow-x: hidden;
}
.cta-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.cta-title {
  font-size: 42px;
  font-weight: 700;
  color: #1a332d;
  margin-bottom: 20px;
  line-height: 1.2;
}

.cta-text {
  font-size: 20px;
  line-height: 1.7;
  color: #4a6559;
  max-width: 800px;
  margin: 0 auto 40px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.cta-features {
  margin-top: 40px;
}
.cta-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}
.cta-features ul li {
  font-size: 16px;
  color: #4a6559;
  font-weight: 500;
}

.cta-testimonial {
  background: white;
  padding: 30px 40px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  max-width: 700px;
  margin: 50px auto 0;
  border-left: 4px solid #27c291;
}
.cta-testimonial .testimonial-quote {
  font-size: 18px;
  line-height: 1.7;
  color: #1a332d;
  font-style: italic;
  margin-bottom: 15px;
}
.cta-testimonial .testimonial-quote:before {
  content: '"';
  font-size: 48px;
  color: #27c291;
  opacity: 0.3;
  line-height: 0;
  vertical-align: middle;
  margin-right: 5px;
}
.cta-testimonial .testimonial-author {
  font-size: 14px;
  color: #4a6559;
  font-weight: 600;
  text-align: right;
  margin: 0;
}

/* Responsive design */
@media (max-width: 768px) {
  /* Matrix pricing responsive */
  .matrix-header,
  .matrix-row {
    grid-template-columns: 140px 1fr 1fr 1fr;
    font-size: 0.75rem;
  }
  .header-cell,
  .row-header,
  .price-cell {
    padding: 0.75rem 0.5rem;
  }
  .price {
    font-size: 1.25rem;
  }
  .yearly {
    font-size: 0.5rem;
  }
  .popular-tag {
    font-size: 0.5rem;
    padding: 0.125rem 0.5rem;
  }
  .matrix-actions {
    flex-direction: column;
    align-items: center;
  }
  /* Card pricing responsive */
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .pricing-card {
    padding: 30px 20px;
  }
  .pricing-card.featured {
    transform: scale(1);
  }
  .pricing-card.featured:hover {
    transform: translateY(-4px);
  }
  .plan-name {
    font-size: 24px;
  }
  .plan-price .price-amount {
    font-size: 36px;
  }
  .billing-toggle {
    flex-direction: column;
    gap: 8px;
    padding: 12px;
    max-width: 250px;
  }
  .toggle-btn {
    width: 100%;
    padding: 10px 20px;
    font-size: 14px;
  }
  .features-grid,
  .free-features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .trust-list {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .comparison-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .cta-title {
    font-size: 32px;
  }
  .cta-text {
    font-size: 18px;
  }
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
  .cta-features ul {
    flex-direction: column;
    gap: 15px;
  }
  .savings-example {
    padding: 30px 20px;
  }
  .savings-table {
    font-size: 14px;
  }
  .savings-table thead th,
  .savings-table tbody td {
    padding: 10px;
  }
  .cta-testimonial {
    padding: 25px 20px;
  }
  .cta-testimonial .testimonial-quote {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  /* Matrix pricing responsive */
  .matrix-header,
  .matrix-row {
    grid-template-columns: 110px 1fr 1fr 1fr;
  }
  .row-header {
    font-size: 0.75rem;
  }
  .popular-tag {
    font-size: 0.45rem;
    padding: 0.125rem 0.375rem;
  }
  /* Card pricing responsive */
  .pricing-card {
    padding: 25px 15px;
  }
  .plan-name {
    font-size: 22px;
  }
  .plan-price .price-amount {
    font-size: 32px;
  }
  .popular-badge {
    font-size: 12px;
    padding: 6px 16px;
  }
  .cta-title {
    font-size: 28px;
  }
  .cta-text {
    font-size: 16px;
  }
  .feature-category {
    padding: 25px 20px;
  }
  .category-title {
    font-size: 20px;
  }
  .free-feature-card {
    padding: 25px 20px;
  }
  .free-feature-card h3 {
    font-size: 18px;
  }
  .savings-example h3 {
    font-size: 22px;
  }
  .enterprise-content h3 {
    font-size: 24px;
  }
  .enterprise-content p {
    font-size: 16px;
  }
}
/* ===== CTA SECTION ===== */
.cta {
  padding: 6rem 0;
  background: linear-gradient(135deg, #27c291, #186b4e);
  color: white;
  text-align: center;
}

.cta-content {
  margin-bottom: 3rem;
}

.cta-text h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  margin-bottom: 1rem;
  color: white;
}

.cta-text p {
  font-size: 1.25rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.cta-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.cta-feature {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  opacity: 0.9;
}

.cta-feature .feature-icon {
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

#privacy-policy.content-section,
#terms-of-service.content-section,
#cookie-policy.content-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 60px;
}

#privacy-policy .section-title,
#terms-of-service .section-title,
#cookie-policy .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 2rem;
  text-align: center;
}

#privacy-policy .intro-content,
#terms-of-service .intro-content,
#cookie-policy .intro-content {
  margin-bottom: 3rem;
  padding: 2rem;
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}
#privacy-policy .intro-content .lead,
#terms-of-service .intro-content .lead,
#cookie-policy .intro-content .lead {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #334155;
  margin-bottom: 1.5rem;
}

#privacy-policy .highlight-text,
#terms-of-service .highlight-text,
#cookie-policy .highlight-text {
  background: #f6fdf9;
  padding: 1.25rem;
  border-left: 4px solid #27c291;
  margin: 1.5rem 0;
  font-size: 1rem;
  line-height: 1.6;
  border-radius: 8px;
  color: #334155;
}

#privacy-policy .policy-section,
#terms-of-service .policy-section,
#cookie-policy .policy-section {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e2e8f0;
}
#privacy-policy .policy-section:last-child,
#terms-of-service .policy-section:last-child,
#cookie-policy .policy-section:last-child {
  border-bottom: none;
}
#privacy-policy .policy-section h3,
#terms-of-service .policy-section h3,
#cookie-policy .policy-section h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #27c291;
  margin-bottom: 1.5rem;
  margin-top: 0;
}
#privacy-policy .policy-section h4,
#terms-of-service .policy-section h4,
#cookie-policy .policy-section h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 1rem;
  margin-top: 1.5rem;
}
#privacy-policy .policy-section p,
#terms-of-service .policy-section p,
#cookie-policy .policy-section p {
  font-size: 1rem;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 1rem;
}
#privacy-policy .policy-section strong,
#terms-of-service .policy-section strong,
#cookie-policy .policy-section strong {
  color: #0f172a;
  font-weight: 600;
}
#privacy-policy .policy-section a,
#terms-of-service .policy-section a,
#cookie-policy .policy-section a {
  color: #27c291;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
  font-weight: 500;
}
#privacy-policy .policy-section a:hover,
#terms-of-service .policy-section a:hover,
#cookie-policy .policy-section a:hover {
  color: #186b4e;
  border-bottom-color: #186b4e;
}

#privacy-policy .subsection,
#terms-of-service .subsection,
#cookie-policy .subsection {
  margin: 1.5rem 0;
  padding-left: 1.5rem;
}

#privacy-policy .policy-list,
#privacy-policy .contact-list,
#terms-of-service .policy-list,
#terms-of-service .contact-list,
#cookie-policy .policy-list,
#cookie-policy .contact-list {
  list-style: none;
  padding-left: 0;
  margin: 1rem 0 1.5rem 0;
}
#privacy-policy .policy-list li,
#privacy-policy .contact-list li,
#terms-of-service .policy-list li,
#terms-of-service .contact-list li,
#cookie-policy .policy-list li,
#cookie-policy .contact-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.75rem;
  line-height: 1.8;
  color: #475569;
}

#privacy-policy .policy-list li:before,
#terms-of-service .policy-list li:before,
#cookie-policy .policy-list li:before {
  content: "•";
  position: absolute;
  left: 0.5rem;
  color: #27c291;
  font-weight: bold;
  font-size: 1.2rem;
}

#privacy-policy .contact-list li:before,
#terms-of-service .contact-list li:before,
#cookie-policy .contact-list li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: #27c291;
  font-weight: bold;
}

#privacy-policy .policy-list ul,
#privacy-policy .policy-list ol,
#terms-of-service .policy-list ul,
#terms-of-service .policy-list ol,
#cookie-policy .policy-list ul,
#cookie-policy .policy-list ol {
  margin-top: 0.5rem;
  margin-left: 1rem;
}
#privacy-policy .policy-list ul li,
#privacy-policy .policy-list ol li,
#terms-of-service .policy-list ul li,
#terms-of-service .policy-list ol li,
#cookie-policy .policy-list ul li,
#cookie-policy .policy-list ol li {
  font-size: 0.95rem;
}

#privacy-policy .important-notice,
#terms-of-service .important-notice,
#cookie-policy .important-notice {
  background: #fffbeb;
  padding: 2rem;
  border-radius: 12px;
  border: 2px solid #fbbf24;
}
#privacy-policy .important-notice h3,
#terms-of-service .important-notice h3,
#cookie-policy .important-notice h3 {
  color: #d97706;
}

#terms-of-service .important-notice .highlight-text {
  background: #fef3c7;
  border-left-color: #d97706;
}

#privacy-policy .contact-section,
#terms-of-service .contact-section,
#cookie-policy .contact-section {
  background: #f8fafc;
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

#privacy-policy .contact-info,
#terms-of-service .contact-info,
#cookie-policy .contact-info {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid #27c291;
  margin-top: 1rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}
#privacy-policy .contact-info p,
#terms-of-service .contact-info p,
#cookie-policy .contact-info p {
  margin-bottom: 1rem;
  color: #475569;
}
#privacy-policy .contact-info p:last-child,
#terms-of-service .contact-info p:last-child,
#cookie-policy .contact-info p:last-child {
  margin-bottom: 0;
}
#privacy-policy .contact-info strong,
#terms-of-service .contact-info strong,
#cookie-policy .contact-info strong {
  color: #0f172a;
}

#privacy-policy .meta-info,
#terms-of-service .meta-info,
#cookie-policy .meta-info {
  font-size: 0.95rem;
  color: #64748b;
  margin-bottom: 1.5rem;
}

#terms-of-service .meta-info {
  font-style: italic;
}

#cookie-policy .table-wrapper {
  overflow-x: auto;
  margin: 2rem 0;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

#cookie-policy .policy-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  font-size: 0.95rem;
}
#cookie-policy .policy-table thead {
  background: #f8fafc;
  border-bottom: 2px solid #27c291;
}
#cookie-policy .policy-table thead th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  color: #0f172a;
  border-bottom: 2px solid #27c291;
}
#cookie-policy .policy-table tbody tr {
  border-bottom: 1px solid #e2e8f0;
}
#cookie-policy .policy-table tbody tr:last-child {
  border-bottom: none;
}
#cookie-policy .policy-table tbody tr:hover {
  background: #f8fafc;
}
#cookie-policy .policy-table tbody td {
  padding: 1rem;
  color: #475569;
  vertical-align: top;
}
#cookie-policy .policy-table tbody td code {
  background: #f1f5f9;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-family: "Courier New", monospace;
  font-size: 0.9em;
  color: #0f172a;
}

#cookie-policy .note {
  background: #f1f5f9;
  padding: 1rem 1.25rem;
  border-left: 4px solid #64748b;
  border-radius: 8px;
  margin: 1.5rem 0;
  font-size: 0.95rem;
  color: #475569;
}
#cookie-policy .note strong {
  color: #0f172a;
}

#cookie-policy .policy-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 2px solid #e2e8f0;
  text-align: center;
}
#cookie-policy .policy-footer .meta-info {
  font-size: 0.95rem;
  color: #64748b;
}
#cookie-policy .policy-footer .meta-info strong {
  color: #0f172a;
}
#cookie-policy .policy-footer .meta-info em {
  display: block;
  margin-top: 0.5rem;
  font-style: italic;
  color: #94a3b8;
}

@media (max-width: 768px) {
  #privacy-policy.content-section,
  #terms-of-service.content-section,
  #cookie-policy.content-section {
    padding: 40px 15px;
  }
  #privacy-policy .section-title,
  #terms-of-service .section-title,
  #cookie-policy .section-title {
    font-size: 2rem;
  }
  #privacy-policy .intro-content .lead,
  #terms-of-service .intro-content .lead,
  #cookie-policy .intro-content .lead {
    font-size: 1rem;
  }
  #privacy-policy .policy-section h3,
  #terms-of-service .policy-section h3,
  #cookie-policy .policy-section h3 {
    font-size: 1.5rem;
  }
  #privacy-policy .policy-section h4,
  #terms-of-service .policy-section h4,
  #cookie-policy .policy-section h4 {
    font-size: 1.125rem;
  }
  #privacy-policy .subsection,
  #terms-of-service .subsection,
  #cookie-policy .subsection {
    padding-left: 1rem;
  }
  #privacy-policy .policy-list li,
  #privacy-policy .contact-list li,
  #terms-of-service .policy-list li,
  #terms-of-service .contact-list li,
  #cookie-policy .policy-list li,
  #cookie-policy .contact-list li {
    padding-left: 1.5rem;
  }
  #privacy-policy .important-notice,
  #privacy-policy .contact-section,
  #terms-of-service .important-notice,
  #terms-of-service .contact-section,
  #cookie-policy .important-notice,
  #cookie-policy .contact-section {
    padding: 1.5rem;
  }
  #cookie-policy .policy-table {
    font-size: 0.85rem;
  }
  #cookie-policy .policy-table thead th,
  #cookie-policy .policy-table tbody td {
    padding: 0.75rem 0.5rem;
  }
}
@media print {
  #privacy-policy.content-section,
  #terms-of-service.content-section,
  #cookie-policy.content-section {
    max-width: 100%;
    padding: 20px;
  }
  #privacy-policy .policy-section,
  #terms-of-service .policy-section,
  #cookie-policy .policy-section {
    page-break-inside: avoid;
  }
  #privacy-policy .highlight-text,
  #privacy-policy .important-notice,
  #terms-of-service .highlight-text,
  #terms-of-service .important-notice,
  #cookie-policy .highlight-text,
  #cookie-policy .important-notice {
    border: 1px solid #000;
    background: #fff !important;
  }
}
.content-section.hero-section,
.content-section .hero-section {
  padding: 80px 0 60px;
  background: linear-gradient(135deg, #27c291 0%, #1a855f 100%);
  color: #ffffff;
  text-align: center;
}
.content-section.hero-section .container,
.content-section .hero-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-section.hero-section .hero-badge,
.content-section .hero-section .hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.3);
  padding: 12px 25px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
  color: #ffffff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.content-section.hero-section .hero-title,
.content-section.hero-section .page-title,
.content-section .hero-section .hero-title,
.content-section .hero-section .page-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.15;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.content-section.hero-section .hero-subtitle,
.content-section .hero-section .hero-subtitle {
  font-size: clamp(18px, 2.5vw, 22px);
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto 40px;
  opacity: 1;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  font-weight: 400;
}
.content-section.hero-section .cta-group,
.content-section .hero-section .cta-group {
  margin-top: 40px;
}
.content-section.hero-section .cta-group .btn,
.content-section .hero-section .cta-group .btn {
  margin-bottom: 20px;
}
.content-section.hero-section .cta-group .trust-line,
.content-section .hero-section .cta-group .trust-line {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-weight: 400;
}
.content-section.hero-section .hero-trust-badge,
.content-section .hero-section .hero-trust-badge {
  margin-top: 30px;
}
.content-section.hero-section .hero-trust-badge .badge-icon,
.content-section .hero-section .hero-trust-badge .badge-icon {
  font-size: 32px;
  margin-right: 10px;
}
.content-section.hero-section .hero-trust-badge .badge-text,
.content-section .hero-section .hero-trust-badge .badge-text {
  font-size: 18px;
  font-weight: 600;
}
.content-section.hero-section .hero-stats,
.content-section .hero-section .hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}
.content-section.hero-section .hero-note,
.content-section .hero-section .hero-note {
  margin-top: 40px;
  font-size: 16px;
  opacity: 0.95;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 50px 0 0;
  padding: 0 20px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1023px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.stat-card {
  background: rgba(255, 255, 255, 0.2);
  padding: 24px 20px;
  border-radius: 12px;
  text-align: left;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  gap: 16px;
  align-items: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.stat-card:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.stat-card .stat-icon {
  font-size: 48px;
  line-height: 1;
  flex-shrink: 0;
}
.stat-card .stat-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat-card .stat-number {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.1;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.stat-card .stat-label {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.3;
  color: #ffffff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}
.stat-card .stat-context {
  font-size: 13px;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  font-style: italic;
}

.content-section {
  padding: 80px 0;
}
.content-section.features-page, .content-section.about-us-page, .content-section.security-page, .content-section.contact-support-page {
  padding-top: 0;
}
.content-section.about-us-page, .content-section.features-page, .content-section.security-page, .content-section.contact-support-page, .content-section.faq-page, .content-section.staff-apps-section, .content-section.parent-app-section, .content-section.devices-section, .content-section.sync-section, .content-section.benefits-section, .content-section.included-section, .content-section.not-included-section, .content-section.guarantee-section {
  background-color: #f6fdf9;
}
.content-section.about-us-page:nth-child(even), .content-section.features-page:nth-child(even), .content-section.security-page:nth-child(even), .content-section.contact-support-page:nth-child(even), .content-section.faq-page:nth-child(even), .content-section.staff-apps-section:nth-child(even), .content-section.parent-app-section:nth-child(even), .content-section.devices-section:nth-child(even), .content-section.sync-section:nth-child(even), .content-section.benefits-section:nth-child(even), .content-section.included-section:nth-child(even), .content-section.not-included-section:nth-child(even), .content-section.guarantee-section:nth-child(even) {
  background-color: #ffffff;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-badge {
  display: inline-block;
  background-color: #27c291;
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
}

.section-title {
  font-size: 40px;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 20px;
  line-height: 1.3;
}

.section-subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: #4a5568;
  max-width: 800px;
  margin: 0 auto;
}

.problem-section,
.solution-section,
.mission-section,
.values-section,
.why-childmindi-section,
.team-section,
.commitment-section,
.partnership-section,
.vision-section,
.testimonials-section,
.contact-section,
.security-overview-section,
.infrastructure-section,
.access-control-section,
.authentication-section,
.compliance-section,
.incident-response-section,
.certifications-section,
.security-faq-section,
.contact-options-section,
.contact-form-section,
.help-center-section,
.faq-section,
.business-hours-section,
.support-tips-section,
.feedback-section,
.social-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.pain-points-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.pain-point-card {
  background: white;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.pain-point-card .card-icon {
  font-size: 48px;
  margin-bottom: 20px;
}
.pain-point-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 15px;
}
.pain-point-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #4a5568;
  margin-bottom: 15px;
}
.pain-point-card .emotional-hook {
  font-style: italic;
  font-weight: 600;
  color: #FF6100;
}
.pain-point-card[data-color=orange] {
  border-left: 4px solid #f59e0b;
}
.pain-point-card[data-color=red] {
  border-left: 4px solid #ef4444;
}
.pain-point-card[data-color=blue] {
  border-left: 4px solid #3b82f6;
}
.pain-point-card[data-color=green] {
  border-left: 4px solid #10b981;
}
.pain-point-card[data-color=purple] {
  border-left: 4px solid #8b5cf6;
}
.pain-point-card[data-color=pink] {
  border-left: 4px solid #ec4899;
}

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

.benefit-card {
  background: white;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.benefit-card .card-icon {
  font-size: 48px;
  margin-bottom: 20px;
}
.benefit-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 15px;
}
.benefit-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #4a5568;
  margin-bottom: 15px;
}
.benefit-card .outcome {
  font-weight: 600;
  color: #27c291;
}
.benefit-card[data-color=green] {
  border-top: 4px solid #10b981;
}
.benefit-card[data-color=blue] {
  border-top: 4px solid #3b82f6;
}
.benefit-card[data-color=pink] {
  border-top: 4px solid #ec4899;
}
.benefit-card[data-color=purple] {
  border-top: 4px solid #8b5cf6;
}

.values-grid,
.feature-grid,
.features-grid,
.differentiation-grid,
.commitments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.value-card,
.feature-card,
.differentiation-card,
.commitment-card {
  background: white;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.value-card:hover,
.feature-card:hover,
.differentiation-card:hover,
.commitment-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}
.value-card .card-icon,
.value-card .feature-icon,
.feature-card .card-icon,
.feature-card .feature-icon,
.differentiation-card .card-icon,
.differentiation-card .feature-icon,
.commitment-card .card-icon,
.commitment-card .feature-icon {
  font-size: 48px;
  margin-bottom: 20px;
}
.value-card h3,
.value-card .feature-title,
.feature-card h3,
.feature-card .feature-title,
.differentiation-card h3,
.differentiation-card .feature-title,
.commitment-card h3,
.commitment-card .feature-title {
  font-size: 24px;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 15px;
}
.value-card p,
.value-card .feature-description,
.feature-card p,
.feature-card .feature-description,
.differentiation-card p,
.differentiation-card .feature-description,
.commitment-card p,
.commitment-card .feature-description {
  font-size: 16px;
  line-height: 1.6;
  color: #4a5568;
  margin-bottom: 15px;
}
.value-card .feature-benefit,
.feature-card .feature-benefit,
.differentiation-card .feature-benefit,
.commitment-card .feature-benefit {
  font-size: 15px;
  font-weight: 600;
  color: #27c291;
  margin-bottom: 15px;
}
.value-card .feature-note,
.feature-card .feature-note,
.differentiation-card .feature-note,
.commitment-card .feature-note {
  font-size: 14px;
  color: #718096;
  margin-top: 15px;
  font-style: italic;
}
.value-card .in-practice,
.value-card .best-for,
.feature-card .in-practice,
.feature-card .best-for,
.differentiation-card .in-practice,
.differentiation-card .best-for,
.commitment-card .in-practice,
.commitment-card .best-for {
  margin-top: 20px;
}
.value-card .in-practice h4,
.value-card .best-for h4,
.feature-card .in-practice h4,
.feature-card .best-for h4,
.differentiation-card .in-practice h4,
.differentiation-card .best-for h4,
.commitment-card .in-practice h4,
.commitment-card .best-for h4 {
  font-size: 18px;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 10px;
}
.value-card .in-practice ul,
.value-card .best-for ul,
.feature-card .in-practice ul,
.feature-card .best-for ul,
.differentiation-card .in-practice ul,
.differentiation-card .best-for ul,
.commitment-card .in-practice ul,
.commitment-card .best-for ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.value-card .in-practice ul li,
.value-card .best-for ul li,
.feature-card .in-practice ul li,
.feature-card .best-for ul li,
.differentiation-card .in-practice ul li,
.differentiation-card .best-for ul li,
.commitment-card .in-practice ul li,
.commitment-card .best-for ul li {
  padding: 5px 0;
  color: #4a5568;
  font-size: 15px;
}
.value-card .in-practice ul li:before,
.value-card .best-for ul li:before,
.feature-card .in-practice ul li:before,
.feature-card .best-for ul li:before,
.differentiation-card .in-practice ul li:before,
.differentiation-card .best-for ul li:before,
.commitment-card .in-practice ul li:before,
.commitment-card .best-for ul li:before {
  content: "✓ ";
  color: #27c291;
  font-weight: 700;
  margin-right: 5px;
}
.value-card .feature-list,
.feature-card .feature-list,
.differentiation-card .feature-list,
.commitment-card .feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.value-card .feature-list li,
.feature-card .feature-list li,
.differentiation-card .feature-list li,
.commitment-card .feature-list li {
  padding: 8px 0;
  color: #4a5568;
  font-size: 16px;
}

.feature-category {
  background: white;
  padding: 40px;
  border-radius: 12px;
  margin-bottom: 40px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.feature-category .category-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
}
.feature-category .category-header .category-icon {
  font-size: 48px;
}
.feature-category .category-header .category-title,
.feature-category .category-header h3 {
  font-size: 28px;
  font-weight: 700;
  color: #2d3748;
  margin: 0;
}
.feature-category .category-description,
.feature-category .category-subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: #4a5568;
  margin-bottom: 30px;
}
.feature-category .feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 15px;
}
.feature-category .feature-list li {
  padding: 10px 0;
  color: #4a5568;
  font-size: 16px;
}
.feature-category .feature-list li strong {
  color: #27c291;
}
.feature-category .category-note {
  background: #e6f7ff;
  padding: 15px;
  border-radius: 8px;
  margin-top: 20px;
  border-left: 4px solid #27c291;
}
.feature-category .category-note p {
  margin: 0;
  color: #2d3748;
  font-size: 15px;
}
.feature-category .category-note p strong {
  font-weight: 600;
}

.security-pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.security-pillar {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.security-pillar .pillar-icon {
  font-size: 56px;
  margin-bottom: 20px;
}
.security-pillar h3 {
  font-size: 28px;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 20px;
}
.security-pillar p {
  font-size: 16px;
  line-height: 1.7;
  color: #4a5568;
  margin-bottom: 20px;
}
.security-pillar .technical-details,
.security-pillar .feature-list,
.security-pillar .privacy-commitments {
  margin-top: 20px;
}
.security-pillar .technical-details h4,
.security-pillar .feature-list h4,
.security-pillar .privacy-commitments h4 {
  font-size: 18px;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 15px;
}
.security-pillar .technical-details ul,
.security-pillar .feature-list ul,
.security-pillar .privacy-commitments ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.security-pillar .technical-details ul li,
.security-pillar .feature-list ul li,
.security-pillar .privacy-commitments ul li {
  padding: 8px 0;
  color: #4a5568;
  font-size: 15px;
  padding-left: 20px;
  position: relative;
}
.security-pillar .technical-details ul li:before,
.security-pillar .feature-list ul li:before,
.security-pillar .privacy-commitments ul li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #27c291;
  font-weight: 700;
}
.security-pillar .check-list li:before {
  content: "✓ ";
  color: #27c291;
  font-weight: 700;
  margin-right: 5px;
}
.security-pillar .important-note {
  background: #fff9e6;
  padding: 15px;
  border-radius: 8px;
  margin-top: 20px;
  border-left: 4px solid #FF6100;
}
.security-pillar .important-note p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}
.security-pillar .key-message {
  font-style: italic;
  font-weight: 600;
  color: #27c291;
  margin-top: 20px;
}

.infrastructure-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.infrastructure-card {
  background: white;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.infrastructure-card .card-icon {
  font-size: 48px;
  margin-bottom: 20px;
}
.infrastructure-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 15px;
}
.infrastructure-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #4a5568;
  margin-bottom: 20px;
}
.infrastructure-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.infrastructure-card ul li {
  padding: 8px 0;
  color: #4a5568;
  font-size: 15px;
  padding-left: 20px;
  position: relative;
}
.infrastructure-card ul li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #27c291;
  font-weight: 700;
}

.auth-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.auth-card {
  background: white;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
.auth-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}
.auth-card .card-icon {
  font-size: 48px;
  margin-bottom: 20px;
  display: block;
}
.auth-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: #1a332d;
  margin-bottom: 15px;
}
.auth-card p {
  font-size: 16px;
  line-height: 1.7;
  color: #4a6559;
  margin-bottom: 20px;
}
.auth-card h4 {
  font-size: 18px;
  font-weight: 600;
  color: #1a332d;
  margin-top: 25px;
  margin-bottom: 12px;
}
.auth-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.auth-card ul li {
  padding: 10px 0;
  color: #4a6559;
  font-size: 15px;
  padding-left: 24px;
  position: relative;
  line-height: 1.6;
}
.auth-card ul li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #27c291;
  font-weight: 700;
  font-size: 20px;
}
.auth-card .use-case {
  margin-top: 20px;
  padding: 15px;
  background: rgba(39, 194, 145, 0.05);
  border-radius: 8px;
  border-left: 3px solid #27c291;
}
.auth-card .use-case em {
  color: #1a332d;
  font-style: italic;
  font-size: 15px;
  line-height: 1.6;
}

.compliance-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 40px;
}
.compliance-content .what-we-do,
.compliance-content .what-youre-responsible-for,
.compliance-content .transparency-commitment {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.compliance-content .what-we-do h3,
.compliance-content .what-youre-responsible-for h3,
.compliance-content .transparency-commitment h3 {
  font-size: 26px;
  font-weight: 700;
  color: #1a332d;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.compliance-content .what-we-do h4,
.compliance-content .what-youre-responsible-for h4,
.compliance-content .transparency-commitment h4 {
  font-size: 18px;
  font-weight: 600;
  color: #1a332d;
  margin-top: 25px;
  margin-bottom: 12px;
}
.compliance-content .what-we-do p,
.compliance-content .what-youre-responsible-for p,
.compliance-content .transparency-commitment p {
  font-size: 16px;
  line-height: 1.7;
  color: #4a6559;
  margin-bottom: 20px;
}
.compliance-content .what-we-do ul,
.compliance-content .what-youre-responsible-for ul,
.compliance-content .transparency-commitment ul {
  list-style: none;
  padding: 0;
  margin: 15px 0;
}
.compliance-content .what-we-do ul li,
.compliance-content .what-youre-responsible-for ul li,
.compliance-content .transparency-commitment ul li {
  padding: 10px 0;
  color: #4a6559;
  font-size: 15px;
  padding-left: 24px;
  position: relative;
  line-height: 1.6;
}
.compliance-content .what-we-do ul li:before,
.compliance-content .what-youre-responsible-for ul li:before,
.compliance-content .transparency-commitment ul li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #27c291;
  font-weight: 700;
  font-size: 20px;
}
.compliance-content .what-we-do ul li strong,
.compliance-content .what-youre-responsible-for ul li strong,
.compliance-content .transparency-commitment ul li strong {
  color: #1a332d;
  font-weight: 600;
}
.compliance-content .what-we-do {
  border-left: 4px solid #27c291;
}
.compliance-content .what-youre-responsible-for {
  border-left: 4px solid #FF6100;
}
.compliance-content .what-youre-responsible-for .important-disclaimer {
  background: rgba(255, 97, 0, 0.08);
  padding: 20px;
  border-radius: 8px;
  border-left: 3px solid #FF6100;
  margin-bottom: 25px;
}
.compliance-content .what-youre-responsible-for .important-disclaimer p {
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1.7;
}
.compliance-content .what-youre-responsible-for .important-disclaimer p strong {
  color: #FF6100;
  font-weight: 700;
}
.compliance-content .what-youre-responsible-for .our-role {
  background: rgba(39, 194, 145, 0.05);
  padding: 15px;
  border-radius: 8px;
  margin-top: 25px;
}
.compliance-content .what-youre-responsible-for .our-role strong {
  color: #27c291;
  font-weight: 700;
}
.compliance-content .transparency-commitment {
  border-left: 4px solid #6D28D9;
}
.compliance-content .transparency-commitment .commitment-icon {
  font-size: 48px;
  margin-bottom: 15px;
}
.compliance-content .transparency-commitment .dont-list li:before {
  content: "❌";
  font-size: 16px;
}
.compliance-content .transparency-commitment .policy-links {
  margin-top: 30px;
  padding: 25px;
  background: rgba(109, 40, 217, 0.05);
  border-radius: 8px;
}
.compliance-content .transparency-commitment .policy-links h4 {
  margin-top: 0;
  color: #6D28D9;
}
.compliance-content .transparency-commitment .policy-links ul li {
  padding-left: 0;
}
.compliance-content .transparency-commitment .policy-links ul li:before {
  content: none;
}
.compliance-content .transparency-commitment .policy-links ul li a {
  color: #6D28D9;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}
.compliance-content .transparency-commitment .policy-links ul li a:hover {
  color: rgb(87.1225296443, 30.9407114625, 175.0592885375);
  text-decoration: underline;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.support-card {
  background: white;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
.support-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}
.support-card .card-icon {
  font-size: 48px;
  margin-bottom: 20px;
  display: block;
}
.support-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: #1a332d;
  margin-bottom: 15px;
}
.support-card p {
  font-size: 16px;
  line-height: 1.7;
  color: #4a6559;
  margin-bottom: 20px;
}
.support-card h4 {
  font-size: 18px;
  font-weight: 600;
  color: #1a332d;
  margin-top: 25px;
  margin-bottom: 12px;
}
.support-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.support-card ul li {
  padding: 10px 0;
  color: #4a6559;
  font-size: 15px;
  padding-left: 24px;
  position: relative;
  line-height: 1.6;
}
.support-card ul li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #27c291;
  font-weight: 700;
  font-size: 20px;
}
.support-card ul li strong {
  color: #1a332d;
  font-weight: 600;
}
.support-card ul li a {
  color: #27c291;
  text-decoration: none;
  font-weight: 500;
}
.support-card ul li a:hover {
  text-decoration: underline;
}

.access-control-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.access-control-card {
  background: white;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.access-control-card .card-icon {
  font-size: 40px;
  margin-bottom: 16px;
}
.access-control-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #1a332d;
  margin-bottom: 12px;
}
.access-control-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #4a6559;
  margin-bottom: 16px;
}
.access-control-card h4 {
  font-size: 15px;
  font-weight: 600;
  color: #1a332d;
  margin-bottom: 10px;
}
.access-control-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}
.access-control-card ul li {
  padding: 6px 0 6px 20px;
  font-size: 14px;
  color: #4a6559;
  position: relative;
}
.access-control-card ul li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #27c291;
  font-weight: 700;
}
.access-control-card .check-list li:before {
  content: none;
}
.access-control-card .key-benefit {
  margin-top: 20px;
  padding: 16px;
  background: rgba(39, 194, 145, 0.05);
  border-left: 3px solid #27c291;
  border-radius: 0 8px 8px 0;
  font-size: 14px;
  color: #4a6559;
  line-height: 1.6;
}

.certifications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.certification-badge {
  background: white;
  padding: 30px 24px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  text-align: center;
  border-top: 4px solid #27c291;
}
.certification-badge .badge-icon {
  font-size: 40px;
  margin-bottom: 14px;
  line-height: 1;
}
.certification-badge h3 {
  font-size: 17px;
  font-weight: 700;
  color: #1a332d;
  margin-bottom: 8px;
  line-height: 1.3;
}
.certification-badge p {
  font-size: 14px;
  color: #4a6559;
  line-height: 1.5;
  margin: 0 0 6px;
}
.certification-badge .status {
  display: inline-block;
  margin-top: 10px;
  padding: 4px 12px;
  background: rgba(16, 185, 129, 0.1);
  color: #059669;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}
.certification-badge .note {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #d1fae5;
  font-size: 13px;
  color: #4a6559;
  font-style: italic;
  text-align: left;
}

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

.testimonial-card {
  background: white;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.testimonial-card .rating {
  font-size: 20px;
  margin-bottom: 20px;
}
.testimonial-card blockquote {
  margin: 0;
  padding: 0;
  border: none;
}
.testimonial-card blockquote p {
  font-size: 16px;
  line-height: 1.7;
  color: #2d3748;
  font-style: italic;
  margin-bottom: 20px;
}
.testimonial-card .author-info {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
}
.testimonial-card .author-info .avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #27c291, #1a855f);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  font-weight: 700;
}
.testimonial-card .author-info .author-details .author-name {
  font-size: 16px;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 3px;
}
.testimonial-card .author-info .author-details .author-title {
  font-size: 14px;
  color: #4a5568;
  margin-bottom: 2px;
}
.testimonial-card .author-info .author-details .author-location {
  font-size: 13px;
  color: #718096;
}

.final-cta-section,
.cta-section {
  padding: 80px 20px;
  background-color: white;
  text-align: center;
}
.final-cta-section h2,
.final-cta-section .cta-title,
.cta-section h2,
.cta-section .cta-title {
  font-size: 42px;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 20px;
}
.final-cta-section p,
.final-cta-section .cta-paragraph,
.cta-section p,
.cta-section .cta-paragraph {
  font-size: 18px;
  line-height: 1.7;
  color: #4a5568;
  max-width: 800px;
  margin: 0 auto 40px;
}
.final-cta-section .subtitle,
.cta-section .subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: #4a5568;
  max-width: 800px;
  margin: 0 auto 40px;
}
.final-cta-section .cta-buttons,
.cta-section .cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
.final-cta-section .cta-buttons .btn,
.cta-section .cta-buttons .btn {
  display: inline-block;
  padding: 16px 40px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.final-cta-section .cta-buttons .btn.btn-primary,
.cta-section .cta-buttons .btn.btn-primary {
  background-color: #27c291;
  color: white;
}
.final-cta-section .cta-buttons .btn.btn-primary:hover,
.cta-section .cta-buttons .btn.btn-primary:hover {
  background-color: #4c5dd9;
  transform: translateY(-2px);
}
.final-cta-section .cta-buttons .btn.btn-secondary,
.cta-section .cta-buttons .btn.btn-secondary {
  background-color: #f8f9fa;
  color: #2d3748;
  border: 2px solid #e2e8f0;
}
.final-cta-section .cta-buttons .btn.btn-secondary:hover,
.cta-section .cta-buttons .btn.btn-secondary:hover {
  border-color: #27c291;
  color: #27c291;
}
.final-cta-section .cta-buttons .btn.btn-large,
.cta-section .cta-buttons .btn.btn-large {
  padding: 18px 50px;
  font-size: 20px;
}
.final-cta-section .trust-line,
.cta-section .trust-line {
  font-size: 16px;
  color: #718096;
  margin-top: 20px;
}
.final-cta-section .trust-elements,
.cta-section .trust-elements {
  margin-top: 30px;
}
.final-cta-section .trust-elements .check-list,
.cta-section .trust-elements .check-list {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.final-cta-section .trust-elements .check-list li,
.cta-section .trust-elements .check-list li {
  font-size: 16px;
  color: #4a5568;
}

.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.contact-card {
  background: white;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.contact-card .card-icon {
  font-size: 48px;
  margin-bottom: 20px;
}
.contact-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 15px;
}
.contact-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #4a5568;
  margin-bottom: 15px;
}
.contact-card .contact-email {
  font-weight: 600;
  color: #27c291;
  margin-bottom: 20px;
}
.contact-card .contact-email a {
  color: #27c291;
  text-decoration: none;
}
.contact-card .contact-email a:hover {
  text-decoration: underline;
}
.contact-card .best-for h4 {
  font-size: 16px;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 10px;
}
.contact-card .best-for ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.contact-card .best-for ul li {
  padding: 5px 0;
  color: #4a5568;
  font-size: 15px;
  padding-left: 15px;
  position: relative;
}
.contact-card .best-for ul li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #27c291;
}
.contact-card .response-time {
  font-size: 14px;
  color: #718096;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #e2e8f0;
}

.faq-section {
  padding: 60px 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.hero-section + .faq-section {
  padding-top: 0;
}

.faq-list,
.faq-category {
  margin-top: 40px;
}

.faq-category-title {
  font-size: 24px;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 2px solid #e2e8f0;
}

.faq-item {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #e2e8f0;
}
.faq-item:last-child {
  border-bottom: none;
}
.faq-item h3,
.faq-item h4 {
  font-size: 20px;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 15px;
}
.faq-item p {
  font-size: 16px;
  line-height: 1.7;
  color: #4a5568;
  margin-bottom: 10px;
}
.faq-item p:last-child {
  margin-bottom: 0;
}
.faq-item a {
  color: #27c291;
  text-decoration: none;
}
.faq-item a:hover {
  text-decoration: underline;
}

.help-resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.help-resource {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
.help-resource:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}
.help-resource .resource-icon {
  font-size: 40px;
  margin-bottom: 15px;
}
.help-resource h3 {
  font-size: 22px;
  font-weight: 700;
  color: #1a332d;
  margin-bottom: 15px;
}
.help-resource ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}
.help-resource ul li {
  padding: 8px 0;
  color: #4a6559;
  font-size: 15px;
  padding-left: 20px;
  position: relative;
}
.help-resource ul li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #27c291;
  font-weight: 700;
}
.help-resource .resource-link {
  display: inline-block;
  color: #27c291;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}
.help-resource .resource-link:hover {
  color: rgb(30.4635193133, 151.5364806867, 113.2618025751);
  text-decoration: underline;
}
.help-resource[data-color=blue] {
  border-top: 4px solid #3b82f6;
}
.help-resource[data-color=purple] {
  border-top: 4px solid #8b5cf6;
}
.help-resource[data-color=red] {
  border-top: 4px solid #ef4444;
}
.help-resource[data-color=green] {
  border-top: 4px solid #10b981;
}

.hours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.hours-card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  text-align: center;
}
.hours-card .card-icon {
  font-size: 40px;
  margin-bottom: 15px;
}
.hours-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1a332d;
  margin-bottom: 15px;
}
.hours-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #4a6559;
  margin-bottom: 8px;
}
.hours-card p strong {
  color: #1a332d;
  font-weight: 600;
}

.weekend-notice {
  background: rgba(255, 97, 0, 0.08);
  padding: 25px;
  border-radius: 12px;
  border-left: 4px solid #FF6100;
  margin-top: 40px;
}
.weekend-notice p {
  font-size: 16px;
  line-height: 1.7;
  color: #1a332d;
  margin: 0;
}
.weekend-notice p strong {
  font-weight: 700;
}

.holidays-list {
  margin-top: 30px;
  padding: 25px;
  background: #ecfdf5;
  border-radius: 12px;
}
.holidays-list h4 {
  font-size: 18px;
  font-weight: 700;
  color: #1a332d;
  margin-bottom: 15px;
}
.holidays-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
}
.holidays-list ul li {
  padding: 8px 0;
  color: #4a6559;
  font-size: 15px;
  padding-left: 20px;
  position: relative;
}
.holidays-list ul li:before {
  content: "🎄";
  position: absolute;
  left: 0;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.tip-card {
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.tip-card .tip-icon {
  font-size: 36px;
  margin-bottom: 15px;
}
.tip-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1a332d;
  margin-bottom: 12px;
}
.tip-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #4a6559;
  margin: 0;
}

.feedback-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.feedback-card {
  background: white;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  min-width: 0;
  overflow: hidden;
}
.feedback-card .card-icon {
  font-size: 48px;
  margin-bottom: 20px;
}
.feedback-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: #1a332d;
  margin-bottom: 15px;
}
.feedback-card p {
  font-size: 16px;
  line-height: 1.7;
  color: #4a6559;
  margin-bottom: 15px;
  word-wrap: break-word;
}
.feedback-card .contact-info {
  display: block !important;
  background: rgba(39, 194, 145, 0.05);
  padding: 15px;
  border-radius: 8px;
  margin: 20px 0;
  overflow-wrap: break-word;
  word-break: normal;
}
.feedback-card .contact-info strong {
  color: #1a332d;
  font-weight: 600;
  white-space: nowrap;
}
.feedback-card .contact-info a {
  color: #27c291;
  text-decoration: none;
  word-break: break-word;
  overflow-wrap: break-word;
  display: inline;
}
.feedback-card .contact-info a:hover {
  text-decoration: underline;
}
.feedback-card .contact-info br {
  display: block;
  content: "";
  margin: 8px 0;
}
.feedback-card .what-happens {
  font-size: 14px;
  color: #4a6559;
  font-style: italic;
  padding-top: 15px;
  border-top: 1px solid #d1fae5;
}
.feedback-card .what-happens strong {
  color: #1a332d;
  font-weight: 600;
  font-style: normal;
}

.social-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.social-link-card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
}
.social-link-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}
.social-link-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1a332d;
  margin-bottom: 10px;
}
.social-link-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #4a6559;
  margin-bottom: 15px;
}
.social-link-card p a {
  color: #27c291;
  text-decoration: none;
  font-weight: 500;
}
.social-link-card p a:hover {
  text-decoration: underline;
}
.social-link-card .platform-description {
  font-size: 14px;
  color: #4a6559;
  margin-top: 10px;
}
.social-link-card .follow-for {
  font-size: 14px;
  color: #4a6559;
  font-style: italic;
}

.contact-form-block {
  background: white;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  max-width: 720px;
  margin: 0 auto;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 600px) {
  .contact-form-row {
    grid-template-columns: 1fr;
  }
}

.contact-form-field {
  margin-bottom: 20px;
}

.contact-form-label {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #1a332d;
  margin-bottom: 8px;
}

.contact-form-required {
  color: #ef4444;
  margin-left: 2px;
}

.contact-form-optional {
  color: #4a6559;
  font-weight: 400;
  font-size: 13px;
}

.contact-form-input,
.contact-form-textarea {
  width: 100%;
  padding: 12px 14px;
  font-size: 15px;
  font-family: inherit;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  color: #1a332d;
  background: white;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
}
.contact-form-input::placeholder,
.contact-form-textarea::placeholder {
  color: #a0aec0;
}
.contact-form-input:focus,
.contact-form-textarea:focus {
  outline: none;
  border-color: #27c291;
  box-shadow: 0 0 0 3px rgba(39, 194, 145, 0.12);
}

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

.cf-turnstile {
  margin-top: 4px;
  margin-bottom: 20px;
}

.contact-form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  font-family: inherit;
  color: white;
  background: #27c291;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease, opacity 0.2s ease;
  min-width: 160px;
}
.contact-form-submit:hover:not(:disabled) {
  background: rgb(32.1708154506, 160.0291845494, 119.6094420601);
  transform: translateY(-1px);
}
.contact-form-submit:disabled, .contact-form-submit--loading {
  opacity: 0.75;
  cursor: not-allowed;
  transform: none;
}

.contact-form-success {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 20px 24px;
  background: #d1fae5;
  border: 1px solid #a7f3d0;
  border-radius: 10px;
  color: #065f46;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}

.contact-form-privacy {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #e2e8f0;
  font-size: 13px;
  color: #4a6559;
}
.contact-form-privacy a {
  color: #27c291;
  text-decoration: none;
}
.contact-form-privacy a:hover {
  text-decoration: underline;
}

.contact-form-error {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 18px;
  background: #fee2e2;
  border: 1px solid #fca5a5;
  border-radius: 8px;
  color: #991b1b;
  font-size: 15px;
  margin-bottom: 20px;
  line-height: 1.5;
}

.newsletter-signup {
  margin-top: 50px;
  padding: 40px;
  background: linear-gradient(135deg, rgba(39, 194, 145, 0.08) 0%, rgba(52, 217, 163, 0.08) 100%);
  border-radius: 12px;
  text-align: center;
  border: 2px solid rgba(39, 194, 145, 0.15);
}
.newsletter-signup h3 {
  font-size: 26px;
  font-weight: 700;
  color: #1a332d;
  margin-bottom: 15px;
}
.newsletter-signup p {
  font-size: 16px;
  line-height: 1.7;
  color: #4a6559;
  margin-bottom: 20px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.newsletter-signup .trust-line {
  font-size: 14px;
  color: #547762;
  margin-top: 15px;
}
.newsletter-signup .trust-line a {
  color: #27c291;
  text-decoration: none;
}
.newsletter-signup .trust-line a:hover {
  text-decoration: underline;
}

.overview-section {
  padding: 60px 20px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.overview-section .lead-text {
  font-size: 20px;
  line-height: 1.8;
  color: #2d3748;
  font-weight: 400;
}

.features-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.category-title {
  font-size: 32px;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 15px;
  text-align: center;
}

.category-description {
  font-size: 18px;
  line-height: 1.7;
  color: #4a5568;
  margin-bottom: 40px;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.story-content,
.mission-content,
.partnership-content {
  max-width: 800px;
  margin: 40px auto;
}
.story-content p,
.mission-content p,
.partnership-content p {
  font-size: 18px;
  line-height: 1.8;
  color: #2d3748;
  margin-bottom: 20px;
}
.story-content p strong,
.mission-content p strong,
.partnership-content p strong {
  font-weight: 700;
  color: #27c291;
}
.story-content h3,
.mission-content h3,
.partnership-content h3 {
  font-size: 24px;
  font-weight: 700;
  color: #2d3748;
  margin: 30px 0 15px;
}
.story-content .belief-list,
.story-content .success-list,
.story-content .team-differences,
.mission-content .belief-list,
.mission-content .success-list,
.mission-content .team-differences,
.partnership-content .belief-list,
.partnership-content .success-list,
.partnership-content .team-differences {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}
.story-content .belief-list li,
.story-content .success-list li,
.story-content .team-differences li,
.mission-content .belief-list li,
.mission-content .success-list li,
.mission-content .team-differences li,
.partnership-content .belief-list li,
.partnership-content .success-list li,
.partnership-content .team-differences li {
  padding: 15px 0;
  font-size: 17px;
  line-height: 1.7;
  color: #2d3748;
  border-bottom: 1px solid #e2e8f0;
}
.story-content .belief-list li:last-child,
.story-content .success-list li:last-child,
.story-content .team-differences li:last-child,
.mission-content .belief-list li:last-child,
.mission-content .success-list li:last-child,
.mission-content .team-differences li:last-child,
.partnership-content .belief-list li:last-child,
.partnership-content .success-list li:last-child,
.partnership-content .team-differences li:last-child {
  border-bottom: none;
}
.story-content .belief-list li strong,
.story-content .success-list li strong,
.story-content .team-differences li strong,
.mission-content .belief-list li strong,
.mission-content .success-list li strong,
.mission-content .team-differences li strong,
.partnership-content .belief-list li strong,
.partnership-content .success-list li strong,
.partnership-content .team-differences li strong {
  font-weight: 700;
  color: #27c291;
}
.story-content .mission-statement,
.story-content .closing-statement,
.mission-content .mission-statement,
.mission-content .closing-statement,
.partnership-content .mission-statement,
.partnership-content .closing-statement {
  font-size: 20px;
  font-weight: 600;
  color: #2d3748;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 8px;
  margin: 30px 0;
  text-align: center;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.feature-card {
  background: #ffffff;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
}
.feature-card .feature-icon {
  font-size: 48px;
  margin-bottom: 20px;
}
.feature-card .feature-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a332d;
  margin-bottom: 15px;
}
.feature-card .feature-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #4a6559;
  margin-bottom: 15px;
}
.feature-card .feature-benefit {
  font-size: 15px;
  font-weight: 600;
  color: #27c291;
  margin-bottom: 15px;
}
.feature-card .feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.feature-card .feature-list li {
  padding: 8px 0;
  color: #4a6559;
}
.feature-card .feature-note {
  font-size: 0.875rem;
  color: #547762;
  margin-top: 15px;
  font-style: italic;
}
.feature-card .feature-details {
  font-size: 15px;
  color: #4a6559;
}
.feature-card .feature-details strong {
  display: block;
  margin-bottom: 10px;
  color: #1a332d;
}
.feature-card .feature-details ul {
  margin-top: 10px;
  padding-left: 20px;
}
.feature-card .feature-details ul li {
  padding: 3px 0;
}

.parent-app-section .feature-card {
  background: #f6fdf9;
}
.parent-app-section .feature-card .feature-benefit {
  color: #FF6100;
}

.parent-app-hero {
  background: linear-gradient(135deg, #FF6100, #6D28D9);
  color: #ffffff;
  padding: 50px;
  border-radius: 16px;
  text-align: center;
  margin-bottom: 60px;
}
.parent-app-hero .hero-icon {
  font-size: 64px;
  margin-bottom: 20px;
}
.parent-app-hero .hero-text {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
}
.parent-app-hero .hero-subtext {
  font-size: 1.125rem;
  opacity: 0.95;
}

.devices-section .devices-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}
.devices-section .device-card {
  background: #ffffff;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
}
.devices-section .device-card .device-icon {
  font-size: 56px;
  text-align: center;
  margin-bottom: 20px;
}
.devices-section .device-card .device-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a332d;
  margin-bottom: 15px;
  text-align: center;
}
.devices-section .device-card .device-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #4a6559;
  margin-bottom: 20px;
}
.devices-section .device-card .device-best-for {
  background: #f6fdf9;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 15px;
}
.devices-section .device-card .device-best-for strong {
  color: #1a332d;
  display: block;
  margin-bottom: 10px;
}
.devices-section .device-card .device-best-for ul {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #4a6559;
}
.devices-section .device-card .device-best-for ul li {
  padding: 5px 0;
}
.devices-section .device-card .device-tip {
  background: #f0fcf7;
  padding: 15px;
  border-radius: 8px;
  border-left: 4px solid #27c291;
}
.devices-section .device-card .device-tip strong {
  color: #1a332d;
  font-size: 0.875rem;
  display: block;
}
.devices-section .device-card .device-tip p {
  margin: 5px 0 0;
  font-size: 0.875rem;
  color: #4a6559;
}

.sync-section .sync-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
}
.sync-section .sync-card {
  background: #f6fdf9;
  padding: 40px;
  border-radius: 12px;
}
.sync-section .sync-card .sync-icon {
  font-size: 56px;
  margin-bottom: 20px;
}
.sync-section .sync-card .sync-title {
  font-size: 28px;
  font-weight: 700;
  color: #1a332d;
  margin-bottom: 15px;
}
.sync-section .sync-card .sync-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #4a6559;
  margin-bottom: 20px;
}
.sync-section .sync-card .sync-features-list {
  background: #ffffff;
  padding: 20px;
  border-radius: 8px;
}
.sync-section .sync-card .sync-features-list strong {
  color: #1a332d;
  display: block;
  margin-bottom: 10px;
}
.sync-section .sync-card .sync-features-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #4a6559;
}
.sync-section .sync-card .sync-features-list ul li {
  padding: 5px 0;
}

.benefits-section {
  background: linear-gradient(135deg, #27c291, #6D28D9);
  color: #ffffff;
}
.benefits-section .benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.benefits-section .benefit-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
}
.benefits-section .benefit-card .benefit-icon {
  font-size: 48px;
  margin-bottom: 15px;
}
.benefits-section .benefit-card .benefit-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}
.benefits-section .benefit-card .benefit-description {
  font-size: 15px;
  opacity: 0.95;
}

.cta-section {
  padding: 80px 0;
  background-color: #ffffff;
  text-align: center;
}
.cta-section .cta-title {
  font-size: 42px;
  font-weight: 700;
  color: #1a332d;
  margin-bottom: 20px;
}
.cta-section .cta-paragraph {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #4a6559;
  margin-bottom: 40px;
}
.cta-section .cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
.cta-section .cta-buttons .btn {
  display: inline-block;
  padding: 16px 40px;
  border-radius: 8px;
  font-size: 1.125rem;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}
.cta-section .cta-buttons .btn.btn-primary {
  background-color: #27c291;
  color: #ffffff;
}
.cta-section .cta-buttons .btn.btn-primary:hover {
  background-color: #1a855f;
}
.cta-section .cta-buttons .btn.btn-secondary {
  background-color: #f6fdf9;
  color: #1a332d;
  border: 2px solid #a7f3d0;
}
.cta-section .cta-buttons .btn.btn-secondary:hover {
  background-color: #ecfdf5;
}
.cta-section .trust-line {
  font-size: 1rem;
  color: #547762;
  margin-bottom: 40px;
}
.cta-section .transparency-badge {
  max-width: 400px;
  margin: 0 auto;
  padding: 25px;
  background: #f0fcf7;
  border-radius: 12px;
  border: 2px solid #bbeed1;
}
.cta-section .transparency-badge .badge-icon {
  font-size: 36px;
  color: #27c291;
  margin-bottom: 10px;
}
.cta-section .transparency-badge .badge-title {
  font-size: 20px;
  font-weight: 700;
  color: #1a332d;
  margin-bottom: 5px;
}
.cta-section .transparency-badge .badge-subtitle {
  font-size: 15px;
  color: #4a6559;
  margin: 0;
}

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

.included-section .feature-category,
.not-included-section .feature-category {
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  margin-bottom: 40px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
}
.included-section .feature-category .category-header,
.not-included-section .feature-category .category-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
}
.included-section .feature-category .category-header .category-icon,
.not-included-section .feature-category .category-header .category-icon {
  font-size: 48px;
  flex-shrink: 0;
}
.included-section .feature-category .category-header .category-title,
.not-included-section .feature-category .category-header .category-title {
  font-size: 28px;
  font-weight: 700;
  color: #1a332d;
  margin: 0;
}
.included-section .feature-category .feature-list,
.not-included-section .feature-category .feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 15px;
}
.included-section .feature-category .feature-list li,
.not-included-section .feature-category .feature-list li {
  padding: 10px 0;
  color: #4a6559;
  font-size: 1rem;
}
.included-section .feature-category .feature-list li strong,
.not-included-section .feature-category .feature-list li strong {
  color: #27c291;
  font-weight: 600;
}
.included-section .feature-category .category-note,
.not-included-section .feature-category .category-note {
  background: #f0fcf7;
  padding: 20px;
  border-radius: 8px;
  margin-top: 20px;
  border-left: 4px solid #27c291;
}
.included-section .feature-category .category-note p,
.not-included-section .feature-category .category-note p {
  margin: 0;
  color: #1a332d;
  font-size: 15px;
  line-height: 1.6;
}
.included-section .feature-category .category-note p strong,
.not-included-section .feature-category .category-note p strong {
  font-weight: 600;
}
.included-section .feature-category .category-note p strong:first-of-type,
.not-included-section .feature-category .category-note p strong:first-of-type {
  color: #1a332d;
}
.included-section .feature-category .category-note p strong:last-of-type,
.not-included-section .feature-category .category-note p strong:last-of-type {
  color: #27c291;
}

.not-included-section {
  background-color: #ffffff !important;
  padding-top: 40px !important;
}
.not-included-section .not-included-card {
  background: #f6fdf9;
  padding: 30px;
  border-radius: 12px;
  border-left: 4px solid #FF6100;
  margin-bottom: 30px;
}
.not-included-section .not-included-card .card-title {
  font-size: 22px;
  font-weight: 700;
  color: #1a332d;
  margin-bottom: 10px;
}
.not-included-section .not-included-card .card-status {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 0.875rem;
}
.not-included-section .not-included-card .card-status.optional {
  color: #6D28D9;
}
.not-included-section .not-included-card .card-status.enterprise {
  color: #27c291;
}
.not-included-section .not-included-card .card-description {
  font-size: 1rem;
  color: #4a6559;
  margin: 0;
  line-height: 1.6;
}

.guarantee-section {
  background: linear-gradient(135deg, #27c291 0%, #1a855f 100%);
  color: #ffffff;
  text-align: center;
  padding: 80px 20px !important;
}
.guarantee-section .section-header {
  margin-bottom: 50px;
}
.guarantee-section .section-header .section-badge {
  background: rgba(255, 255, 255, 0.3);
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.guarantee-section .section-header .section-title {
  color: #ffffff;
  font-size: clamp(32px, 5vw, 42px);
  margin-bottom: 15px;
}
.guarantee-section .section-header .section-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  max-width: 700px;
  margin: 0 auto;
}
.guarantee-section .guarantee-promises {
  max-width: 900px;
  margin: 0 auto 50px;
  text-align: left;
}
.guarantee-section .guarantee-promises > h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  color: #ffffff;
}
.guarantee-section .guarantee-promises .promise-item {
  background: rgba(255, 255, 255, 0.15);
  padding: 25px 30px;
  border-radius: 12px;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
  border-left: 4px solid rgba(255, 255, 255, 0.4);
  transition: 0.3s ease;
}
.guarantee-section .guarantee-promises .promise-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(5px);
}
.guarantee-section .guarantee-promises .promise-item h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 10px;
}
.guarantee-section .guarantee-promises .promise-item p {
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
  color: rgba(255, 255, 255, 0.95);
  padding-left: 32px;
}
.guarantee-section .fine-print {
  max-width: 900px;
  margin: 50px auto 0;
  padding: 30px;
  background: rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  text-align: left;
  backdrop-filter: blur(10px);
}
.guarantee-section .fine-print p {
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.95);
}
.guarantee-section .fine-print p strong {
  color: #ffffff;
  font-weight: 700;
}
.guarantee-section .fine-print p:first-child {
  font-size: 18px;
  margin-bottom: 20px;
}
.guarantee-section .fine-print p:last-child {
  font-size: 18px;
  margin-top: 20px;
  margin-bottom: 0;
  text-align: center;
}
.guarantee-section .fine-print ol {
  margin: 20px 0;
  padding-left: 25px;
  list-style-position: outside;
}
.guarantee-section .fine-print ol li {
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
}
.guarantee-section .fine-print ol li strong {
  color: #ffffff;
  font-weight: 600;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 32px;
  }
  .hero-title,
  .page-title {
    font-size: 36px;
  }
  .pain-points-grid,
  .benefits-grid,
  .values-grid,
  .testimonials-grid,
  .contact-cards-grid,
  .security-pillars-grid,
  .infrastructure-grid,
  .features-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .stat-card {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  .stat-card .stat-icon {
    font-size: 48px;
  }
  .stat-card .stat-content {
    gap: 6px;
  }
  .stat-card .stat-number {
    font-size: 32px;
  }
  .stat-card .stat-label {
    font-size: 17px;
  }
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
}
.comparison-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.comparison-section .comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 40px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  overflow: hidden;
}
.comparison-section .comparison-table thead {
  background: #27c291;
  color: white;
}
.comparison-section .comparison-table thead th {
  padding: 20px;
  text-align: left;
  font-size: 18px;
  font-weight: 600;
}
.comparison-section .comparison-table tbody tr {
  border-bottom: 1px solid #e2e8f0;
}
.comparison-section .comparison-table tbody tr:last-child {
  border-bottom: none;
}
.comparison-section .comparison-table tbody tr:nth-child(even) {
  background: #f8f9fa;
}
.comparison-section .comparison-table tbody tr td {
  padding: 20px;
  font-size: 16px;
  color: #2d3748;
}
.comparison-section .comparison-table tbody tr td strong {
  font-weight: 600;
}

.pricing-reminder {
  padding: 60px 20px;
  text-align: center;
  background: #f8f9fa;
}
.pricing-reminder h2 {
  font-size: 36px;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 20px;
}
.pricing-reminder .lead-text {
  font-size: 18px;
  line-height: 1.7;
  color: #4a5568;
  max-width: 800px;
  margin: 0 auto 30px;
}
.pricing-reminder .btn {
  display: inline-block;
  background-color: #27c291;
  color: white;
  padding: 16px 40px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.pricing-reminder .btn:hover {
  background-color: #4c5dd9;
  transform: translateY(-2px);
}

.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.roadmap-card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.roadmap-card .status-badge {
  display: inline-block;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
}
.roadmap-card[data-status=coming-soon] .status-badge {
  background: #e6f7ff;
  color: #27c291;
}
.roadmap-card[data-status=researching] .status-badge {
  background: #fff9e6;
  color: #f59e0b;
}
.roadmap-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 10px;
}
.roadmap-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #4a5568;
  margin-bottom: 10px;
}
.roadmap-card .benefit {
  font-weight: 600;
  color: #27c291;
}

.roadmap-footer {
  margin-top: 30px;
  text-align: center;
  font-size: 18px;
  color: #4a5568;
  font-style: italic;
}

.contact-info {
  margin: 30px 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}
.contact-info p {
  font-size: 16px;
  line-height: 1.8;
  color: #2d3748;
  margin-bottom: 10px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.contact-info p strong {
  font-weight: 600;
  display: inline-block;
  min-width: fit-content;
}
.contact-info p a {
  color: #27c291;
  text-decoration: none;
  word-break: break-word;
}
.contact-info p a:hover {
  text-decoration: underline;
}

.social-media {
  margin-top: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.social-media h3 {
  font-size: 20px;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 20px;
}
.social-media .social-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.social-media .social-links li {
  padding: 10px 0;
  font-size: 16px;
  line-height: 1.6;
}
.social-media .social-links li a {
  color: #27c291;
  text-decoration: none;
  font-weight: 600;
}
.social-media .social-links li a:hover {
  text-decoration: underline;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
  .hero-content,
  .spotlight-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero-right {
    order: -1;
  }
  .navbar-menu {
    gap: 2rem;
  }
  .navbar-nav {
    gap: 1.5rem;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
  .top-bar {
    display: none;
  }
  .navbar-menu {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .hero {
    padding: 4rem 0 2rem;
  }
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .hero-actions {
    flex-direction: column;
  }
  .dashboard-mockup {
    transform: none;
  }
  .dashboard-stats {
    grid-template-columns: 1fr;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .pricing-table {
    overflow-x: auto;
  }
  .pricing-header,
  .pricing-body,
  .pricing-footer {
    min-width: 800px;
  }
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
  .cta-features {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-bottom-content {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  .footer-bottom-links {
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .section-title {
    font-size: 2rem;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .btn {
    width: 100%;
    justify-content: center;
  }
  .hero-actions {
    gap: 0.75rem;
  }
  .process-step {
    flex-direction: column;
    text-align: center;
  }
  .timeline-item {
    flex-direction: column;
    gap: 0.5rem;
  }
  .timeline-time {
    min-width: auto;
    font-weight: 600;
  }
}
/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
/* Focus styles for keyboard navigation */
.btn:focus,
.nav-link:focus,
a:focus {
  outline: 2px solid #27c291;
  outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .btn-outline {
    border-width: 3px;
  }
  .feature-card,
  .testimonial-card {
    border: 2px solid #e2e8f0;
  }
}
/* ===== CONCRETE CMS PANEL FIXES ===== */
/* Виправлення для панелі редагування Concrete CMS */
.ccm-block-set.collapse.show {
  display: block !important;
  visibility: visible !important;
  height: auto !important;
  opacity: 1 !important;
}

/* Додаткові виправлення для панелі CMS */
.ccm-panel-add-block-draggable-block-type {
  display: block !important;
  visibility: visible !important;
}

.ccm-block-set ul li {
  display: list-item !important;
  visibility: visible !important;
}

/* Виправлення для областей редагування */
.ccm-area {
  position: relative;
}

.ccm-area-controls {
  display: block !important;
  visibility: visible !important;
}

/* Виправлення для dropdown меню в панелі */
.ccm-ui .dropdown-menu {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  position: absolute !important;
  z-index: 9999 !important;
}

.ccm-ui .dropdown-menu.show {
  display: block !important;
}

/* Виправлення для кнопок в панелі */
.ccm-ui .btn {
  display: inline-block !important;
  visibility: visible !important;
}
