.hero{
  min-height: auto !important;
}

/* --- Services Offered Section --- */
.offerings-section {
  padding: 4rem 5% 1rem;
}

.offerings-intro {
  max-width: 780px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.offerings-heading {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--accent);
}

.offerings-body {
  font-size: 1rem;
  color: var(--text-muted, rgba(255,255,255,0.65));
  line-height: 1.7;
}

.offerings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  max-width: 1100px;
  margin: 0 auto;
}

.offering-card {
  background: var(--bg);
  padding: 2.5rem;
  transition: background 0.3s;
  position: relative;
  overflow: hidden;
}

.offering-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent-dim);
  opacity: 0;
  transition: opacity 0.3s;
}

.offering-card:hover::before { opacity: 1; }

.offering-icon {
  width: 48px; height: 48px;
  background: var(--accent-dim);
  border: 1px solid var(--accent-mid);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
  color: var(--accent);
  position: relative;
  z-index: 1;
}

.offering-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}

.offering-desc {
  font-size: 0.9rem;
  color: var(--text-muted, rgba(255,255,255,0.6));
  line-height: 1.7;
  position: relative;
  z-index: 1;
  margin: 0;
}

@media (max-width: 768px) {
  .offerings-grid { grid-template-columns: 1fr; }
}

/* ================================
   SERVICES - PRICING SECTION
   ================================ */

/* --- Fade-up Reveal Animation --- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Pricing Intro --- */
.pricing-section {
  padding: 4rem 5%;
}

.pricing-intro {
  max-width: 780px;
  margin: 0 auto 3.5rem;
  text-align: center;
}

.pricing-heading {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--accent);
}

.pricing-body {
  font-size: 1rem;
  color: var(--text-muted, rgba(255,255,255,0.65));
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* --- Pricing Model Steps (01 + 02) --- */
.pricing-model {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  margin-top: 1.5rem;
}

.pricing-model-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.2rem 1.5rem;
  text-align: left;
  max-width: 300px;
  flex: 1 1 240px;
  transition: box-shadow 0.3s;
}

.pricing-model-step:hover {
  box-shadow: 0 8px 28px rgba(163, 224, 252, 0.12);
}

.pricing-model-num {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  flex-shrink: 0;
}

.pricing-model-step strong {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.35rem;
}

.pricing-model-step p {
  font-size: 0.9rem;
  color: var(--text-muted, rgba(255,255,255,0.6));
  margin: 0;
  line-height: 1.55;
}

.pricing-model-divider {
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--accent-mid, rgba(163,224,252,0.4));
  flex-shrink: 0;
  align-self: center;
}

/* --- Packages Intro Header (between 01/02 and cards) --- */
.packages-intro {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.packages-heading {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 0.4rem;
}

.packages-body {
  font-size: 0.92rem;
  color: var(--text-muted, rgba(255,255,255,0.6));
  margin: 0;
  line-height: 1.6;
}

/* --- Hourly Rate (no package) Section --- */
.hourly-rate {
  max-width: 780px;
  margin: 3.5rem auto 0;
  text-align: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.8rem 2rem;
}

.hourly-rate-heading {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 0.6rem;
}

.hourly-rate-body {
  font-size: 0.92rem;
  color: var(--text-muted, rgba(255,255,255,0.65));
  line-height: 1.6;
  margin: 0 0 1.4rem;
}

.hourly-rate-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.hourly-rate-table th,
.hourly-rate-table td {
  padding: 0.7rem 1rem;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border);
}

.hourly-rate-table th {
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
}

.hourly-rate-table td {
  color: var(--text-muted, rgba(255,255,255,0.75));
}

.hourly-rate-table td:last-child,
.hourly-rate-table th:last-child {
  text-align: right;
  color: var(--text);
  font-weight: 600;
}

.hourly-rate-table tbody tr:last-child td {
  border-bottom: none;
}

@media (max-width: 600px) {
  .hourly-rate-table th,
  .hourly-rate-table td {
    padding: 0.6rem 0.5rem;
    font-size: 0.82rem;
  }
}

/* --- Pricing Cards Grid --- */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

/* --- Individual Pricing Card --- */
.pricing-card {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.8rem 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform 0.35s ease, box-shadow 0.3s;
}

.pricing-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 40px rgba(163, 224, 252, 0.18);
}

/* Most popular highlight */
.pricing-card--popular {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent);
}

/* Best value highlight */
.pricing-card--value {
  border-color: var(--accent-mid, rgba(163,224,252,0.5));
}

/* Card badge (Most popular / Best value) */
.pricing-card-badge {
  position: absolute;
  top: -0.85rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--bg);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.9rem;
  border-radius: 100px;
  white-space: nowrap;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pricing-card-badge--value {
  background: var(--accent-mid, rgba(163,224,252,0.25));
  color: var(--accent);
}

/* Card header (title + hours badge) */
.pricing-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.pricing-card-header h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin: 0;
}

/* Hours badges */
.pricing-badge {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.65rem;
  border-radius: 100px;
  letter-spacing: 0.03em;
  white-space: nowrap;
  text-transform: uppercase;
}

.badge-basic {
  background: rgba(163, 224, 252, 0.12);
  color: var(--accent);
  border: 1px solid rgba(163, 224, 252, 0.25);
}

.badge-small {
  background: rgba(163, 224, 252, 0.18);
  color: var(--accent);
  border: 1px solid rgba(163, 224, 252, 0.35);
}

.badge-large {
  background: rgba(163, 224, 252, 0.25);
  color: var(--accent);
  border: 1px solid var(--accent-mid, rgba(163,224,252,0.5));
}

/* Card description */
.pricing-card-desc {
  font-size: 0.88rem;
  color: var(--text-muted, rgba(255,255,255,0.6));
  margin: 0;
  line-height: 1.55;
}

/* Price */
.pricing-price {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text);
  margin: 0.25rem 0 0;
  line-height: 1;
}

.pricing-price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-muted, rgba(255,255,255,0.5));
}

/* Feature list */
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  margin-top: auto;
}

.pricing-features li {
  font-size: 0.9rem;
  color: var(--text-muted, rgba(255,255,255,0.7));
  padding-left: 1.4rem;
  position: relative;
}

.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.85rem;
}

/* ================================
   RESPONSIVE
   ================================ */
@media (max-width: 768px) {
  .pricing-model {
    flex-direction: column;
    align-items: stretch;
  }

  .pricing-model-divider {
    text-align: center;
    transform: rotate(90deg);
  }

  .pricing-cards {
    grid-template-columns: 1fr;
  }

  .pricing-model-step {
    max-width: 100%;
  }
}