/* ===== Design tokens ===== */
:root {
  /* Nest People brand palette: warm orange + charcoal-brown + cream */
  --navy: #2b2017;        /* dark brown (headings, dark surfaces) */
  --navy-700: #3a2c20;
  --blue: #f5a623;        /* primary orange */
  --blue-600: #e08c12;
  --teal: #fbbf5a;        /* light amber (accents, gradients) */
  --ink: #2e2820;
  --muted: #7a6f60;
  --line: #efe6d8;
  --bg: #ffffff;
  --bg-alt: #fbf5ec;      /* cream */
  --radius: 16px;
  --shadow: 0 10px 30px rgba(43, 32, 23, 0.08);
  --shadow-lg: 0 20px 50px rgba(43, 32, 23, 0.16);
  --max: 1140px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Noto Sans SC', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

h1, h2, h3, h4, h5 { line-height: 1.15; color: var(--navy); letter-spacing: -0.02em; }
h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 700; }
a { color: inherit; text-decoration: none; }

.eyebrow {
  display: inline-block; font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--blue);
  margin-bottom: 14px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-block; background: var(--blue); color: #fff;
  padding: 14px 26px; border-radius: 999px; font-weight: 600;
  font-size: 0.95rem; border: none; cursor: pointer;
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
  box-shadow: 0 6px 18px rgba(245, 166, 35, .32);
}
.btn:hover { background: var(--blue-600); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--navy); box-shadow: none; border: 1.5px solid var(--line); }
.btn-ghost:hover { background: var(--bg-alt); }
.btn-sm { padding: 10px 18px; font-size: 0.88rem; }
.btn-full { width: 100%; }

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; gap: 22px; height: 70px; }
.brand { display: flex; align-items: center; gap: 10px; margin-right: auto; }
.brand-mark { width: 50px; height: 50px; display: grid; place-items: center; }
.brand-mark svg { width: 100%; height: 100%; }
.brand-name { font-weight: 700; font-size: 1.34rem; color: var(--navy); }
.brand-name strong { color: var(--blue); }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-weight: 500; color: var(--ink); font-size: 0.95rem; }
.nav-links a:not(.btn):hover { color: var(--blue); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.nav-toggle span { width: 24px; height: 2.5px; background: var(--navy); border-radius: 2px; }

/* Language switch */
.lang-switch {
  display: inline-flex; border: 1.5px solid var(--line); border-radius: 999px;
  padding: 3px; background: #fff; flex-shrink: 0;
}
.lang-switch button {
  border: none; background: none; cursor: pointer; font-family: inherit;
  font-size: 0.82rem; font-weight: 600; color: var(--muted);
  padding: 5px 12px; border-radius: 999px; transition: background .15s, color .15s;
}
.lang-switch button.active { background: var(--blue); color: #fff; }

/* ===== Hero ===== */
.hero {
  background:
    radial-gradient(1000px 400px at 80% -10%, rgba(251,191,90,.22), transparent),
    radial-gradient(900px 500px at 0% 0%, rgba(245,166,35,.14), transparent),
    var(--bg-alt);
  padding: 80px 0 70px;
}
.hero-inner { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 50px; align-items: center; }
.lead { font-size: 1.12rem; color: var(--muted); margin: 22px 0 30px; max-width: 540px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 36px; margin-top: 44px; }
.hero-stats div { display: flex; flex-direction: column; }
.hero-stats strong { font-size: 1.6rem; color: var(--navy); }
.hero-stats span { font-size: 0.85rem; color: var(--muted); }

.hero-card {
  background: var(--navy); color: #fff; border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow-lg);
}
.hc-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.10);
  font-size: 0.96rem;
}
.hc-row em {
  font-style: normal; font-size: 0.78rem; font-weight: 700;
  background: rgba(245,166,35,.22); color: #fbbf5a;
  padding: 4px 10px; border-radius: 999px;
}
.hc-foot { margin-top: 18px; font-size: 0.9rem; color: #c9bca8; }

/* ===== Trust ===== */
.trust { background: var(--bg-alt); border-block: 1px solid var(--line); }
.trust p { text-align: center; padding: 22px 0; color: var(--muted); font-weight: 500; font-size: 0.95rem; }

/* ===== Sections ===== */
.section { padding: 84px 0; }
.section-alt { background: var(--bg-alt); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 50px; }
.section-sub { color: var(--muted); margin-top: 14px; font-size: 1.02rem; }

.hl {
  background: linear-gradient(135deg, var(--blue), var(--teal));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ===== Pricing ===== */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; align-items: stretch; }
.price-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 28px; position: relative; display: flex; flex-direction: column;
}
.price-card h3 { font-size: 1.2rem; }
.price-pop { border-color: var(--blue); box-shadow: var(--shadow-lg); }
.price { margin: 16px 0 10px; display: flex; align-items: baseline; gap: 6px; }
.price .amt { font-size: 2.6rem; font-weight: 800; color: var(--navy); letter-spacing: -0.03em; }
.price .per { color: var(--muted); font-size: 0.9rem; font-weight: 500; }
.price-desc { color: var(--muted); font-size: 0.94rem; margin-bottom: 20px; }
.price-card ul { list-style: none; display: grid; gap: 11px; margin-bottom: 26px; flex: 1; }
.price-card ul li { position: relative; padding-left: 26px; font-size: 0.93rem; }
.price-card ul li::before { content: "✓"; position: absolute; left: 0; color: var(--blue-600); font-weight: 800; }
.price-foot { text-align: center; margin-top: 28px; color: var(--muted); font-size: 0.92rem; }
.price-foot a { color: var(--blue); font-weight: 600; }

.search-band {
  margin-top: 30px; background: var(--navy); color: #fff; border-radius: var(--radius);
  padding: 34px 38px; display: grid; grid-template-columns: 1.4fr 1fr; gap: 30px;
  align-items: center;
}
.search-band h3 { color: #fff; font-size: 1.4rem; margin-bottom: 8px; }
.search-band p { color: #d8cdbb; font-size: 0.98rem; }
.search-band-price { text-align: right; display: flex; flex-direction: column; align-items: flex-end; gap: 4px; }
.search-band-price .amt {
  font-size: 2.6rem; font-weight: 800; letter-spacing: -0.03em;
  background: linear-gradient(135deg, #fbbf5a, #f5a623);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.search-band-price .per { color: #c9bca8; font-size: 0.9rem; margin-bottom: 12px; }

@media (max-width: 720px) {
  .search-band { grid-template-columns: 1fr; text-align: center; }
  .search-band-price { align-items: center; text-align: center; }
}

/* ===== Service cards ===== */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 28px; position: relative; transition: transform .2s, box-shadow .2s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card-featured { border-color: var(--blue); box-shadow: var(--shadow); }
.card-badge {
  position: absolute; top: -13px; left: 28px; background: var(--blue);
  color: #fff; font-size: 0.72rem; font-weight: 700; letter-spacing: .05em;
  text-transform: uppercase; padding: 5px 12px; border-radius: 999px;
}
.card-icon { font-size: 1.8rem; margin-bottom: 14px; }
.card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 0.96rem; margin-bottom: 18px; }
.card ul { list-style: none; display: grid; gap: 10px; margin-bottom: 22px; }
.card ul li { position: relative; padding-left: 26px; font-size: 0.92rem; }
.card ul li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  color: var(--blue-600); font-weight: 800;
}
.card-list-label { font-weight: 700; color: var(--navy); font-size: 0.9rem; margin-bottom: 12px; }
.card-link { font-weight: 600; color: var(--blue); font-size: 0.95rem; }

/* ===== HRO scope grid ===== */
.hro-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.hro-cat {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 24px; position: relative; transition: transform .2s, box-shadow .2s;
}
.hro-cat:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.hro-num {
  width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--blue), var(--teal)); color: #fff;
  font-weight: 800; font-size: 0.95rem; margin-bottom: 14px;
}
.hro-cat h3 { font-size: 1.1rem; margin-bottom: 14px; }
.hro-cat ul { list-style: none; display: grid; gap: 9px; }
.hro-cat ul li { position: relative; padding-left: 22px; font-size: 0.9rem; color: var(--ink); }
.hro-cat ul li::before { content: "✓"; position: absolute; left: 0; color: var(--blue-600); font-weight: 800; }
.hro-note { margin-top: 16px; font-size: 0.82rem; color: var(--muted); font-style: italic; }

@media (max-width: 900px) { .hro-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .hro-grid { grid-template-columns: 1fr; } }

/* ===== Steps ===== */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.step-num {
  width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--blue), var(--teal)); color: #fff;
  font-weight: 800; margin-bottom: 16px;
}
.step h4 { font-size: 1.05rem; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 0.9rem; }

/* ===== Coverage ===== */
.coverage-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.check-list { list-style: none; display: grid; gap: 12px; margin-top: 22px; }
.check-list li { position: relative; padding-left: 28px; font-weight: 500; }
.check-list li::before {
  content: "✓"; position: absolute; left: 0; color: #fff; background: var(--blue);
  width: 19px; height: 19px; border-radius: 50%; font-size: 0.72rem;
  display: grid; place-items: center; top: 4px;
}
.coverage-art {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
  background: var(--navy); padding: 36px; border-radius: var(--radius);
}
.map-pin {
  aspect-ratio: 1; display: grid; place-items: center; font-weight: 700;
  color: #cdd7ec; background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10); border-radius: 12px; font-size: 0.95rem;
}

/* ===== About ===== */
.about-inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 50px; align-items: start; }
.about-inner p { color: var(--muted); margin-top: 16px; }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.value { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 22px; }
.value h4 { font-size: 1.05rem; margin-bottom: 6px; }
.value p { color: var(--muted); font-size: 0.9rem; margin: 0; }

/* ===== Contact ===== */
.contact-inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 50px; align-items: start; }
.contact-copy p { color: var(--muted); margin-top: 14px; }
.contact-points { list-style: none; margin-top: 26px; display: grid; gap: 14px; }
.contact-points a { color: var(--blue); font-weight: 500; }
.contact-form {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px; box-shadow: var(--shadow);
}
.field { margin-bottom: 18px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 7px; color: var(--navy); }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--line);
  border-radius: 10px; font-family: inherit; font-size: 0.95rem; color: var(--ink);
  transition: border-color .15s, box-shadow .15s; background: #fff;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(245,166,35,.18);
}
.field textarea { resize: vertical; }
.form-note { margin-top: 14px; color: var(--teal); font-weight: 600; font-size: 0.92rem; }

/* Google Form embed */
.form-embed {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); overflow: hidden; padding: 8px;
}
.form-embed iframe { display: block; width: 100%; border: 0; border-radius: 10px; }

/* ===== Footer ===== */
.site-footer { background: var(--navy); color: #c3cde0; padding: 56px 0 28px; }
.footer-inner { display: grid; grid-template-columns: 1.2fr 1.8fr; gap: 40px; }
.footer-brand .brand-name { color: #fff; font-size: 1.2rem; }
.footer-brand p { margin-top: 12px; font-size: 0.92rem; max-width: 280px; }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.footer-cols h5 { color: #fff; font-size: 0.82rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 14px; }
.footer-cols a { display: block; color: #aab6cf; font-size: 0.92rem; margin-bottom: 9px; }
.footer-cols a:hover { color: #fff; }
.footer-bottom {
  display: flex; justify-content: space-between; margin-top: 40px;
  padding-top: 22px; border-top: 1px solid rgba(255,255,255,.10);
  font-size: 0.82rem; color: #8493b3;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .hero-inner, .coverage-inner, .about-inner, .contact-inner { grid-template-columns: 1fr; }
  .cards, .pricing { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .nav-links {
    position: fixed; inset: 70px 0 auto 0; background: #fff; flex-direction: column;
    gap: 0; padding: 12px 24px 24px; border-bottom: 1px solid var(--line);
    transform: translateY(-130%); transition: transform .25s ease; box-shadow: var(--shadow);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { width: 100%; padding: 12px 0; }
  .nav-links .btn { text-align: center; margin-top: 8px; }
  .nav-toggle { display: flex; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
}
@media (max-width: 560px) {
  .steps, .about-values, .field-row, .footer-inner, .footer-cols { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}
