/* ===== Postree landing page ===== */

:root {
  --accent: #3d7a34;
  --accent-shadow: #285022;
  --ink: #17281c;
  --text-body: #4a5750;
  --text-muted: #6b756e;
  --border: #ece4d3;
  --cream: #fdfaf3;
}

* { box-sizing: border-box; min-width: 0; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  background: #fff;
}

img { max-width: 100%; }

a {
  color: var(--accent);
  text-decoration: none;
}
a:hover { color: #1c3324; }

button { font-family: inherit; }

.ff-h { font-family: 'Plus Jakarta Sans', sans-serif; }

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: none;
  border-radius: 12px;
  padding: 16px 28px 16px 36px;
  font-size: 16px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  white-space: nowrap;
  cursor: pointer;
  background: #35701f;
  color: #fff;
  overflow: hidden;
  box-shadow: 0 3px 0 #234c14, 0 14px 26px -14px rgba(23, 53, 12, 0.7);
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}
.btn:hover { filter: brightness(1.06); }
.btn:active {
  transform: translateY(2px);
  box-shadow: 0 1px 0 #234c14, 0 8px 18px -12px rgba(23, 53, 12, 0.7);
}

.btn-watermark {
  position: absolute;
  right: -16px;
  bottom: -14px;
  opacity: 0.5;
  pointer-events: none;
}

/* Tree-bars hover effect, copied from frontend/src/components/layout/Sidebar.tsx (SunShadowPixels) */
.btn-tree {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  pointer-events: none;
}
.btn-tree-bar {
  display: block;
  height: 4px;
  margin-bottom: 1px;
  border-radius: 1px;
  transform-origin: left center;
  transform: scaleX(0);
  opacity: 0;
}
.btn-tree-bar:last-child { margin-bottom: 0; }

.btn-tree-bar:nth-child(1) { width: 4px; background: #8cc88f; }
.btn-tree-bar:nth-child(2) { width: 6px; background: #6ab170; }
.btn-tree-bar:nth-child(3) { width: 8px; background: #4b9a52; }
.btn-tree-bar:nth-child(4) { width: 8px; background: #3d8a4a; }
.btn-tree-bar:nth-child(5) { width: 7px; background: #1f5c33; }
.btn-tree-bar:nth-child(6) { width: 5px; background: #225a27; }
.btn-tree-bar:nth-child(7) { width: 2px; background: #173f1b; }

.btn:hover .btn-tree-bar { animation: btnTreeGrow 320ms cubic-bezier(0.22, 0.9, 0.3, 1) both; }
.btn:hover .btn-tree-bar:nth-child(1) { animation-delay: 240ms; }
.btn:hover .btn-tree-bar:nth-child(2) { animation-delay: 200ms; }
.btn:hover .btn-tree-bar:nth-child(3) { animation-delay: 160ms; }
.btn:hover .btn-tree-bar:nth-child(4) { animation-delay: 120ms; }
.btn:hover .btn-tree-bar:nth-child(5) { animation-delay: 80ms; }
.btn:hover .btn-tree-bar:nth-child(6) { animation-delay: 40ms; }
.btn:hover .btn-tree-bar:nth-child(7) { animation-delay: 0ms; }

@keyframes btnTreeGrow {
  0% { transform: scaleX(0); opacity: 0; }
  60% { opacity: 1; }
  100% { transform: scaleX(1); opacity: 1; }
}

.btn-label,
.btn-arrow { position: relative; }
.btn-arrow { flex: none; }

.btn-pill {
  border-radius: 999px;
  padding: 12px 22px;
  background: var(--accent);
  box-shadow: 0 3px 0 var(--accent-shadow), 0 14px 26px -14px rgba(23, 53, 12, 0.7);
}
.btn-pill:active { transform: none; }

/* ===== Nav ===== */
.site-header {
  position: relative;
  z-index: 10;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 64px;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
}
.brand-icon { height: 53px; width: auto; display: block; flex-shrink: 0; }
.brand-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.brand-name {
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.025em;
  color: #1a3a28;
}
.brand-tagline {
  font-size: 8px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9ca3af;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-links a {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}
.nav-links a:hover { color: var(--accent); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-actions a {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: 40px 0 90px;
  background: url("../assets/bg-hero.png") center / cover no-repeat;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 40px;
  align-items: center;
  padding: 40px 64px 0;
  max-width: 1434px;
  margin: 0 auto;
}
.hero-grid > * { min-width: 0; }

.hero-copy h1 {
  font-family: 'Inter Tight', sans-serif;
  font-size: 56px;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 24px;
}
.hero-copy h1 span { color: var(--accent); }

.hero-copy p {
  font-size: 19px;
  line-height: 1.6;
  color: #000;
  max-width: 440px;
  margin: 0 0 32px;
  font-weight: 700;
}

.hero-badges {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.hero-badges > div {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 700;
  color: #3a463f;
  letter-spacing: 0.02em;
}

/* ===== Coverflow carousel ===== */
.coverflow {
  position: relative;
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: #fff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.16);
  cursor: pointer;
  font-size: 17px;
  z-index: 30;
  color: var(--ink);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.carousel-arrow:hover { transform: translateY(-50%) scale(1.06); }
.carousel-arrow:disabled { opacity: 0.3; cursor: default; }
.carousel-arrow:disabled:hover { transform: translateY(-50%); }
.carousel-arrow.prev { left: -4px; }
.carousel-arrow.next { right: -4px; }

.coverflow-stage {
  position: relative;
  overflow: hidden;
  padding: 34px 0 6px;
  cursor: grab;
  touch-action: pan-y;
  -webkit-user-select: none;
  user-select: none;
}
.coverflow-stage.dragging { cursor: grabbing; }
.coverflow-stage:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; border-radius: 12px; }

.coverflow-track {
  position: relative;
  perspective: 1400px;
  transition: height 0.4s ease;
}

.cf-card {
  position: absolute;
  top: 0;
  left: 50%;
  transition: transform 0.55s cubic-bezier(0.22, 0.85, 0.25, 1), opacity 0.55s ease;
  will-change: transform, opacity;
}
.cf-card.no-transition { transition: none; }
.cf-card img { -webkit-user-drag: none; pointer-events: none; }

.slide-card {
  width: 100%;
  max-width: 384px;
  background: #fff;
  border: 2px solid var(--accent);
  border-radius: 26px;
  padding: 26px 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-sizing: border-box;
}

.slide-card h2 {
  margin: 0;
  text-align: center;
  font-size: 25px;
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.slide-card h2 span { color: var(--accent); }

.slide-card > p {
  margin: 4px auto 0;
  max-width: 288px;
  text-align: center;
  font-size: 10px;
  line-height: 1.45;
  color: #3a463f;
}

.slide-single-img {
  width: 100%;
  max-height: 156px;
  object-fit: cover;
  border-radius: 13px;
  display: block;
}

.slide-pair-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.slide-pair-imgs img {
  width: 100%;
  aspect-ratio: 1.25;
  object-fit: cover;
  border-radius: 10px;
}

.slide-panel {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 10px;
  align-items: center;
}
.slide-panel-mini {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.mini-item {
  border: 1px solid #eceeef;
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(20, 35, 25, 0.06);
  padding: 8px;
  display: grid;
  grid-template-columns: 19px 1fr;
  gap: 6px;
  align-items: start;
}
.mini-item .icon { width: 19px; height: 19px; color: var(--accent); }
.mini-item .title { font-weight: 700; font-size: 8px; margin-bottom: 2px; }
.mini-item .text { color: #6b756e; font-size: 7px; line-height: 1.35; }
.slide-panel img {
  width: 100%;
  display: block;
  border-radius: 10px;
  box-shadow: 0 10px 24px rgba(20, 35, 25, 0.08);
}

.slide-benefits {
  margin-top: 4px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.slide-benefits > div {
  text-align: center;
  padding: 21px 6px 0;
  border-left: 1px solid #e7e9ec;
}
.slide-benefits > div:first-child { border-left: none; }
.slide-benefits .icon {
  width: 24px;
  height: 24px;
  margin: 0 auto 5px;
  color: var(--accent);
}
.slide-benefits .title { font-weight: 700; font-size: 8px; margin-bottom: 2px; }
.slide-benefits .text { color: #6b756e; font-size: 6.5px; line-height: 1.35; }

/* pill tabs */
.pill-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 56px 40px 0;
}
.pill-tab {
  cursor: pointer;
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 11px 20px;
  font-size: 14px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
}
.pill-tab.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow: 0 3px 0 var(--accent-shadow), 0 14px 26px -14px rgba(23, 53, 12, 0.7);
}

/* ===== Problem section ===== */
.problem-section {
  position: relative;
  padding: 110px 64px;
  overflow: hidden;
}
.problem-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: center;
  max-width: 1320px;
  margin: 0 auto;
}
.problem-copy h2 {
  font-size: 42px;
  line-height: 1.2;
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 24px;
}
.problem-copy p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-body);
  max-width: 500px;
  margin: 0;
  font-weight: 700;
}

.constellation {
  position: relative;
  min-height: 460px;
}
.chip {
  position: absolute;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: 0 10px 20px -10px rgba(23, 40, 28, 0.15);
  display: flex;
  align-items: center;
  gap: 10px;
}
.chip .time { font-size: 13px; font-weight: 700; color: var(--ink); }
.chip .label { font-size: 11px; color: #7a8079; }

.chip-1 { top: 0; left: 60px; transform: rotate(-3deg); }
.chip-2 { top: 10px; left: 290px; transform: rotate(2deg); }
.chip-3 { top: 40px; left: 520px; transform: rotate(-2deg); }
.chip-6 { top: 200px; left: 600px; transform: rotate(3deg); }

.center-card {
  position: absolute;
  top: 130px;
  left: 210px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 26px 46px;
  width: 250px;
  box-shadow: 0 20px 36px -16px rgba(23, 40, 28, 0.2);
  text-align: center;
}
.center-card .headline {
  font-size: 32px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
}

.badge {
  position: absolute;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  box-shadow: 0 8px 16px -8px rgba(23, 40, 28, 0.3);
}
.badge-logo {
  background: #fff;
  padding: 11px;
}
.badge-logo img { width: 100%; height: 100%; object-fit: contain; display: block; }

.badge-txt { top: 150px; left: 75px; }
.badge-fb { top: 330px; left: 90px; width: 56px; height: 56px; }
.badge-ig { top: 122px; left: 491px; width: 56px; height: 56px; border-radius: 16px; }
.badge-li { top: 355px; left: 610px; width: 60px; height: 60px; }

.plan-card {
  position: absolute;
  top: 250px;
  left: 430px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 18px;
  width: 170px;
  box-shadow: 0 12px 22px -12px rgba(23, 40, 28, 0.18);
  transform: rotate(-1.5deg);
}
.plan-card .plan-title { font-size: 12px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.plan-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 10.5px;
  color: var(--text-body);
}
.plan-card li { display: flex; align-items: center; gap: 5px; }
.plan-card li::before { content: "✓"; color: var(--accent); }

/* ===== Process section ===== */
.process-section {
  position: relative;
  padding: 110px 64px 90px;
}
.process-header {
  max-width: 900px;
  margin: 0 auto 48px;
  text-align: center;
}
.process-header h2 {
  font-size: 34px;
  line-height: 1.25;
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 18px;
}
.process-header h2 span { color: var(--accent); }
.process-header p {
  font-size: 18px;
  color: var(--text-body);
  margin: 0;
  font-weight: 700;
}

.steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  align-items: stretch;
  max-width: 1320px;
  margin: 0 auto;
}
.step-wrap { display: flex; align-items: center; }
.step-card {
  background: #fff;
  border: 3px solid var(--accent);
  border-radius: 28px;
  padding: 26px 18px 22px;
  text-align: center;
  flex: 1;
  min-height: 300px;
  box-shadow: 0 14px 34px rgba(21, 75, 37, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.step-card img { width: auto; height: 96px; max-width: 92%; object-fit: contain; margin-bottom: 10px; }
.step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 10px;
  flex-shrink: 0;
}
.step-card h3 {
  font-size: 16px;
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}
.step-card p { font-size: 11.5px; line-height: 1.5; color: var(--text-muted); margin: 0; }

.step-arrow { flex-shrink: 0; margin: 0 2px; color: var(--accent); }

.ai-notice {
  margin-top: 40px;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px 32px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.ai-notice .badge-shield { text-align: center; flex-shrink: 0; }
.ai-notice .badge-shield small {
  display: block;
  font-size: 9px;
  color: #b4903f;
  font-weight: 700;
  margin-top: 4px;
  white-space: nowrap;
}
.ai-notice p { font-size: 13.5px; line-height: 1.6; color: var(--text-body); margin: 0; }

/* ===== Benefits section ===== */
.benefits-section {
  position: relative;
  padding: 100px 64px;
}
.benefits-header {
  max-width: 1320px;
  margin: 0 auto;
  text-align: center;
}
.benefits-header h2 { font-size: 36px; font-weight: 800; color: var(--ink); margin: 0 0 14px; }
.benefits-header h2 span { color: var(--accent); }
.benefits-header > p { font-size: 16px; color: #5c6b60; margin: 0 0 48px; }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  text-align: center;
}
.benefit-card {
  height: 320px;
  background: #fff;
  border: 3px solid var(--accent);
  border-radius: 28px;
  box-shadow: 0 14px 34px rgba(21, 75, 37, 0.08);
  padding: 24px 24px 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-sizing: border-box;
}
.benefit-card img { width: auto; max-height: 136px; max-width: 88%; object-fit: contain; margin-bottom: 14px; }
.benefit-card h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 800;
  color: #101722;
  margin: 0 0 12px;
}
.benefit-card p { font-size: 16px; line-height: 1.48; color: #101722; max-width: 255px; margin: 0; }

/* ===== FAQ section ===== */
.faq-section {
  position: relative;
  padding: 100px 64px;
  background-color: rgba(251, 241, 226, 0.42);
}
.faq-grid {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: 60px;
  align-items: start;
}
.faq-copy h2 { font-size: 36px; font-weight: 800; color: var(--ink); line-height: 1.2; margin: 0 0 18px; }
.faq-copy p { font-size: 15.5px; color: #5c6b60; margin: 0; }

.faq-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 20px;
  cursor: pointer;
}
.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 14px;
  color: var(--ink);
  line-height: 1.4;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  color: var(--accent);
  font-size: 18px;
  font-weight: 600;
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-answer {
  margin-top: 12px;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-body);
}

/* ===== Final CTA ===== */
.cta-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, #fffdfa 0%, #fbfaf6 58%, #f3f1e7 100%);
}
.cta-grid {
  min-height: 700px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}
.cta-copy {
  min-width: 0;
  padding: 72px 40px 58px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
}
.cta-copy h2 {
  margin: 0;
  font-size: 56px;
  line-height: 0.96;
  letter-spacing: -0.03em;
  font-weight: 800;
  color: var(--ink);
}
.cta-copy h2 span { color: var(--accent); }
.cta-copy > p {
  margin: 28px 0 0;
  max-width: 520px;
  font-size: 18px;
  line-height: 1.55;
  color: #0b1720;
}
.cta-copy strong { color: var(--accent); font-weight: 700; }

.cta-benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 32px;
  max-width: 600px;
}
.cta-benefits > div { text-align: center; padding: 0 16px; border-left: 1px solid #d9ded8; }
.cta-benefits > div:first-child { border-left: none; }
.cta-benefits .icon { width: 44px; height: 44px; margin: 0 auto 10px; color: var(--accent); }
.cta-benefits h3 { margin: 0 0 6px; font-size: 14.5px; color: #234a25; font-weight: 700; }
.cta-benefits p { margin: 0; font-size: 11.5px; line-height: 1.4; color: #24303a; }

.cta-copy .btn { margin-top: 30px; width: max-content; }

.cta-trust {
  margin-top: 14px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
  font-size: 12px;
  color: #24303a;
}

.cta-visual {
  min-width: 0;
  position: relative;
  min-height: 700px;
  overflow: hidden;
  width: 100%;
}
.cta-visual img.lifestyle {
  position: absolute;
  inset: 115px 0 0 0;
  width: 100%;
  height: 640px;
  object-fit: cover;
  object-position: center bottom;
  display: block;
}

.published-card {
  position: absolute;
  top: 12px;
  left: 58px;
  z-index: 5;
  width: 280px;
  padding: 22px 22px 20px;
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid var(--accent);
  border-radius: 24px;
  box-shadow: 0 16px 40px rgba(33, 70, 30, 0.12);
  text-align: center;
  backdrop-filter: blur(5px);
}
.published-card .icon { width: 52px; height: 52px; color: var(--accent); margin: 0 auto 8px; }
.published-card h3 { margin: 0; font-size: 22px; color: var(--ink); }
.published-card p { margin: 6px 0 12px; font-size: 13px; color: #38434c; }
.published-card .channels { display: flex; justify-content: center; gap: 10px; }
.channel-pill {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
  font-size: 14px;
}
.channel-ig { background: linear-gradient(135deg, #7f35ff, #f12e65, #ff9c16); }
.channel-fb { background: #2674df; }
.channel-tt { background: #111; }
.channel-x { background: #111; }
.channel-li { background: #157bb8; }

.status-cards {
  position: absolute;
  top: 78px;
  right: 5%;
  z-index: 6;
  width: 260px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.status-card {
  display: grid;
  grid-template-columns: 42px 1fr 20px;
  gap: 10px;
  align-items: center;
  padding: 13px 14px;
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid var(--accent);
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(33, 70, 30, 0.1);
  backdrop-filter: blur(5px);
}
.status-card .icon-box {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #f1f5e9;
  display: grid;
  place-items: center;
}
.status-card .icon-box .icon { width: 24px; height: 24px; color: var(--accent); }
.status-card h4 { margin: 0 0 3px; font-size: 13.5px; color: var(--ink); }
.status-card p { margin: 0; font-size: 11px; color: #47515b; }
.status-card .check { width: 18px; height: 18px; color: var(--accent); }

.cta-visual .swirl {
  position: absolute;
  z-index: 4;
  left: 5%;
  top: 230px;
  width: 210px;
  height: 128px;
  color: var(--accent);
  opacity: 0.95;
}

/* ===== Footer ===== */
.site-footer {
  min-height: 118px;
  background: linear-gradient(90deg, #0a4932, #0b5532 48%, #0b4a30);
  color: #fff;
  display: grid;
  grid-template-columns: 300px 1fr auto;
  align-items: center;
  gap: 30px;
  padding: 26px max(6vw, 64px);
}
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand img { width: 56px; height: 56px; object-fit: contain; filter: brightness(1.55) saturate(0.9); }
.footer-brand .name { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 26px; line-height: 1; font-weight: 600; }
.footer-brand .tagline { font-size: 12px; opacity: 0.82; margin-top: 6px; }

.footer-nav { display: flex; justify-content: center; gap: 26px; flex-wrap: wrap; }
.footer-nav a { color: #fff; text-decoration: none; font-size: 14px; white-space: nowrap; }
.footer-nav a:hover { opacity: 0.8; color: #fff; }

.footer-social { display: flex; align-items: center; gap: 10px; }
.footer-social a {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
}

/* ===== Responsive ===== */
@media (max-width: 1200px) {
  .hero-grid { padding-left: 32px; padding-right: 32px; }
  .navbar { padding: 20px 32px; }
  .problem-section, .process-section, .benefits-section, .faq-section { padding-left: 32px; padding-right: 32px; }
  .benefits-grid { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(3, 1fr); row-gap: 24px; }
  .step-wrap { flex-direction: column; }
  .step-arrow { display: none; }
}

@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr; }
  .coverflow { margin-top: 32px; }
  .problem-grid { grid-template-columns: 1fr; }
  .constellation { display: none; }
  .cta-grid { grid-template-columns: 1fr; }
  .cta-visual { min-height: 420px; }
  .cta-visual img.lifestyle { position: static; width: 100%; height: 320px; }
  .published-card, .status-cards, .cta-visual .swirl { display: none; }
  .faq-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .navbar { padding: 16px 20px; gap: 12px; }
  .brand-name { font-size: 16px; }
  .brand-icon { height: 41px; }
  .nav-actions { gap: 10px; }
  .nav-actions .btn-pill { padding: 10px 16px; font-size: 13px; white-space: nowrap; }
  .nav-links { display: none; }
  .nav-links.nav-links-open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: #fff;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    padding: 8px 0;
  }
  .nav-links.nav-links-open a { padding: 12px 32px; width: 100%; }
  .nav-toggle { display: block; }
  .nav-actions a:first-child { display: none; }
  .hero-copy h1 { font-size: 38px; }
  .hero-copy p { font-size: 16px; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .faq-list { grid-template-columns: 1fr; }
  .cta-benefits { grid-template-columns: 1fr 1fr; row-gap: 20px; }
  .cta-copy h2 { font-size: 36px; }
  .site-footer { grid-template-columns: 1fr; text-align: center; }
  .footer-nav { justify-content: center; }
  .footer-social { justify-content: center; }
}
