* {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'SF Pro Display', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  box-sizing: border-box;
}

.hero-section {
  position: relative;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, rgba(65, 98, 159, 0.7) 50%, rgba(28,168,156,1.0) 100%);
  backdrop-filter: blur(1px);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: white;
  padding: 2rem;
  max-width: 850px;
}

.section-title {
  font-size: clamp(2.5rem, 8vw, 5rem);
  text-transform: capitalize;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0;
}

.section-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-weight: 400;
  opacity: 0.95;
  margin: 1rem 0 0 0;
}

.cta-primary {
  display: inline-block;
  padding: 0.875rem 2rem;
  background: #1ca89c;
  color: #ffffff;
  border-radius: 2.0rem;
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

.cta-primary:hover {
  background: #1ca89c;
  transform: translateY(-4px);
  transition: all 0.2s ease;
}

.cta-secondary {
  display: inline-block;
  padding: 0.875rem 2rem;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 2.0rem;
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.cta-secondary:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
}

.nav-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.nav-content {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-size: 1.25rem;
  font-weight: 600;
  color: black;
  text-decoration: none;
  margin-right: 3rem;
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0;
  flex: 1;
}

.nav-menu > li {
  position: relative;
}

.nav-menu > li > a {
  display: block;
  padding: 0 1rem;
  height: 3.5rem;
  line-height: 3.5rem;
  color: #333;
  text-decoration: none;
  font-size: 0.9375rem;
  transition: color 0.2s;
}

.nav-menu > li > a:hover {
  color: #000;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border: 1px solid #e5e5e7;
  border-top: none;
  border-radius: 0 0 0.5rem 0.5rem;
  min-width: 220px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: all 0.2s ease;
  z-index: 50;
}

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

.dropdown-menu a {
  display: block;
  padding: 0.75rem 1rem;
  color: #333;
  text-decoration: none;
  font-size: 0.875rem;
  transition: background 0.2s;
}

.dropdown-menu a:hover {
  background: #f5f5f7;
}

.nav-ctas {
  display: flex;
  gap: 0.75rem;
  margin-left: auto;
}

.nav-cta-primary {
  padding: 0.625rem 1.25rem;
  background: #1ca89c;
  color: white;
  border: none;
  border-radius: 2.0rem;
  font-weight: 500;
  font-size: 0.875rem;
  cursor: pointer;
  transition: background 0.2s ease;
  white-space: nowrap;
}

.nav-cta-primary:hover {
  background: #1ca89c;
}

.nav-cta-secondary {
  padding: 0.625rem 1.25rem;
  background: transparent;
  color: #333;
  border: 1px solid #333;
  border-radius: 2.0rem;
  font-weight: 500;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.nav-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.3);
}

.section-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.feature-section {
  padding: 6rem 2rem;
  background: white;
}

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

.value-tile {
  padding: 2rem;
  border-radius: 1rem;
  background: #f5f5f7;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.value-tile:hover {
  transform: translateY(-4px);
}

.value-tile h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 1rem 0 0.5rem 0;
  color: #2f3b52;
}

.value-tile p {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #555;
  margin: 0;
}

.value-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: #41629f;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.value-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.section-title-main {
  font-size: clamp(2rem, 5vw, 3.5rem);
  text-transform: capitalize;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 1rem 0;
  color: #2f3b52;
}

.section-subtitle-main {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #555;
  margin: 0 0 3rem 0;
  max-width: 1024px;
}

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

.step-box {
  text-align: center;
  padding: 2rem 1rem;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background: #41629f;
  color: white;
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.step-box h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
  color: #2f3b52;
}

.step-box p {
  font-size: 0.9375rem;
  color: #666;
  margin: 0;
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin: 3rem 0;
}

@media (max-width: 768px) {
  .two-column {
    grid-template-columns: 1fr;
  }
}

.media-placeholder {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, #f5f5f7 0%, #e8e8eb 100%);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 0.875rem;
  margin-top: 6rem;
  margin-bottom: 3rem;
}

 .card-image-placeholder {
  width: 100%;
  height: 300px;
  background: linear-gradient(135deg, #1ca89c 0%, #41629f 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 0.875rem;
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.card-section {
  padding: 3rem 2rem;
  background: #f5f5f7;
}

.feature-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

 .feature-card {
  background: transparent;
  padding: 0;
  border-radius: 1rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  transition: box-shadow 0.3s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
}

.feature-card:hover {
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

 .card-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  background: white;
  position: relative;
  z-index: 1;
  margin-top: -40px;
  border-radius: 0 0 0 0;
}

.feature-card p {
  font-size: 0.875rem;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

.card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.card-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-icon svg {
  width: 100%;
  height: 100%;
  stroke: #41629f;
}

.feature-card h4 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
  color: #243b63;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin: 2rem 0;
}

.footer {
  background: #f5f5f7;
  padding: 3rem 2rem;
  color: #555;
  font-size: 0.875rem;
  line-height: 1.6;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-links a {
  color: #555;
  text-decoration: none;
  transition: color 0.2s;
}

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

.footer-divider {
  border-top: 1px solid #d2d2d7;
  padding-top: 1rem;
  margin-top: 1rem;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

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

.channel-item {
  text-align: center;
  padding: 1.5rem 1rem;
  background: #243b63;
  border-radius: 0.625rem;
  /**border: 1px solid #1ca89c;**/
  transition: background 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
}

.channel-item:hover {
  background: #1ca89c;
}

.channel-item p {
  font-size: 0.9375rem;
  font-weight: 400;
  margin: 0;
  color: #ffffff;
}

.channel-item:hover p {
  font-size: 0.9375rem;
  font-weight: 600;
  margin: 0;
  color: #ffffff;
}

.badge {
  display: inline-block;
  padding: 0.375rem 0.75rem;
  background: #000;
  color: white;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
}

.pricing-card {
  background: #f5f5f7;
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid #e5e5e7;
  display: flex;
  flex-direction: column;
}

.pricing-card.featured {
  background: white;
  border: 3px solid #1ca89c;
  position: relative;
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 20px;
  background: linear-gradient(135deg, #1ca89c 0%, #41629f 100%);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
}

.pricing-price {
  font-size: 3rem;
  font-weight: 700;
  color: black;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.pricing-period {
  font-size: 0.875rem;
  color: #666;
  margin-bottom: 2rem;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  flex-grow: 1;
}

.pricing-features li {
  margin-bottom: 1rem;
  color: #333;
  font-size: 0.9375rem;
}

.pricing-features span {
  color: #000;
  font-weight: 600;
  margin-right: 0.5rem;
}

.pricing-btn {
  width: 100%;
  padding: 0.875rem;
  background: #1ca89c;
  color: white;
  border: none;
  border-radius: 2.0rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.pricing-btn:hover {
  background: #1ca89c;
  transition: all 0.3s ease;
  transform: translateY(-4px);
}

.addon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.addon-item {
  background: white;
  padding: 1.5rem;
  border-radius: 0.75rem;
  border: 1px solid #e5e5e7;
}

.addon-title {
  font-weight: 600;
  color: black;
  margin: 0 0 0.5rem 0;
  font-size: 0.9375rem;
}

.addon-desc {
  color: #666;
  font-size: 0.875rem;
  margin: 0 0 1rem 0;
}

.addon-price {
  font-weight: 700;
  font-size: 1.25rem;
  color: #2f3b52;
}

details {
  margin-bottom: 1rem;
  padding: 1.5rem;
  background: #f5f5f7;
  border-radius: 0.75rem;
  cursor: pointer;
}

details summary {
  font-weight: 600;
  color: black;
  user-select: none;
  list-style: none;
}

details summary::-webkit-details-marker {
  display: none;
}

details summary::before {
  content: "▶ ";
  display: inline-block;
  margin-right: 0.5rem;
  transition: transform 0.2s;
}

details[open] summary::before {
  transform: rotate(90deg);
}

details p {
  color: #666;
  margin: 1rem 0 0 0;
  font-size: 0.9375rem;
}

@media (max-width: 1024px) {
  .nav-menu {
    display: none;
  }

  .nav-content {
    justify-content: flex-end;
  }

  .nav-logo {
    margin-right: auto;
  }
}

