* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #f4f7fb;
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, 'Roboto', sans-serif;
  padding: 0 20px 40px;
  color: #1a2f3f;
}

.nav-prices {
  background: #1d827d;
  margin: 0 -20px 24px;
  padding: 0 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.nav-prices-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.nav-prices .brand {
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.04em;
}
.nav-prices .nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.nav-prices .nav-links a {
  color: #d4eeeb;
  text-decoration: none;
  font-size: 0.95rem;
}
.nav-prices .nav-links a:hover,
.nav-prices .nav-links a.active {
  color: #fff;
}
.nav-prices .nav-cta {
  background: #fff8ed;
  color: #1a4a47;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.9rem;
}

.price-website {
  max-width: 1280px;
  margin: 0 auto;
  background: white;
  border-radius: 40px;
  box-shadow: 0 25px 45px -12px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  padding: 40px 48px;
}

h1 {
  font-size: 38px;
  font-weight: 800;
  background: linear-gradient(120deg, #1F5E8E, #2A9D8F, #E9C46A);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.hero-tagline {
  font-size: 18px;
  color: #2c5f7a;
  border-left: 4px solid #F4A261;
  padding-left: 20px;
  margin: 16px 0 32px 0;
  font-weight: 450;
  line-height: 1.4;
}

.intro {
  margin-bottom: 12px;
  font-size: 16px;
}

.section-badge {
  display: inline-block;
  background: #E9F5F0;
  color: #1E6F5C;
  padding: 6px 20px;
  border-radius: 60px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.section-badge-partner {
  background: #FEF2E6;
  color: #B45F2B;
}

h2 {
  font-size: 28px;
  font-weight: 700;
  margin: 40px 0 20px 0;
  color: #1F5E8E;
  display: flex;
  align-items: center;
  gap: 12px;
}

h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 28px 0 12px 0;
  color: #2C5F7A;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0 24px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
}

.price-table th {
  background-color: #F0F4F9;
  color: #1f4662;
  font-weight: 700;
  padding: 16px 12px;
  border-bottom: 2px solid #dce5ef;
  font-size: 16px;
}

.price-table td {
  border-bottom: 1px solid #e6edf4;
  padding: 14px 12px;
  background: white;
  text-align: center;
  font-size: 15px;
}

.price-table tr:last-child td {
  border-bottom: none;
}

.price-table-flat {
  box-shadow: none;
}

.price-em {
  font-size: 24px;
  font-weight: 800;
  color: #E76F51;
  letter-spacing: -0.3px;
}

.price-em-sm {
  font-size: 20px;
}

.star {
  color: #E76F51;
}

.feature-list {
  background: #FEF9E6;
  border-radius: 24px;
  padding: 20px 28px;
  margin: 20px 0 20px;
  border-left: 6px solid #F4A261;
}

.school-offer {
  background: #EFF6FF;
  border-radius: 24px;
  padding: 16px 24px;
  margin: 28px 0;
  font-size: 16px;
  line-height: 1.5;
}

.school-offer-title {
  font-weight: 800;
}

.partner-card {
  background: linear-gradient(135deg, #F8FAFE 0%, #FFFFFF 100%);
  border: 1px solid #cbdde9;
  border-radius: 28px;
  padding: 24px;
  margin: 28px 0;
  box-shadow: 0 6px 12px -8px rgba(0, 0, 0, 0.05);
}

.partner-lead {
  font-size: 17px;
  font-weight: 500;
}

.partner-divider {
  height: 1px;
  background: #cbdde9;
  margin: 20px 0;
}

.partner-btn {
  display: inline-block;
  margin-top: 12px;
  background: #F4A261;
  color: #2F3E46;
  padding: 8px 24px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
}

.partner-btn:hover {
  filter: brightness(1.05);
}

.grid-2 {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin: 30px 0;
}

.grid-2 .box {
  flex: 1;
  min-width: 220px;
  background: #ffffff;
  border-radius: 28px;
  padding: 20px 24px;
  border: 1px solid #e2edf7;
  transition: all 0.2s;
}

.box-icon {
  font-size: 32px;
}

.grid-2 .box h3 {
  margin-top: 8px;
}

.highlight-box {
  background: linear-gradient(112deg, #1F5E8E10 0%, #2A9D8F10 100%);
  padding: 20px 26px;
  border-radius: 32px;
  margin: 32px 0;
}

.highlight-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.footnote {
  text-align: center;
  font-size: 13px;
  color: #6b85a0;
  border-top: 1px solid #e2e8f0;
  padding-top: 28px;
  margin-top: 40px;
  line-height: 1.6;
}

@media (max-width: 720px) {
  .price-website {
    padding: 24px 20px;
    border-radius: 24px;
  }
  h1 {
    font-size: 28px;
  }
  .price-table {
    font-size: 13px;
  }
  .price-table th,
  .price-table td {
    padding: 10px 8px;
  }
}

@media print {
  body {
    background: white;
    padding: 0;
  }
  .nav-prices {
    display: none;
  }
  .price-website {
    padding: 20px;
    box-shadow: none;
  }
}
