.hero {
  padding: 100px 0 90px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 42px;
  align-items: center;
}

.hero-tag {
  display: inline-block;
  background: #dff7f5;
  color: var(--primary-dark);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 22px;
}

h1 {
  font-size: clamp(1.7rem, 6vw, 3.4rem);
  line-height: 1.15;
  margin: 0 0 22px;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 16px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.hero-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 30px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.04);
}

.hero-card h3 {
  margin-top: 0;
}

.hero-list {
  display: grid;
  gap: 14px;
}

.hero-item {
  background: #f8fbfb;
  border: 1px solid #e7f0ef;
  border-radius: 16px;
  padding: 14px 16px;
}

section {
  padding: 84px 0;
}

.section-head {
  text-align: center;
  margin-bottom: 52px;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 12px;
  display: inline-block;
  position: relative;
  padding-bottom: 14px;
}

.section-head h2::after {
  content: "";
  display: block;
  width: 3ch;
  height: 6px;
  background: var(--primary);
  border-radius: 999px;
  margin: 10px auto 0;
}

.section-head h3 {
  font-size: clamp(1.9rem, 2.5vw, 2.15rem);
  margin-top: 0;
  margin-bottom: 18px;
  text-align: center;
}

.philosophy-box h3 {
  font-size: clamp(1.9rem, 2.5vw, 2.15rem);
  margin-top: 0;
  margin-bottom: 18px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 22px;
  text-align: center;
}

.section-title + .section-intro {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
  color: var(--gray-sub);
  line-height: 1.8;
}

.section-head p,
.philosophy-box p {
  max-width: 760px;
  margin: 0 auto 18px;
  color: var(--muted);
  text-align: left;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}

.card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px;
}

.card h3 {
  margin-top: 0;
}

.card p {
  color: var(--muted);
  margin-bottom: 0;
}

.philosophy {
  background: white;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.philosophy-box {
  max-width: 840px;
  margin: 0 auto 40px;
  text-align: center;
}

.philosophy-box p {
  max-width: 760px;
  margin: 0 auto 16px;
  text-align: left;
}

.philosophy-box p:last-child {
  margin-bottom: 0;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.tag {
  background: white;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 700;
}

.pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.price-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 30px;
}

.price {
  font-size: 2.2rem;
  font-weight: 800;
  margin: 14px 0;
}

ul {
  padding-left: 18px;
}

.quote {
  background: #ecfaf8;
  border: 1px solid #d7efec;
  border-radius: 24px;
  padding: 28px;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-dark);
}
@media (max-width: 860px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 72px;
  }
}

.table-responsive {
  width: 100%;
  overflow-x: auto;
  background-color: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  min-width: 600px;
}

th,
td {
  padding: 16px 20px;
  border-bottom: 1px solid #e2e8f0;
  font-size: 15px;
}

th {
  background-color: #f8fafc;
  font-weight: 700;
}

.role-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  background-color: #f0fdfa;
  color: var(--primary-color);
}

.flow-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 650px;
  margin: 0 auto;
}

.flow-step {
  background-color: white;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.01);
  padding: 8px 20px;
  border: 1px solid var(--border);
}

.step-num {
  background-color: #f0fdfa;
  color: var(--text);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.step-content h4 {
  font-size: 16px;
  margin-bottom: 2px;
}

.step-content p {
  font-size: 14px;
  color: var(--gray-sub);
}

.flow-arrow {
  text-align: center;
  color: var(--border);
  font-size: 20px;
  line-height: 1.4;
  margin: 0 auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(240px, 1fr));
  gap: 28px;
  margin-top: 24px;
  width: 100%;
  justify-content: center;
}

.price-card {
  background: var(--card);
  border-radius: 18px;
  padding: 34px 28px;
  width: 100%;
  max-width: none;
  box-shadow: 0 10px 28px rgba(0,0,0,0.04);
  text-align: left;
  position: relative;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}

@media (min-width: 1100px) {
  .pricing-grid {
    max-width: 1040px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(240px, 1fr));
  }
}

@media (max-width: 860px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

.price-card.popular {
  border: 2px solid var(--primary);
}

.price-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 6px 18px rgba(36,130,125,0.12);
}

.price-card h3 {
  font-size: 1.15rem;
  margin: 8px 0 10px;
  text-align: center;
}

.price-num {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--text);
  margin: 6px 0 6px;
  text-align: center;
}

.price-num span {
  font-size: 1rem;
  font-weight: 600;
}

.price-sub {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 18px;
  text-align: center;
}

.price-features {
  list-style: none;
  padding: 16px 6px 0 6px;
  margin-top: auto;
  display: block;
  border-top: 1px solid rgba(0,0,0,0.04);
}

.price-features li {
  font-size: 0.95rem;
  margin-bottom: 12px;
  color: #334155;
  position: relative;
  padding-left: 26px;
  line-height: 1.4;
}

.price-features li::before {
  content: '✔';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
  font-weight: 900;
  font-size: 1.05rem;
  line-height: 1;
}
