.page-hero {
  padding-top: calc(var(--nav-h) + 40px);
  padding-bottom: 40px;
  text-align: center;
  background: linear-gradient(180deg, #0a1a2e 0%, #0e3d5c 60%, #1a6a82 100%);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,184,217,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,184,217,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.page-hero h1 {
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--white);
  letter-spacing: 1px;
  position: relative;
  z-index: 1;
}

.page-hero .hero-divider {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), transparent);
  margin: 16px auto 0;
  border-radius: 2px;
}

.page-body {
  background: linear-gradient(160deg, #0d2540 0%, #0e4d6e 35%, #1a7a9a 65%, #5baab8 100%);
  padding: 56px var(--section-px) 64px;
  position: relative;
  overflow: hidden;
}

.page-body::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

.page-body::after {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,184,217,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.page-content {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-desc {
  font-size: clamp(0.97rem, 1.6vw, 1.08rem);
  line-height: 1.8;
  color: rgba(255,255,255,0.9);
  text-align: center;
  max-width: 860px;
  margin: 0 auto 40px;
  font-weight: 300;
}

.page-desc strong {
  color: var(--cyan);
  font-weight: 600;
}

.features-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 36px 40px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  margin-bottom: 28px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.1);
}

.features-card-title {
  font-family: var(--font-brand);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.features-card-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(0,184,217,0.3);
}

.feature-list {
  list-style: none;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 32px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.92rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.55;
}

.feature-list li:last-child,
.feature-list li:nth-last-child(2):nth-child(odd) {
  border-bottom: none;
}

.feature-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--cyan);
  border-radius: 50%;
  margin-top: 7px;
  flex-shrink: 0;
  box-shadow: 0 0 6px rgba(0,184,217,0.6);
}

.feature-list li strong {
  color: var(--white);
  font-weight: 600;
}

.why-card {
  background: rgba(0,184,217,0.08);
  border: 1px solid rgba(0,184,217,0.2);
  border-radius: 20px;
  padding: 36px 40px;
  margin-bottom: 32px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15), inset 0 1px 0 rgba(0,184,217,0.15);
}

.why-title {
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  color: var(--white);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.why-title::before {
  content: '';
  width: 4px;
  height: 1.4em;
  background: var(--cyan);
  border-radius: 2px;
  display: inline-block;
  flex-shrink: 0;
}

.why-list {
  list-style: none;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 32px;
}

.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.92rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.55;
}

.why-list li:last-child,
.why-list li:nth-last-child(2):nth-child(odd) {
  border-bottom: none;
}

.why-list li::before {
  content: '✓';
  font-weight: 700;
  color: var(--cyan);
  font-size: 0.9rem;
  margin-top: 1px;
  flex-shrink: 0;
}

.page-cta-wrap {
  text-align: center;
  padding: 8px 0 0;
}

.btn-page-cta {
  display: inline-block;
  padding: 15px 52px;
  background: var(--cyan);
  color: var(--dark);
  border-radius: 40px;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  transition: background var(--t-med), box-shadow var(--t-med), transform var(--t-fast);
  box-shadow: 0 4px 24px rgba(0,184,217,0.35);
  letter-spacing: 0.3px;
}

.btn-page-cta:hover {
  background: var(--cyan-lt);
  box-shadow: 0 8px 32px rgba(0,184,217,0.5);
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .feature-list,
  .why-list { grid-template-columns: 1fr; }
  .feature-list li:nth-last-child(2):nth-child(odd),
  .why-list li:nth-last-child(2):nth-child(odd) { border-bottom: 1px solid rgba(255,255,255,0.06); }
  .feature-list li:last-child,
  .why-list li:last-child { border-bottom: none; }
}

@media (max-width: 640px) {
  .page-body { padding: 40px 20px 48px; }
  .features-card, .why-card { padding: 28px 24px; }
}

