/* ---- HERO ---- */
.hero {
  padding: 72px 0 80px;
  background: var(--nc-white);
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero-left { display: flex; flex-direction: column; gap: 22px; }
.hero-eyebrow { margin-bottom: -8px; }
.hero-h1 {
  font-size: clamp(46px, 6vw, 74px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -.018em;
  color: var(--fg);
}
.hero-h1 em { font-style: normal; color: var(--nc-orange-500); }
.hero-sub {
  font-size: 19px;
  line-height: 1.6;
  color: var(--fg-muted);
  max-width: 520px;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 4px; }
.hero-trust {
  display: flex;
  gap: 28px;
  padding-top: 24px;
  margin-top: 8px;
  border-top: 1px solid var(--border-subtle);
  flex-wrap: wrap;
}
.trust-item { display: flex; flex-direction: column; gap: 2px; }
.trust-num { font-size: 26px; font-weight: 700; letter-spacing: -.01em; color: var(--fg); }
.trust-label { font-size: 11px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: var(--fg-subtle); }

.hero-right { position: relative; }
.hero-plate {
  background: var(--nc-paper);
  border-radius: 32px;
  aspect-ratio: 1 / 1.05;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
}
.hero-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 60% 110%, rgba(255,135,60,.3), transparent 55%);
  pointer-events: none;
}
.hero-portrait {
  width: 90%; height: auto;
  object-fit: contain;
  position: relative; z-index: 2;
}
.hero-chip {
  position: absolute;
  background: var(--nc-white);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  padding: 12px 16px;
  display: flex; align-items: center; gap: 10px;
  z-index: 3;
}
.chip-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: #2f9461;
  box-shadow: 0 0 0 4px rgba(47,148,97,.18);
  flex-shrink: 0;
}
.chip-text { font-weight: 600; font-size: 13px; color: var(--fg); }
.chip-price { font-weight: 700; font-size: 20px; color: var(--nc-orange-500); }

/* ---- WHY ---- */
.why { padding: 88px 0; background: var(--nc-cream); }
.why-head { text-align: center; margin-bottom: 52px; }
.why-head h2 { font-size: clamp(28px, 4vw, 40px); font-weight: 700; letter-spacing: -.01em; margin-top: 10px; }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.why-card {
  background: var(--nc-white); border-radius: 20px;
  padding: 28px 24px; display: flex; flex-direction: column; gap: 14px;
  border: 1px solid var(--border-subtle); box-shadow: var(--shadow-sm);
}
.why-card h3 { font-size: 17px; font-weight: 700; line-height: 1.25; }
.why-card p { font-size: 14px; line-height: 1.6; color: var(--fg-muted); }

/* ---- SERVICES TEASER ---- */
.svc-teaser { padding: 88px 0; background: var(--nc-white); }
.svc-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: 44px; flex-wrap: wrap; }
.svc-head-left h2 { font-size: clamp(26px, 3.5vw, 38px); font-weight: 700; letter-spacing: -.01em; margin-top: 10px; }
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.svc-card { padding: 28px 26px 24px; display: flex; flex-direction: column; gap: 14px; min-height: 220px; }
.svc-card h3 { font-size: 20px; font-weight: 700; line-height: 1.2; }
.svc-card p { font-size: 14px; line-height: 1.6; color: var(--fg-muted); flex: 1; }

/* ---- PRICING ---- */
.pricing { padding: 88px 0; background: var(--nc-paper); }
.pricing-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.pricing-left h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 700; letter-spacing: -.01em; margin-top: 10px; margin-bottom: 18px; }
.pricing-left p { font-size: 16px; line-height: 1.65; color: var(--fg-muted); margin-bottom: 12px; }
.pricing-left .note { font-size: 13px; color: var(--fg-subtle); line-height: 1.5; }
.pricing-card {
  background: var(--nc-gray-900); border-radius: 28px;
  padding: 44px 40px; text-align: center;
  box-shadow: 0 20px 60px rgba(26,24,22,.20);
}
.pricing-card .price-eyebrow { font-size: 11px; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.45); margin-bottom: 16px; }
.pricing-card .price-num {
  font-size: 80px; font-weight: 700; letter-spacing: -.03em;
  color: var(--nc-white); line-height: 1; display: flex; align-items: flex-start; justify-content: center; gap: 4px;
}
.pricing-card .price-num sup { font-size: 32px; margin-top: 12px; color: var(--nc-orange-400); }
.pricing-card .price-unit { font-size: 18px; font-weight: 500; color: rgba(255,255,255,.5); margin-top: 8px; margin-bottom: 28px; }
.pricing-list { text-align: left; display: flex; flex-direction: column; gap: 12px; }
.pricing-item { display: flex; align-items: center; gap: 10px; font-size: 14px; color: rgba(255,255,255,.75); }
.pricing-check { width: 20px; height: 20px; border-radius: 50%; background: var(--nc-orange-500); display: grid; place-items: center; flex-shrink: 0; }

/* ---- FOUNDER TEASER ---- */
.founder { padding: 88px 0; background: var(--nc-white); }
.founder-inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: center; }
.founder-img-wrap {
  background: var(--nc-paper); border-radius: 28px;
  overflow: hidden; aspect-ratio: 1 / 1.1;
  display: flex; align-items: flex-end; justify-content: center;
  position: relative;
}
.founder-img-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 110%, rgba(255,135,60,.25), transparent 60%);
}
.founder-img-wrap img { width: 90%; position: relative; z-index: 2; }
.founder-text { display: flex; flex-direction: column; gap: 20px; }
.founder-text h2 { font-size: clamp(28px, 3.5vw, 40px); font-weight: 700; letter-spacing: -.01em; }
.founder-text h2 span { color: var(--nc-orange-500); }
.founder-text p { font-size: 16px; line-height: 1.7; color: var(--fg-muted); }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-inner { grid-template-columns: 1fr; }
  .founder-inner { grid-template-columns: 1fr; }
  .founder-img-wrap { max-width: 420px; }
}
@media (max-width: 700px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero { padding: 52px 0 60px; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .svc-grid { grid-template-columns: 1fr; }
  .svc-head { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .why-grid { grid-template-columns: 1fr; }
}
