/* ──────────── HERO ──────────── */
.hero {
  padding: 88px 0 64px;
  background:
    linear-gradient(112deg, rgba(27, 28, 26, 0.92) 0%, rgba(31, 31, 28, 0.78) 50%, rgba(80, 64, 48, 0.36) 100%),
    url('/images/ppu-work-hero.png');
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 150px;
  background: linear-gradient(180deg, rgba(247, 248, 244, 0) 0%, var(--bg) 100%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-grid > *,
.calc-wrap > *,
.faq-wrap > * {
  min-width: 0;
}

.hero .eyebrow {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 20px;
}

.dot {
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(74, 222, 128, 0.6);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero h1 {
  max-width: 690px;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.08;
  letter-spacing: 0;
  color: #fff;
  margin-bottom: 20px;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.22);
  overflow-wrap: break-word;
  hyphens: auto;
}

.hero-lead {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero .btn-outline {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(10px);
}

.hero .btn-outline:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: var(--orange);
  color: #fff;
}

.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 600;
  padding-bottom: 0;
}

.hero-stats > div {
  padding-left: 16px;
  border-left: 3px solid var(--amber);
}

.hero-stats strong {
  color: #fff;
  font-size: 22px;
  display: block;
  line-height: 1.2;
  font-weight: 800;
}

.hero-card {
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 20px 48px rgba(20, 20, 18, 0.22);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(10px);
}

.hero-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 58px rgba(20, 20, 18, 0.24);
}

.hero-visual {
  height: 260px;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(0deg, rgba(31, 31, 28, 0.14), rgba(31, 31, 28, 0.02)),
    repeating-linear-gradient(135deg, #f3f6f2 0 12px, #e9f0ea 12px 24px);
  margin-bottom: 22px;
  background-color: #e9eee8;
}

.hero-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(31, 31, 28, 0.12), rgba(31, 31, 28, 0.02));
  z-index: 1;
  pointer-events: none;
}

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

.hero-visual-placeholder {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 2;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(63, 118, 101, 0.18);
  border-radius: 999px;
  padding: 6px 12px;
}

.hero-visual.has-image .hero-visual-image {
  display: block;
}

.hero-visual.has-image .hero-visual-placeholder {
  display: none;
}

.hero-carousel-btn {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 999px;
  background: rgba(31, 33, 31, 0.58);
  color: #fff;
  display: grid;
  place-items: center;
  font: inherit;
  font-size: 25px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.hero-carousel-btn:hover {
  background: rgba(31, 33, 31, 0.78);
  border-color: #fff;
}

.hero-carousel-prev {
  left: 12px;
}

.hero-carousel-next {
  right: 12px;
}

.hero-carousel-count {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 3;
  border-radius: 999px;
  background: rgba(31, 33, 31, 0.66);
  color: #fff;
  padding: 5px 9px;
  font-size: 12px;
  font-weight: 900;
}

.hero-carousel-btn[hidden],
.hero-carousel-count[hidden] {
  display: none;
}

.hero-card h2 {
  font-size: 22px;
  line-height: 1.3;
  margin-bottom: 10px;
  color: var(--dark);
}

.hero-card p {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.check-list { display: grid; gap: 12px; margin-bottom: 20px; }

.check-list div {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #24323a;
  font-weight: 700;
  font-size: 15px;
}

.check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #dcfce7;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  flex: 0 0 auto;
  font-size: 13px;
}

/* ──────────── SECTION DIVIDER ──────────── */
.section-divider {
  height: 56px;
  position: relative;
}

.section-divider::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 100%;
  background: inherit;
}

/* ──────────── SECTIONS COMMON ──────────── */
section {
  padding: 80px 0;
  scroll-margin-top: 88px;
}

main > section:not(.hero) {
  border-top: 1px solid rgba(215, 224, 213, 0.9);
}

.section-head {
  max-width: 760px;
  margin-bottom: 48px;
}

.kicker {
  display: inline-block;
  color: var(--green);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0;
  margin-bottom: 12px;
  background: var(--teal-light);
  padding: 6px 14px;
  border-radius: 8px;
}

.section-title {
  color: var(--dark);
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.15;
  letter-spacing: 0;
  margin-bottom: 16px;
  overflow-wrap: break-word;
  hyphens: auto;
}

.section-subtitle {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

/* ──────────── TRUST STRIP ──────────── */
.trust-section {
  padding: 34px 0;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  min-width: 0;
  padding: 18px 0;
}

.trust-mark {
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  background: var(--teal-light);
  color: var(--green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  font-size: 13px;
  font-weight: 900;
}

.trust-item h3 {
  color: var(--dark);
  font-size: 17px;
  line-height: 1.25;
  margin-bottom: 6px;
}

.trust-item p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

/* ──────────── BENEFITS ──────────── */
.benefits-section {
  background: #f7f8f4;
  position: relative;
}

.benefits-section::before {
  content: none;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 4px 14px rgba(23, 38, 34, 0.04);
  transition: all 0.3s ease;
  position: relative;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: #b8cec3;
}

.icon {
  width: 86px;
  height: 86px;
  border-radius: 0;
  background: transparent;
  color: var(--orange);
  display: grid;
  place-items: center;
  overflow: visible;
  margin-bottom: 18px;
  box-shadow: none;
}

.icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.icon .ui-icon {
  width: 26px;
  height: 26px;
}

.card h3 {
  color: var(--dark);
  font-size: 20px;
  line-height: 1.3;
  margin-bottom: 10px;
}

.card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

/* ──────────── SERVICES ──────────── */
.services-section {
  background: #edf4f0;
  border-bottom: 1px solid var(--line);
}

.service-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.service-item {
  background: rgba(255, 255, 255, 0.34);
  border: 1px solid rgba(215, 224, 213, 0.38);
  border-radius: var(--radius);
  padding: 22px 18px;
  color: #344054;
  font-weight: 800;
  font-size: 15px;
  min-height: 88px;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-item:hover {
  border-color: rgba(184, 206, 195, 0.58);
  background: rgba(255, 255, 255, 0.52);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(23, 38, 34, 0.025);
}

.service-item span {
  display: block;
  color: var(--green);
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 900;
}
