/* ══════════════════════════════════════════════════════════════════ */
/* NAV                                                               */
/* ══════════════════════════════════════════════════════════════════ */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(245, 240, 230, 0.7);
  backdrop-filter: saturate(1.6) blur(20px);
  -webkit-backdrop-filter: saturate(1.6) blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s, background 0.4s;
}
#nav.scrolled {
  border-bottom-color: var(--rule-soft);
  background: rgba(245, 240, 230, 0.94);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 48px;
}
.nav-brand { display: flex; align-items: center; gap: 10px; }
.nav-links { display: flex; gap: 36px; font-size: 13.5px; color: var(--moss); }
.nav-links a {
  position: relative; padding: 4px 0;
  transition: color var(--transition), opacity var(--transition);
  opacity: 0.7;
}
.nav-links a:hover, .nav-links a.active { opacity: 1; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -1px;
  width: 0; height: 1px; background: var(--moss);
  transition: width var(--transition);
}
.nav-links a.active::after, .nav-links a:hover::after { width: 100%; }
.nav-right { display: flex; align-items: center; gap: 20px; }
.lang-switch { display: flex; gap: 2px; font-size: 12px; }
.lang-switch button {
  padding: 4px 7px; border-radius: 4px; color: var(--muted);
  transition: color 0.3s, background 0.3s;
}
.lang-switch button.active { color: var(--moss); font-weight: 600; }
.lang-switch button:hover { color: var(--moss); }
.nav-cta { padding: 10px 20px; font-size: 13px; }

@media (max-width: 1100px) { .nav-links { display: none; } }
@media (max-width: 700px) {
  .nav-inner { padding: 16px 20px; }
  .lang-switch { display: none; }
}

/* ══════════════════════════════════════════════════════════════════ */
/* HERO                                                              */
/* ══════════════════════════════════════════════════════════════════ */
#hero {
  min-height: 70vh;
  display: flex; flex-direction: column; justify-content: center;
  padding-top: 120px; padding-bottom: 80px;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 30%, rgba(79,106,74,0.13) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(42,61,46,0.07) 0%, transparent 60%),
    var(--cream);
}
.hero-grain {
  position: absolute; inset: 0; z-index: 1; opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}
.hero-content { position: relative; z-index: 2; }
.hero-top {
  display: flex; align-items: flex-start;
  justify-content: space-between; gap: 40px;
  margin-bottom: 80px;
}
.hero-headline {
  font-size: clamp(56px, 8vw, 120px);
  font-weight: 500; line-height: 0.95;
  letter-spacing: -0.04em; color: var(--moss);
  max-width: 900px;
}
.hero-aside {
  max-width: 340px; padding-top: 16px; flex-shrink: 0;
}
.hero-aside p {
  font-size: 15px; color: var(--muted); line-height: 1.7; margin-bottom: 28px;
}
.hero-bottom {
  display: flex; align-items: flex-end;
  justify-content: space-between; gap: 40px;
  padding-top: 48px; border-top: 1px solid var(--rule);
}
.hero-badges { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-scroll {
  display: flex; align-items: center; gap: 10px;
  font-size: 12px; color: var(--muted); letter-spacing: 0.05em; flex-shrink: 0;
}
.hero-scroll-line {
  width: 1px; height: 48px; background: var(--rule);
  position: relative; overflow: hidden;
}
.hero-scroll-line::after {
  content: ""; position: absolute; top: -50%; left: 0;
  width: 100%; height: 50%; background: var(--fern);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine { 0% { top: -50%; } 100% { top: 150%; } }
@media (max-width: 900px) {
  .hero-top { flex-direction: column; margin-bottom: 48px; }
  .hero-aside { max-width: 100%; }
  .hero-bottom { flex-direction: column; align-items: flex-start; }
}

/* ══════════════════════════════════════════════════════════════════ */
/* LEISTUNGEN                                                        */
/* ══════════════════════════════════════════════════════════════════ */
#leistungen { padding: 140px 0; }
.leistungen-header {
  display: flex; align-items: flex-end;
  justify-content: space-between; gap: 40px;
  margin-bottom: 80px;
}
.leistungen-header h2 { font-size: clamp(36px, 5vw, 64px); max-width: 560px; }
.leistungen-header p  { max-width: 320px; font-size: 15px; color: var(--muted); line-height: 1.7; }
.leistungen-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.leistung-card {
  background: var(--cream-2); padding: 48px 40px;
  position: relative; overflow: hidden;
  transition: background var(--transition);
}
.leistung-card:hover { background: var(--sand); }
.leistung-card:first-child { border-radius: var(--radius) 0 0 var(--radius); }
.leistung-card:last-child  { border-radius: 0 var(--radius) var(--radius) 0; }
.leistung-num { font-family: var(--mono); font-size: 11px; color: var(--muted); letter-spacing: 0.12em; margin-bottom: 40px; }
.leistung-icon {
  width: 52px; height: 52px; margin-bottom: 28px;
  background: var(--fern-pale); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.leistung-icon svg { width: 26px; height: 26px; stroke: var(--fern); fill: none; stroke-width: 1.5; }
.leistung-card h3 { font-size: 26px; margin-bottom: 16px; }
.leistung-card p  { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 32px; }
.leistung-link { margin-top: auto; }
@media (max-width: 900px) {
  .leistungen-header { flex-direction: column; align-items: flex-start; }
  .leistungen-grid   { grid-template-columns: 1fr; }
  .leistung-card:first-child { border-radius: var(--radius) var(--radius) 0 0; }
  .leistung-card:last-child  { border-radius: 0 0 var(--radius) var(--radius); }
}

/* ══════════════════════════════════════════════════════════════════ */
/* PROZESS                                                           */
/* ══════════════════════════════════════════════════════════════════ */
#prozess {
  padding: 140px 0;
  background: var(--moss); position: relative; overflow: hidden;
}
.prozess-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 80% 20%, rgba(79,106,74,0.3) 0%, transparent 70%);
}
.prozess-inner  { position: relative; z-index: 1; }
.prozess-header { margin-bottom: 80px; }
.prozess-header .eyebrow { color: rgba(245,240,230,0.45); }
.prozess-header .eyebrow::before { background: rgba(245,240,230,0.25); }
.prozess-header h2 { font-size: clamp(36px, 5vw, 64px); color: var(--cream); margin-top: 16px; }
.prozess-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
.prozess-step {
  padding: 40px 32px;
  border-left: 1px solid rgba(245,240,230,0.1);
}
.prozess-step:first-child { border-left: none; }
.step-num {
  font-family: var(--mono); font-size: 11px;
  color: rgba(245,240,230,0.3); letter-spacing: 0.12em; margin-bottom: 32px;
}
.step-icon {
  width: 44px; height: 44px; margin-bottom: 20px;
  border: 1px solid rgba(245,240,230,0.15); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.step-icon svg { width: 20px; height: 20px; stroke: rgba(245,240,230,0.6); fill: none; stroke-width: 1.5; }
.prozess-step h3 { font-size: 20px; color: var(--cream); margin-bottom: 12px; }
.prozess-step p  { font-size: 14px; color: rgba(245,240,230,0.5); line-height: 1.7; }
.prozess-bottom {
  margin-top: 80px; padding-top: 48px;
  border-top: 1px solid rgba(245,240,230,0.1);
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
}
.prozess-bottom p { font-size: 15px; color: rgba(245,240,230,0.55); max-width: 480px; line-height: 1.65; }
@media (max-width: 900px) {
  .prozess-steps { grid-template-columns: 1fr 1fr; }
  .prozess-step  { border-left: none; border-top: 1px solid rgba(245,240,230,0.1); }
  .prozess-bottom { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 540px) { .prozess-steps { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════════════════════════════════ */
/* PROJEKTE                                                          */
/* ══════════════════════════════════════════════════════════════════ */
#projekte { padding: 140px 0; }
.projekte-header { margin-bottom: 64px; }
.projekte-header h2 { font-size: clamp(36px, 5vw, 64px); margin-top: 16px; }
.projekte-grid  { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.projekt-card {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--rule-soft);
  transition: transform var(--transition), box-shadow var(--transition);
}
.projekt-card:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(42,61,46,0.12); }
.projekt-visual {
  height: 280px; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.pv-landmarkt { background: linear-gradient(135deg, #2a5c1f 0%, #3d7a2a 40%, #5a9e3e 100%); }
.pv-miet      { background: linear-gradient(135deg, #1e3a4a 0%, #2d5568 40%, #3d7080 100%); }
.projekt-badge-big { font-size: 80px; opacity: 0.2; user-select: none; }
.projekt-status {
  position: absolute; top: 20px; left: 20px;
  display: flex; align-items: center; gap: 8px;
  background: rgba(0,0,0,0.25); backdrop-filter: blur(8px);
  padding: 6px 14px; border-radius: 999px;
  font-size: 12px; color: rgba(255,255,255,0.85); font-weight: 500;
}
.projekt-info { padding: 32px; background: var(--cream-2); }
.projekt-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.projekt-tag {
  font-size: 11px; font-weight: 500; letter-spacing: 0.06em;
  padding: 4px 10px; border-radius: 4px; text-transform: uppercase;
  background: rgba(42,61,46,0.07); color: var(--fern);
}
.projekt-info h3 { font-size: 24px; margin-bottom: 12px; }
.projekt-info p  { font-size: 14px; color: var(--muted); line-height: 1.7; }
@media (max-width: 800px) { .projekte-grid { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════════════════════════════════ */
/* STUDIO                                                            */
/* ══════════════════════════════════════════════════════════════════ */
#studio { padding: 140px 0; border-top: 1px solid var(--rule-soft); }
.studio-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.studio-left h2 { font-size: clamp(36px, 5vw, 60px); margin: 16px 0 28px; }
.studio-left p  { font-size: 15px; color: var(--muted); line-height: 1.75; margin-bottom: 16px; }
.studio-facts   { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 48px; }
.studio-fact    { padding: 20px; background: var(--cream-2); border-radius: 10px; }
.studio-fact-label {
  font-size: 11px; font-weight: 500; color: var(--muted);
  letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 6px;
}
.studio-fact-value { font-size: 14px; color: var(--moss); font-weight: 500; }
.studio-card {
  background: var(--moss); border-radius: 20px; overflow: hidden;
  padding: 48px 40px; color: var(--cream); position: relative;
}
.studio-card-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 80% 0%, rgba(79,106,74,0.6) 0%, transparent 70%);
}
.studio-card-inner { position: relative; z-index: 1; }
.studio-avatar {
  width: 72px; height: 72px; border-radius: 50%;
  background: rgba(245,240,230,0.15); margin-bottom: 24px;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; font-family: var(--serif); color: var(--cream);
}
.studio-name { font-size: 22px; color: var(--cream); font-weight: 500; letter-spacing: -0.02em; margin-bottom: 4px; }
.studio-role { font-size: 13px; color: rgba(245,240,230,0.5); margin-bottom: 32px; }
.studio-divider { height: 1px; background: rgba(245,240,230,0.12); margin-bottom: 32px; }
.studio-skills  { display: flex; flex-wrap: wrap; gap: 8px; }
.studio-skill {
  font-family: var(--mono); font-size: 11px;
  padding: 5px 12px; border-radius: 4px;
  background: rgba(245,240,230,0.1); color: rgba(245,240,230,0.7);
}
.studio-deco {
  position: absolute; bottom: -20px; right: -20px;
  width: 160px; height: 160px; border-radius: 50%;
  border: 1px solid rgba(245,240,230,0.07);
}
.studio-deco::before {
  content: ""; position: absolute; inset: 20px;
  border-radius: 50%; border: 1px solid rgba(245,240,230,0.07);
}
@media (max-width: 900px) {
  .studio-grid  { grid-template-columns: 1fr; gap: 60px; }
  .studio-facts { grid-template-columns: 1fr 1fr; }
}

/* ══════════════════════════════════════════════════════════════════ */
/* WARUM                                                             */
/* ══════════════════════════════════════════════════════════════════ */
#warum { padding: 140px 0; background: var(--cream-2); }
.warum-header { margin-bottom: 80px; }
.warum-header h2 { font-size: clamp(36px, 5vw, 64px); margin-top: 16px; max-width: 600px; }
.warum-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
.warum-item {
  background: var(--cream); padding: 40px 32px;
  transition: background var(--transition);
}
.warum-item:hover { background: #fff; }
.warum-item:first-child { border-radius: var(--radius) 0 0 var(--radius); }
.warum-item:last-child  { border-radius: 0 var(--radius) var(--radius) 0; }
.warum-icon {
  width: 44px; height: 44px; margin-bottom: 24px;
  background: var(--fern-pale); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.warum-icon svg { width: 22px; height: 22px; stroke: var(--fern); fill: none; stroke-width: 1.5; }
.warum-item h3 { font-size: 18px; margin-bottom: 12px; }
.warum-item p  { font-size: 14px; color: var(--muted); line-height: 1.7; }
@media (max-width: 900px) { .warum-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) {
  .warum-grid { grid-template-columns: 1fr; }
  .warum-item:first-child { border-radius: var(--radius) var(--radius) 0 0; }
  .warum-item:last-child  { border-radius: 0 0 var(--radius) var(--radius); }
}

/* ══════════════════════════════════════════════════════════════════ */
/* FAQ                                                               */
/* ══════════════════════════════════════════════════════════════════ */
#faq { padding: 140px 0; }
.faq-header { text-align: center; margin-bottom: 64px; }
.faq-header .eyebrow { display: inline-block; }
.faq-header h2 { font-size: clamp(36px, 5vw, 60px); margin-top: 16px; }
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--rule);
  transition: box-shadow .2s, border-color .2s;
}
.faq-item:hover { border-color: var(--moss); }
.faq-item[open] { box-shadow: 0 4px 24px rgba(42,61,46,0.08); }
.faq-item summary {
  padding: 22px 28px;
  cursor: pointer;
  list-style: none;
  font-weight: 500;
  font-size: 17px;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 28px;
  color: var(--moss);
  font-weight: 300;
  line-height: 1;
  transition: transform .25s ease;
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-answer { padding: 0 28px 24px; }
.faq-answer p { color: var(--muted); line-height: 1.75; font-size: 15px; margin: 0; }
@media (max-width: 700px) {
  #faq { padding: 100px 0; }
  .faq-item summary { padding: 18px 22px; font-size: 16px; }
  .faq-answer { padding: 0 22px 20px; }
}

/* ══════════════════════════════════════════════════════════════════ */
/* KONTAKT                                                           */
/* ══════════════════════════════════════════════════════════════════ */
#kontakt { padding: 140px 0; }
.kontakt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.kontakt-left h2 { font-size: clamp(36px, 5vw, 60px); margin: 16px 0 24px; }
.kontakt-left p  { font-size: 15px; color: var(--muted); line-height: 1.75; margin-bottom: 48px; }
.kontakt-info-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
.kontakt-info-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--fern-pale); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.kontakt-info-icon svg { width: 18px; height: 18px; stroke: var(--fern); fill: none; stroke-width: 1.5; }
.kontakt-info-label { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; }
.kontakt-info-value { font-size: 14px; color: var(--moss); font-weight: 500; }
.kontakt-info-value a { transition: opacity var(--transition); }
.kontakt-info-value a:hover { opacity: 0.7; }
.kontakt-form { background: var(--cream-2); border-radius: 20px; padding: 48px 40px; }
.form-row { margin-bottom: 20px; }
.form-label {
  display: block; font-size: 11px; font-weight: 500;
  color: var(--muted); letter-spacing: 0.06em;
  text-transform: uppercase; margin-bottom: 8px;
}
.form-input {
  width: 100%; padding: 14px 18px;
  border: 1px solid var(--rule);
  border-radius: 10px; background: var(--cream);
  font-size: 14px; color: var(--ink);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-input:focus {
  border-color: var(--fern);
  box-shadow: 0 0 0 3px rgba(79,106,74,0.12);
}
textarea.form-input { resize: vertical; min-height: 130px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit {
  width: 100%; padding: 16px; border-radius: 999px;
  background: var(--moss); color: var(--cream);
  font-size: 15px; font-weight: 500; letter-spacing: -0.01em;
  border: none; cursor: pointer; margin-top: 8px;
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
}
.form-submit:hover {
  background: var(--moss-deep);
  box-shadow: 0 10px 32px rgba(42,61,46,0.25);
  transform: translateY(-1px);
}
.form-submit:disabled { opacity: 0.6; cursor: wait; transform: none; box-shadow: none; }
.form-status {
  margin-top: 16px; min-height: 22px;
  font-size: 14px; line-height: 1.5;
}
.form-status.is-success { color: var(--moss); }
.form-status.is-error   { color: #b54141; }
@media (max-width: 900px) {
  .kontakt-grid { grid-template-columns: 1fr; }
  .form-grid    { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════════════ */
/* FOOTER                                                            */
/* ══════════════════════════════════════════════════════════════════ */
#footer { padding: 64px 0 40px; border-top: 1px solid var(--rule-soft); }
.footer-inner {
  display: flex; align-items: flex-start;
  justify-content: space-between; gap: 48px;
}
.footer-brand { max-width: 260px; }
.footer-brand-head { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-brand p { font-size: 13px; color: var(--muted); line-height: 1.7; }
.footer-links-grid { display: flex; gap: 64px; }
.footer-col h4 {
  font-size: 11px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--moss); margin-bottom: 20px;
}
.footer-col a {
  display: block; font-size: 13.5px; color: var(--muted);
  margin-bottom: 12px; transition: color var(--transition);
}
.footer-col a:hover { color: var(--moss); }
.footer-bottom {
  margin-top: 56px; padding-top: 32px;
  border-top: 1px solid var(--rule-soft);
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12px; color: var(--muted);
}
.footer-bottom a { color: var(--muted); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--moss); }
.footer-legal { display: flex; gap: 24px; }
@media (max-width: 900px) {
  .footer-inner { flex-direction: column; }
  .footer-links-grid { flex-wrap: wrap; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* ══════════════════════════════════════════════════════════════════ */
/* SUBPAGE HERO (for landing pages)                                  */
/* ══════════════════════════════════════════════════════════════════ */
.subhero {
  padding: 160px 0 100px;
  position: relative; overflow: hidden;
  border-bottom: 1px solid var(--rule-soft);
}
.subhero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 60% 40%, rgba(79,106,74,0.1) 0%, transparent 70%);
}
.subhero-content { position: relative; z-index: 1; }
.subhero-breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--muted); margin-bottom: 32px;
}
.subhero-breadcrumb a { color: var(--muted); transition: color var(--transition); }
.subhero-breadcrumb a:hover { color: var(--moss); }
.subhero-breadcrumb span { color: var(--rule); }
.subhero h1 { font-size: clamp(44px, 7vw, 96px); margin-bottom: 24px; }
.subhero-lead {
  font-size: clamp(16px, 2vw, 20px); color: var(--muted);
  line-height: 1.65; max-width: 600px; margin-bottom: 40px;
}
.subhero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ══════════════════════════════════════════════════════════════════ */
/* CONTENT BLOCKS (for subpages)                                     */
/* ══════════════════════════════════════════════════════════════════ */
.content-section { padding: 100px 0; }
.content-section + .content-section { padding-top: 0; }
.content-section.bg-alt { background: var(--cream-2); padding: 100px 0; }
.content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.content-grid.center { align-items: center; }
/* Align right column's first heading with left column's H2 (left has eyebrow above H2) */
.content-grid > .content-block + .content-block:has(> h3:first-child) { padding-top: 38px; }
.content-block h2 { font-size: clamp(28px, 4vw, 48px); margin-bottom: 20px; }
.content-block h3 { font-size: 20px; margin-bottom: 12px; }
.content-block p  { font-size: 15px; color: var(--muted); line-height: 1.75; margin-bottom: 16px; }
.content-block p:last-child { margin-bottom: 0; }
.feature-list { list-style: none; margin-top: 24px; }
.feature-list li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px 0; border-bottom: 1px solid var(--rule-soft);
  font-size: 14px; color: var(--muted); line-height: 1.6;
}
.feature-list li::before {
  content: "✓"; color: var(--fern); font-weight: 600;
  font-size: 13px; flex-shrink: 0; margin-top: 2px;
}
.use-cases-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 16px; }
.use-case {
  padding: 24px; background: var(--cream-2); border-radius: 10px;
  border: 1px solid var(--rule-soft);
}
.use-case h4 { font-size: 15px; margin-bottom: 8px; }
.use-case p  { font-size: 13px; color: var(--muted); line-height: 1.6; }
.cta-band {
  background: var(--moss); border-radius: 20px;
  padding: 64px 56px; position: relative; overflow: hidden;
  margin: 80px 0;
}
.cta-band-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 90% 50%, rgba(79,106,74,0.4) 0%, transparent 70%);
}
.cta-band-inner {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
}
.cta-band h2 { font-size: clamp(28px, 4vw, 44px); color: var(--cream); }
.cta-band p  { font-size: 15px; color: rgba(245,240,230,0.55); margin-top: 12px; max-width: 420px; }
@media (max-width: 900px) {
  .content-grid { grid-template-columns: 1fr; gap: 48px; }
  .cta-band { padding: 48px 32px; }
  .cta-band-inner { flex-direction: column; align-items: flex-start; }
  .use-cases-grid { grid-template-columns: 1fr; }
}
