/* ==========================================================
   LANZCAPE — site styles
   ========================================================== */

:root {
  /* Brand palette — from LANZCAPE Style Guide
     (red reserved for the logo only; blue used everywhere else) */
  --red:          #ed2024;   /* logo only */
  --brand:        #0085c7;   /* primary blue */
  --brand-deep:   #006aa0;
  --brand-soft:   #cde7f4;
  --brand-tint:   #eaf5fb;

  --slate:        #2d3f50;   /* deep navy slate */
  --slate-deep:   #1f2c39;
  --blue:         #0085c7;
  --green:        #35af31;
  --grey:         #7a828a;
  --grey-light:   #c7c4c3;

  --ink:        var(--slate);
  --ink-soft:   #4a5663;
  --muted:      var(--grey);
  --line:       #e4e6e8;
  --line-soft:  #eef0f2;
  --bg:         #ffffff;
  --bg-soft:    #f7f8f9;
  --bg-tint:    #f1f3f5;

  --accent:       var(--blue);

  --radius-sm: 6px;
  --radius:    10px;
  --radius-lg: 18px;

  --shadow-sm: 0 1px 2px rgba(45,63,80,.05), 0 1px 1px rgba(45,63,80,.03);
  --shadow:    0 8px 24px -12px rgba(45,63,80,.18), 0 2px 6px rgba(45,63,80,.05);
  --shadow-lg: 0 30px 60px -30px rgba(45,63,80,.25), 0 8px 20px -10px rgba(45,63,80,.08);

  --font-sans: "Poppins", system-ui, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
  --font-display: "Poppins", system-ui, sans-serif;

  --max-w: 1180px;
  --gutter: clamp(20px, 4vw, 48px);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; height: auto; }

a {
  color: var(--brand);
  text-decoration: none;
  transition: color .15s ease;
}
a:hover { color: var(--brand-deep); }

p { margin: 0 0 1em; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  letter-spacing: -.01em;
  margin: 0 0 .5em;
  line-height: 1.15;
  text-wrap: pretty;
}

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

.skip-link {
  position: absolute; left: -9999px; top: auto;
  background: var(--ink); color: #fff; padding: 10px 14px; z-index: 100;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .01em;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .12s ease, background .15s ease, color .15s ease, border-color .15s ease, box-shadow .15s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-lg { padding: 15px 30px; font-size: 16px; }
.btn-block { width: 100%; }

.btn-primary {
  background: var(--brand);
  color: #fff;
}
.btn-primary:hover { background: var(--brand-deep); color:#fff; }

.btn-outline {
  background: transparent;
  color: var(--brand);
  border-color: var(--brand);
}
.btn-outline:hover { background: var(--brand); color:#fff; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 76px;
}
.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.brand-wordmark {
  height: 36px;
  width: auto;
  display: block;
}

.primary-nav { flex: 1; }
.primary-nav > ul {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0; padding: 0;
  justify-content: flex-end;
}
.primary-nav a {
  color: var(--ink);
  font-weight: 500;
  font-size: 15px;
  padding: 8px 0;
  position: relative;
}
.primary-nav a:hover { color: var(--brand); }

.primary-nav .has-sub { position: relative; }
.primary-nav .submenu {
  position: absolute;
  top: 100%;
  left: -14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 8px;
  min-width: 240px;
  list-style: none;
  margin: 0;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity .15s ease, transform .15s ease, visibility 0s linear .15s;
}
.primary-nav .has-sub:hover > .submenu,
.primary-nav .has-sub:focus-within > .submenu {
  opacity: 1; visibility: visible; transform: translateY(0);
  transition-delay: 0s;
}
.primary-nav .submenu a {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
}
.primary-nav .submenu a:hover { background: var(--bg-tint); }
.primary-nav .submenu .submenu {
  top: -8px;
  left: calc(100% + 6px);
}

.header-cta { padding: 10px 18px; font-size: 14px; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 10px;
  align-items: center; justify-content: center;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 18px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

.mobile-nav {
  border-top: 1px solid var(--line);
  background: #fff;
}
.mobile-nav ul {
  list-style: none;
  margin: 0; padding: 16px var(--gutter);
  display: flex; flex-direction: column; gap: 4px;
}
.mobile-nav a {
  display: block;
  padding: 12px 4px;
  font-size: 16px;
  color: var(--ink);
  font-weight: 500;
  border-bottom: 1px solid var(--line-soft);
}
.mobile-nav a.btn { border-bottom: none; margin-top: 12px; color:#fff; }

/* ---------- Section primitives ---------- */
.section-eyebrow,
.eyebrow {
  display: inline-block;
  text-transform: none;
  color: var(--brand);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .02em;
  margin: 0 0 16px;
  padding: 6px 14px;
  background: var(--brand-tint);
  border: 1px solid var(--brand-soft);
  border-radius: 999px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 700;
  margin: 0 0 36px;
  letter-spacing: -.02em;
}
.section-title.centered { text-align: center; margin-bottom: 48px; }

/* ---------- Hero ---------- */
.hero {
  padding: clamp(48px, 8vw, 96px) 0 clamp(40px, 6vw, 80px);
  background:
    radial-gradient(1200px 500px at 80% -10%, var(--brand-tint), transparent 60%),
    radial-gradient(900px 400px at -10% 30%, #f5f1e8, transparent 60%),
    var(--bg);
}
.hero-inner {
  display: block;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.hero-copy .lede {
  font-size: clamp(18px, 1.6vw, 22px);
  color: var(--ink-soft);
  max-width: 36ch;
  margin: 0 auto 32px;
}
.hero-copy h1 {
  font-size: clamp(38px, 5.4vw, 68px);
  line-height: 1.04;
  letter-spacing: -.025em;
  margin: 0 0 20px;
}
.hero-copy .lede {
  font-size: clamp(18px, 1.6vw, 22px);
  color: var(--ink-soft);
  max-width: 36ch;
}

/* ---------- Why (combined section, grey bg) ---------- */
.why {
  padding: clamp(56px, 8vw, 96px) 0;
  background: var(--bg-tint);
}
.why-title {
  margin-bottom: 48px;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  padding: 32px 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
}
.why-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--brand-soft);
  transform: translateY(-2px);
}
.why-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--brand-tint);
  color: var(--brand);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.why-icon svg { width: 24px; height: 24px; }
.why-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px;
}
.why-card p {
  color: var(--ink-soft);
  margin: 0;
  font-size: 15.5px;
}

.why-subsection {
  margin-top: clamp(40px, 5vw, 64px);
  padding-top: clamp(32px, 4vw, 48px);
  border-top: 1px solid var(--line);
}
.why-subtitle {
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 700;
  text-align: center;
  margin: 0 0 28px;
  color: var(--slate);
  letter-spacing: -.01em;
}
.value-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.value-card {
  padding: 28px 26px;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
}
.value-card h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--slate);
}
.value-card p { color: var(--ink-soft); font-size: 15px; margin: 0; line-height: 1.55; }

/* ---------- Pricing ---------- */
.pricing { padding: clamp(56px, 8vw, 96px) 0; background: var(--bg); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.plan {
  position: relative;
  padding: 36px 30px 32px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column;
  transition: box-shadow .2s ease, transform .2s ease;
}
.plan:hover { box-shadow: var(--shadow); transform: translateY(-2px); }

.plan-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin: 0 0 18px;
  color: var(--muted);
}
.plan-price {
  margin: 0;
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.plan-price .amount {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1;
  color: var(--ink);
}
.plan-price .currency {
  font-size: 22px;
  color: var(--muted);
  font-weight: 600;
}
.plan-price .amount-text {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -.02em;
}
.plan-period {
  color: var(--muted);
  font-size: 14px;
  margin: 8px 0 24px;
  min-height: 1.4em;
}
.plan-features {
  list-style: none;
  padding: 0; margin: 0 0 28px;
  border-top: 1px solid var(--line-soft);
  flex: 1;
}
.plan-features li {
  padding: 12px 0 12px 28px;
  border-bottom: 1px solid var(--line-soft);
  color: var(--ink-soft);
  font-size: 15px;
  position: relative;
}
.plan-features li::before {
  content: "";
  position: absolute;
  left: 4px; top: 16px;
  width: 14px; height: 14px;
  background:
    linear-gradient(45deg, transparent 45%, var(--brand) 45% 60%, transparent 60%) center/100% 2px no-repeat,
    linear-gradient(135deg, transparent 45%, var(--brand) 45% 60%, transparent 60%) center/2px 100% no-repeat;
  /* fallback simple check */
}
.plan-features li::before {
  background: none;
  content: "✓";
  color: var(--brand);
  font-weight: 700;
  font-size: 14px;
}

.plan-featured {
  border-color: var(--brand);
  box-shadow: 0 30px 60px -30px rgba(0,133,199,.35), 0 8px 24px -12px rgba(45,63,80,.18);
  transform: translateY(-6px);
}
.plan-featured .badge {
  position: absolute;
  top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--brand);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
}
.plan-featured .plan-name { color: var(--brand); }

/* ---------- Testimonials ---------- */
.testimonials {
  padding: clamp(56px, 8vw, 96px) 0;
  background: var(--bg-soft);
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial {
  margin: 0;
  padding: 32px 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column;
}
.testimonial blockquote {
  margin: 0 0 24px;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  font-weight: 500;
  flex: 1;
  position: relative;
  padding-top: 28px;
}
.testimonial blockquote::before {
  content: """;
  position: absolute;
  top: -10px; left: -6px;
  font-family: Georgia, serif;
  font-size: 72px;
  color: var(--brand);
  opacity: .25;
  line-height: 1;
}
.testimonial figcaption {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0;
  border-top: 1px solid var(--line-soft);
  padding-top: 18px;
}
.testimonial figcaption img {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.testimonial figcaption strong {
  display: block;
  font-size: 15px;
  color: var(--ink);
}
.testimonial figcaption span {
  display: block;
  font-size: 13.5px;
  color: var(--muted);
}

/* ---------- About ---------- */
.about {
  padding: clamp(64px, 9vw, 112px) 0;
  background: var(--bg);
}
.about-inner { max-width: 820px; margin: 0 auto; text-align: center; }
.about .section-title { text-align: center; }
.about-copy p {
  font-size: 18px;
  color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: 1em;
}
.about-copy strong { color: var(--ink); font-weight: 600; }

/* ---------- People (team & advisory) ---------- */
.team { padding: clamp(56px, 7vw, 88px) 0; background: var(--bg-tint); }
.advisory { padding: clamp(48px, 6vw, 80px) 0 clamp(56px, 8vw, 96px); background: var(--bg); }

.people-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 24px;
  justify-items: center;
}
@media (max-width: 700px) {
  .people-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 460px) {
  .people-grid { grid-template-columns: 1fr; }
}
.person {
  margin: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  max-width: 220px;
}
.person img {
  width: 130px; height: 130px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
  box-shadow: var(--shadow-sm);
  background: var(--bg-tint);
  transition: transform .25s ease, box-shadow .25s ease;
}
.person:hover img {
  transform: scale(1.04);
  box-shadow: var(--shadow);
}
.person figcaption {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.person figcaption a { color: var(--ink); }
.person figcaption a:hover { color: var(--brand); }
.person figcaption strong {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
}
.person figcaption span {
  font-size: 13.5px;
  color: var(--muted);
}

/* ---------- Contact ---------- */
.contact {
  padding: clamp(56px, 8vw, 96px) 0;
  background: var(--bg-tint);
}
.contact-inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 360px));
  justify-content: center;
  gap: 24px;
}
.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
}
.contact-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 18px;
}
.contact-card h3 a { color: var(--ink); }
.contact-card p { margin: 0 0 12px; font-size: 15.5px; }
.contact-card .muted { color: var(--muted); font-size: 14px; }
.contact-avatar {
  width: 88px; height: 88px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  border: 3px solid #fff;
  box-shadow: var(--shadow-sm);
}

/* ---------- Footer ---------- */
.site-footer {
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 48px 0 32px;
}
.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px 32px;
  align-items: center;
}
.footer-mark img { width: 44px; height: 44px; }

.footer-meta {
  list-style: none;
  margin: 0; padding: 0;
  display: flex; gap: 24px;
  font-size: 14px;
  color: var(--muted);
  justify-content: center;
}
.footer-meta li::before {
  content: "·";
  margin-right: 22px;
  color: var(--line);
}
.footer-meta li:first-child::before { content: ""; margin: 0; }

.footer-social {
  list-style: none;
  margin: 0; padding: 0;
  display: flex; gap: 8px;
}
.footer-social a {
  width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--ink-soft);
}
.footer-social a:hover { color: var(--brand); border-color: var(--brand-soft); background: var(--brand-tint); }
.footer-social svg { width: 16px; height: 16px; }

.footer-copy,
.footer-privacy {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 13.5px;
  color: var(--muted);
  margin: 0;
}
.footer-copy { margin-top: 16px; padding-top: 20px; border-top: 1px solid var(--line-soft); }
.footer-privacy { margin-top: 4px; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .primary-nav, .header-cta { display: none; }
  .nav-toggle { display: inline-flex; margin-left: auto; }

  .why-grid,
  .pricing-grid,
  .testimonial-grid,
  .contact-inner { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: 1fr; }

  .plan-featured { transform: none; }

  .footer-inner { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .footer-meta { flex-wrap: wrap; justify-content: center; }
}

@media (min-width: 700px) and (max-width: 980px) {
  .why-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .testimonial-grid { grid-template-columns: 1fr 1fr; }
  .contact-inner { grid-template-columns: 1fr 1fr; }
  .value-grid { grid-template-columns: 1fr 1fr; }
}
