.paper {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
}

.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?auto=format&fit=crop&w=2070&q=85');
  background-size: cover;
  background-position: center 40%;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.hero-bg.loaded { transform: scale(1); }

.hero-overlay-1 {
  position: absolute; inset: 0;
  background: linear-gradient(
    105deg,
    rgba(26,46,40,0.88) 0%,
    rgba(26,46,40,0.72) 42%,
    rgba(26,46,40,0.2) 70%,
    rgba(26,46,40,0.05) 100%
  );
}
.hero-overlay-2 {
  position: absolute; inset: 0;
  background: linear-gradient(
    180deg,
    rgba(26,46,40,0.4) 0%,
    transparent 40%,
    transparent 60%,
    rgba(26,46,40,0.75) 100%
  );
}

.hero-inner {
  position: relative; z-index: 2;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 100px 48px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  min-height: 100vh;
}

.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(240,165,0,0.15);
  border: 1px solid rgba(240,165,0,0.35);
  padding: 7px 16px; border-radius: 100px;
  color: var(--amber); font-size: 12px; font-weight: 800;
  letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 32px; width: fit-content;
}
.hero-tag-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--amber);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(0.7)} }

.hero h1 {
  color: var(--white);
  margin-bottom: 8px;
  text-shadow: 0 2px 40px rgba(0,0,0,0.3);
  white-space: nowrap;
}
.hero h1.hero-headline {
  white-space: normal;
  max-width: 14em;
  line-height: 1.05;
  font-size: clamp(38px, 5vw, 74px);
}
.hero h1 .line-accent { color: var(--amber); display: block; white-space: nowrap; }
.hero h1 .line-sub {
  font-size: clamp(28px, 3.5vw, 48px);
  color: rgba(255,255,255,0.7);
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.06em;
  margin-top: 4px;
}

.hero-divider {
  width: 48px; height: 3px;
  background: linear-gradient(90deg, var(--amber), var(--orange));
  border-radius: 100px;
  margin: 24px 0;
}

.hero-sub {
  color: rgba(255,255,255,0.72);
  font-size: 17px; max-width: 420px;
  margin-bottom: 40px; line-height: 1.72;
}

.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 0; }

.hero-stats { display: flex; gap: 0; }
.hero-stat {
  padding-right: 28px; margin-right: 28px;
  border-right: 1px solid rgba(255,255,255,0.15);
}
.hero-stat:last-child { border-right: none; margin-right: 0; }
.hero-stat strong {
  display: block;
  font-family: 'Bebas Neue', sans-serif; font-size: 32px;
  color: var(--amber); line-height: 1;
  text-shadow: 0 2px 12px rgba(240,165,0,0.3);
}
.hero-stat span {
  font-size: 11px; color: rgba(255,255,255,0.45);
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
}

.hero-right {
  display: flex; align-items: center; justify-content: flex-start;
}

.dashboard-mock-link {
  display: block;
  width: 100%;
  max-width: 440px;
  text-decoration: none;
  color: inherit;
  border-radius: 22px;
}
.dashboard-mock-link:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 4px;
}

.dashboard-mock {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px);
  border-radius: 22px;
  box-shadow:
    0 40px 80px rgba(0,0,0,0.28),
    0 8px 24px rgba(0,0,0,0.12),
    inset 0 1px 0 rgba(255,255,255,0.8);
  overflow: hidden; width: 100%; max-width: 440px;
}

.mock-header {
  background: var(--green); padding: 14px 22px;
  display: flex; align-items: center; gap: 10px;
  border-bottom: 2px solid rgba(240,165,0,0.2);
}
.mock-dots { display: flex; gap: 5px; }
.mock-dots span { width: 8px; height: 8px; border-radius: 50%; }
.mock-dots span:nth-child(1) { background: #FF5F57; }
.mock-dots span:nth-child(2) { background: #FFBD2E; }
.mock-dots span:nth-child(3) { background: #28CA41; }
.mock-header h4 { color: rgba(255,249,196,0.85); font-size: 12px; font-weight: 800; margin-left: 10px; letter-spacing: 0.03em; }

.mock-body { padding: 22px; }
.mock-lbl {
  font-size: 10px; font-weight: 700; color: var(--muted);
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 8px;
}
.mock-row { display: flex; gap: 8px; margin-bottom: 16px; }
.mock-chip {
  flex: 1; background: var(--sand); border-radius: 8px;
  padding: 10px 13px; font-size: 12px; font-weight: 700; color: var(--green);
  border: 1px solid rgba(44,74,62,0.08);
}

.bar-row { margin-bottom: 13px; }
.bar-label { display: flex; justify-content: space-between; font-size: 12px; font-weight: 700; margin-bottom: 5px; color: var(--text); }
.bar { height: 6px; background: #EDE8DC; border-radius: 100px; overflow: hidden; }
.bar-fill { height: 100%; border-radius: 100px; }
.bar-fill.o { background: var(--orange); width: 65%; }
.bar-fill.a { background: var(--amber);  width: 40%; }
.bar-fill.g { background: var(--green-mid); width: 82%; }

.mock-total {
  background: var(--green); border-radius: 11px;
  padding: 14px 18px; display: flex; justify-content: space-between; align-items: center;
  margin-top: 4px;
}
.mock-total-label { color: rgba(255,249,196,0.5); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 2px; }
.mock-total-amount { color: var(--amber); font-family: 'Bebas Neue', sans-serif; font-size: 30px; line-height: 1; }
.mock-total-cta {
  background: var(--amber); color: var(--green);
  padding: 8px 14px; border-radius: 8px;
  font-size: 12px; font-weight: 800; text-decoration: none;
  display: block; white-space: nowrap;
}

.hero-scroll {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.4); font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(6px)} }
.scroll-line { width: 1px; height: 32px; background: linear-gradient(180deg, rgba(255,255,255,0.4), transparent); }

.hero-wave { position: absolute; bottom: -1px; left: 0; right: 0; z-index: 3; line-height: 0; }

.tools { background: var(--sand); padding: 120px 0; }
.tools-home .section-header--left {
  text-align: left;
  max-width: none;
  margin-bottom: 48px;
}
.tools-heading {
  margin: 0;
  max-width: 14em;
  font-size: clamp(30px, 3.8vw, 52px);
  line-height: 1.05;
  color: var(--green);
}
.tools-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 22px;
  align-items: stretch;
}
.tools-grid--equal {
  grid-template-columns: repeat(3, 1fr);
}
.tool-card--highlight {
  background: var(--green);
  border-color: transparent;
}
.tool-card--highlight:hover {
  border-color: rgba(240,165,0,0.45);
}
.tool-card--highlight h3 { color: var(--cream); }
.tool-card--highlight p { color: rgba(255,249,196,0.6); }

.tool-icon.tool-icon--budget {
  background: var(--amber);
  color: var(--green);
  box-shadow: 0 6px 18px rgba(240,165,0,0.45);
  border: 1px solid rgba(44,74,62,0.12);
}

.result {
  padding: 96px 0;
  background: var(--sand);
}
.result-panel {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 44px) clamp(24px, 5vw, 48px);
  background: linear-gradient(145deg, var(--white) 0%, rgba(245,238,216,0.55) 100%);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(240,165,0,0.28);
  box-shadow:
    0 24px 48px rgba(44,74,62,0.09),
    0 0 0 1px rgba(255,255,255,0.6) inset;
  position: relative;
  overflow: hidden;
}
.result-panel::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, var(--amber), var(--orange));
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}
.result-panel-head {
  margin-bottom: 28px;
  padding-left: 8px;
}
.result-panel-head .eyebrow {
  color: var(--orange);
  margin-bottom: 8px;
}
.result-title {
  margin: 0;
  font-size: clamp(34px, 4.5vw, 56px);
  line-height: 1.02;
  color: var(--green);
}
.result-grid {
  list-style: none;
  margin: 0 0 24px;
  padding: 0 0 0 8px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.result-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 18px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(44,74,62,0.1);
  box-shadow: 0 6px 20px rgba(44,74,62,0.06);
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.result-item:hover {
  transform: translateY(-2px);
  border-color: rgba(240,165,0,0.45);
  box-shadow: 0 12px 28px rgba(240,165,0,0.14);
}
.result-item-icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(240,165,0,0.2), rgba(44,74,62,0.08));
  color: var(--green);
}
.result-item-label {
  font-weight: 800;
  font-size: 16px;
  line-height: 1.3;
  color: var(--text);
}
.result-sub {
  color: var(--muted);
  font-size: 16px;
  margin: 0;
  line-height: 1.65;
  padding-left: 8px;
  font-weight: 600;
  max-width: 36em;
}

.audience {
  padding: 96px 0;
  background: var(--sand);
}
.audience-title {
  margin-bottom: 40px;
  font-size: clamp(32px, 4vw, 52px);
  color: var(--green);
}
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.audience-card {
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(44,74,62,0.08);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.audience-card:hover {
  border-color: rgba(240,165,0,0.35);
  box-shadow: 0 12px 32px rgba(44,74,62,0.1);
  transform: translateY(-3px);
}
.audience-card h3 {
  margin-bottom: 8px;
  color: var(--green);
  font-size: 20px;
}
.audience-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
}

.personal { padding: 88px 0; }
.personal-inner { max-width: 720px; }
.personal-headline {
  margin-bottom: 16px;
  font-size: clamp(32px, 4vw, 48px);
  color: var(--green);
}
.personal-text {
  font-size: 18px;
  line-height: 1.72;
  color: var(--muted);
  margin: 0;
}

.content-gate {
  padding: 96px 0;
  background: var(--white);
  border-top: 1px solid rgba(44,74,62,0.06);
}
.content-gate-title {
  margin-bottom: 24px;
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--green);
}
.content-link-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 32px;
}
.content-link-list a {
  font-weight: 800;
  font-size: 15px;
  color: var(--green);
  text-decoration: none;
  border-bottom: 2px solid var(--amber);
  padding-bottom: 2px;
}
.content-link-list a:hover { color: var(--orange); border-bottom-color: var(--orange); }

.lead-block { padding: 72px 0; background: var(--green); }
.lead-block-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.lead-block-title {
  color: var(--cream);
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 3.5vw, 44px);
  letter-spacing: 0.02em;
  line-height: 1.08;
  margin: 0;
  max-width: 520px;
  font-weight: 400;
}
.lead-block .btn-primary { flex-shrink: 0; }

.tool-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 32px 28px; border: 1.5px solid rgba(44,74,62,0.08);
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  position: relative; overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.tool-card:hover { border-color: var(--amber); transform: translateY(-4px); box-shadow: 0 20px 48px rgba(240,165,0,0.12); }
.tool-card.featured { background: var(--green); border-color: transparent; }
.tool-card.featured:hover { border-color: rgba(240,165,0,0.4); }
.tool-icon { width: 50px; height: 50px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 16px; }
.icon-amber  { background: rgba(240,165,0,0.12); }
.icon-green  { background: rgba(44,74,62,0.08); }
.icon-orange { background: rgba(234,83,44,0.08); }
.icon-cream  { background: rgba(255,249,196,0.1); }
.tool-card h3 { margin-bottom: 10px; color: var(--text); }
.tool-card.featured h3 { color: var(--cream); font-size: 22px; }
.tool-card p { font-size: 14px; color: var(--muted); margin-bottom: 0; line-height: 1.65; flex: 1 1 auto; }
.tool-card.featured p { color: rgba(255,249,196,0.58); }
.tool-card-foot {
  margin-top: auto;
  padding-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.tool-card .featured-preview + .tool-card-foot { padding-top: 18px; }
.tool-card-foot .btn { align-self: flex-start; }
.featured-badge {
  position: absolute; top: 18px; right: 18px;
  background: var(--amber); color: var(--green);
  font-size: 10px; font-weight: 800; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 3px 10px; border-radius: 100px;
}
.featured-preview {
  background: rgba(240,165,0,0.09); border-radius: 10px;
  padding: 14px 16px; margin-top: 18px;
  flex: 0 0 auto;
  border: 1px solid rgba(240,165,0,0.18);
}
.fp-meta   { color: rgba(255,249,196,0.38); font-size: 11px; font-weight: 700; margin-bottom: 4px; }
.fp-amount { color: var(--amber); font-family: 'Bebas Neue', sans-serif; font-size: 40px; line-height: 1; }

.passport { background: var(--white); padding: 120px 0; }
.passport-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 48px; }
.passport-header a { color: var(--orange); font-weight: 700; font-size: 14px; text-decoration: none; }

.route-timeline { display: flex; align-items: flex-start; overflow-x: auto; padding-bottom: 8px; margin-bottom: 44px; }
.stop-dot { width: 13px; height: 13px; border-radius: 50%; border: 2.5px solid; margin: 0 auto 7px; }
.stop-dot.visited { background: var(--green); border-color: var(--green); }
.stop-dot.current { background: var(--orange); border-color: var(--orange); box-shadow: 0 0 0 4px rgba(234,83,44,0.18); }
.stop-dot.planned { background: transparent; border-color: var(--amber); }
.stop-code { font-family: 'Bebas Neue', sans-serif; font-size: 17px; color: var(--green); }
.stop-name { font-size: 10px; color: var(--muted); font-weight: 700; }
.stop-dur  { font-size: 10px; font-weight: 700; margin-top: 2px; }
.connector { flex: 1; min-width: 36px; display: flex; flex-direction: column; align-items: center; padding-bottom: 30px; }
.conn-plane { font-size: 13px; }
.conn-line  { height: 2px; width: 100%; margin-top: 5px; }
.conn-line.done    { background: var(--green); opacity: 0.28; }
.conn-line.active  { background: linear-gradient(90deg, var(--orange), var(--amber)); }
.conn-line.planned { border-top: 2px dashed rgba(240,165,0,0.35); height: 0; }

.stamps-label { font-size: 11px; font-weight: 700; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 14px; }
.stamps-row { display: flex; flex-wrap: wrap; gap: 9px; }
.stamp { position: relative; padding: 9px 15px; border-radius: 5px; font-size: 13px; font-weight: 800; display: flex; align-items: center; gap: 7px; }
.stamp.v { border: 2px solid var(--green); color: var(--green); background: rgba(44,74,62,0.03); opacity: 0.82; }
.stamp.v::before { content:''; position:absolute; inset:-3px; border:1.5px solid rgba(44,74,62,0.15); border-radius:4px; transform:rotate(-1.8deg); pointer-events:none; }
.stamp.v::after  { content:'✓'; position:absolute; top:-7px; right:-7px; width:15px; height:15px; background:var(--green); color:var(--cream); border-radius:50%; font-size:8px; display:flex; align-items:center; justify-content:center; font-weight:900; }
.stamp.c { border: 2px solid var(--orange); color: var(--orange); background: rgba(234,83,44,0.05); box-shadow: 0 0 0 3px rgba(234,83,44,0.08); }
.stamp.p { border: 2px dashed var(--amber); color: #8A5A00; background: rgba(240,165,0,0.06); }
.sdot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.sdot.v { background: var(--green); }
.sdot.p { background: var(--amber); }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }
.stamp.c .sdot { background: var(--orange); animation: blink 1.6s ease-in-out infinite; }
.stamp-legend { display: flex; gap: 18px; margin-top: 18px; }
.sl-item { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--muted); font-weight: 700; }
.sl-dot { width: 8px; height: 8px; border-radius: 50%; }

.value { background: var(--sand); padding: 120px 0; }
.value-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.budget-card { background: var(--white); border-radius: var(--radius-lg); padding: 28px; box-shadow: 0 4px 32px rgba(44,74,62,0.07); }
.budget-card-title { font-family: 'Bebas Neue', sans-serif; font-size: 19px; color: var(--green); margin-bottom: 16px; }
.budget-row { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; padding: 11px 13px; background: var(--sand); border-radius: 9px; }
.budget-row .cat { width: 32px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.budget-row .info { flex: 1; }
.budget-row .info em { display: block; font-style: normal; font-size: 10px; color: var(--muted); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }
.budget-row .info strong { font-size: 13px; color: var(--green); font-weight: 800; }
.budget-row .amt { font-family: 'Bebas Neue', sans-serif; font-size: 20px; color: var(--orange); }
.budget-total { margin-top: 14px; background: var(--green); border-radius: 10px; padding: 14px 18px; display: flex; justify-content: space-between; align-items: center; }
.budget-total span { color: rgba(255,249,196,0.45); font-size: 11px; font-weight: 700; }
.budget-total strong { color: var(--amber); font-family: 'Bebas Neue', sans-serif; font-size: 28px; }

.value-text .eyebrow { text-align: left; }
.value-text h2 { margin-bottom: 16px; }
.value-text > p { font-size: 16px; color: var(--muted); margin-bottom: 26px; }
.value-list { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-bottom: 32px; }
.value-list li { display: flex; align-items: center; gap: 12px; font-weight: 700; font-size: 14px; }
.value-list li::before {
  content: '✓'; background: var(--amber); color: var(--green);
  width: 22px; height: 22px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 900; flex-shrink: 0;
}

.how { background: var(--white); padding: 120px 0; }
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 40px; position: relative; }
.steps::before {
  content: ''; position: absolute; top: 40px;
  left: calc(16.6% + 24px); right: calc(16.6% + 24px);
  height: 2px;
  background: linear-gradient(90deg, var(--orange) 0%, var(--amber) 50%, var(--orange) 100%);
  background-size: 200% 100%;
  animation: stepsFlow 4s linear infinite;
}
@keyframes stepsFlow {
  from { background-position: 0 0; }
  to   { background-position: 200% 0; }
}
.step { text-align: center; }
.step-num {
  width: 80px; height: 80px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif; font-size: 34px;
  margin: 0 auto 20px; position: relative; z-index: 1;
}
.step:nth-child(1) .step-num { background: var(--orange); color: var(--cream); }
.step:nth-child(2) .step-num { background: var(--green);  color: var(--amber); }
.step:nth-child(3) .step-num { background: var(--amber);  color: var(--green); }
.step h3 { font-size: 20px; margin-bottom: 10px; color: var(--green); }
.step p  { font-size: 14px; color: var(--muted); max-width: 220px; margin: 0 auto; }

.story { background: var(--green); padding: 120px 0; position: relative; overflow: hidden; }
.story::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 160px;
  background: rgba(0,0,0,0.1);
  clip-path: polygon(0 65%,12% 35%,28% 55%,48% 12%,63% 42%,79% 18%,100% 48%,100% 100%,0 100%);
}
.story-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 72px; align-items: center; position: relative; z-index: 1; }
.story-ph {
  background: var(--white);
  border-radius: 4px;
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  flex-direction: column;
  gap: 10px;
  font-size: 64px;
  padding: 24px 24px 72px;
  box-shadow:
    0 20px 60px rgba(0,0,0,0.22),
    0 4px 12px rgba(0,0,0,0.08),
    inset 0 0 0 1px rgba(0,0,0,0.04);
  transform: rotate(-2deg);
  position: relative;
}
.story-ph span {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  font-family: 'Nunito', sans-serif;
  letter-spacing: 0.02em;
}
.story-text .eyebrow { color: var(--amber); text-align: left; }
.story-text h2 { color: var(--cream); margin-bottom: 16px; }
.story-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; }
.story-avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--orange); display: flex; align-items: center; justify-content: center; font-size: 19px; border: 2px solid rgba(240,165,0,0.2); flex-shrink: 0; }
.story-meta strong { display: block; color: var(--cream); font-size: 14px; font-weight: 800; }
.story-meta span   { color: rgba(255,249,196,0.38); font-size: 12px; }
.story-text p { color: rgba(255,249,196,0.65); font-size: 15px; line-height: 1.74; margin-bottom: 13px; }
.story-text a { color: var(--amber); font-weight: 700; text-decoration: none; font-size: 14px; display: inline-block; margin-top: 6px; }
.story-text a:hover { color: var(--cream); }

.guides { background: var(--sand); padding: 120px 0; }
.guides-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }

.guide-card-link { text-decoration: none; color: inherit; display: block; }
.guide-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: none;
  box-shadow: 0 4px 20px rgba(44,74,62,0.10);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.guide-card-link:hover .guide-card {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(44,74,62,0.16);
}

/* Photo thumb */
.guide-thumb {
  height: 220px;
  position: relative;
  overflow: hidden;
  display: block;
}
.guide-thumb-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.55s ease;
}
.guide-card-link:hover .guide-thumb-img {
  transform: scale(1.07);
}
/* Dark gradient overlay on photo */
.guide-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(20,36,30,0.12) 0%,
    rgba(20,36,30,0.62) 100%
  );
  pointer-events: none;
}

/* Category pill — floats over photo at bottom-left */
.guide-tag {
  position: absolute;
  bottom: 14px;
  left: 16px;
  z-index: 2;
  display: inline-block;
  background: var(--amber);
  color: var(--green);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 11px;
  border-radius: 100px;
  margin: 0;
}

/* Body below photo */
.guide-body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.guide-body h4 {
  font-size: 16px;
  font-weight: 800;
  color: var(--green);
  line-height: 1.3;
  margin: 0;
}
.guide-body p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}
.guide-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  font-size: 12px;
  font-weight: 800;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: gap 0.18s;
}
.guide-card-link:hover .guide-read-more {
  gap: 10px;
  color: var(--orange);
}

@keyframes fadeUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }
.fu { animation: fadeUp 0.6s ease both; }
.d1{animation-delay:.1s} .d2{animation-delay:.22s} .d3{animation-delay:.34s} .d4{animation-delay:.46s} .d5{animation-delay:.58s}

@media (max-width: 1100px) {
  .tools-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .tools-grid .tool-card.featured {
    grid-column: 1 / -1;
  }
  .tools-grid--equal {
    grid-template-columns: 1fr 1fr;
  }
  .tools-grid--equal .tool-card:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; padding: 100px 32px 60px; gap: 40px; min-height: auto; }
  .hero h1 { white-space: normal; }
  .value-grid, .story-grid { grid-template-columns: 1fr; gap: 40px; }
  .guides-grid { grid-template-columns: 1fr 1fr; }
  .audience-grid { grid-template-columns: 1fr; }
  .result-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .how { padding: 72px 0; }
  .how .container { padding-left: 24px; padding-right: 24px; }

  /* Switch to vertical timeline */
  .steps {
    grid-template-columns: 1fr;
    gap: 0;
    padding-left: 24px;
  }
  /* Replace horizontal line with vertical left border */
  .steps::before {
    top: 40px;
    bottom: 40px;
    left: 39px;
    right: auto;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, var(--orange) 0%, var(--amber) 50%, var(--orange) 100%);
    background-size: 100% 200%;
    animation: stepsFlowV 4s linear infinite;
  }
  @keyframes stepsFlowV {
    from { background-position: 0 0; }
    to   { background-position: 0 200%; }
  }
  .step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    text-align: left;
    padding: 0 0 36px;
  }
  .step:last-child { padding-bottom: 0; }
  .step-num {
    width: 56px;
    height: 56px;
    font-size: 26px;
    flex-shrink: 0;
    margin: 0;
  }
  .step h3 { font-size: 17px; margin-bottom: 6px; }
  .step p  { max-width: none; font-size: 14px; }
}

@media (max-width: 640px) {
  .tools { padding: 72px 0 88px; }
  .tools .container { padding-left: 20px; padding-right: 20px; }
  .tools .section-header { margin-bottom: 32px; }
  .tools-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .tools-grid .tool-card.featured {
    grid-column: auto;
  }
  .tools-grid--equal {
    grid-template-columns: 1fr;
  }
  .tools-grid--equal .tool-card:first-child {
    grid-column: auto;
  }
  .lead-block-inner { flex-direction: column; align-items: flex-start; }
  .lead-block .btn-primary { width: 100%; justify-content: center; }
  .tool-card {
    padding: 24px 20px;
    border-radius: var(--radius);
  }
  .tool-icon { width: 46px; height: 46px; margin-bottom: 14px; }
  .tool-card h3 { font-size: 18px; }
  .tool-card.featured h3 { font-size: 20px; }
  .featured-badge { top: 14px; right: 14px; font-size: 9px; }
  .fp-amount { font-size: clamp(28px, 10vw, 40px); }
  .featured-preview { padding: 12px 14px; margin-top: 14px; }
  .tool-card-foot { padding-top: 18px; }
  .tool-card-foot .btn { width: 100%; justify-content: center; }
  .fp-meta {
    font-size: 10px;
    white-space: normal;
    line-height: 1.4;
    word-break: break-word;
  }
}
