  :root {
    --primary-green: #7A8F6A;
    --dark-green: #2F463A;
    --light-green: #C9D2BD;
    --warm-beige: #F7F4EF;
    --warm-beige-deep: #EFEAE1;
    --text-soft: #5A6556;
    --text-body: #3D4A3F;
    --line: rgba(47, 70, 58, 0.12);
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }

  body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    color: var(--text-body);
    background-color: var(--warm-beige);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  h1, h2, h3, h4 {
    font-family: 'Lora', serif;
    font-weight: 600;
    color: var(--dark-green);
    line-height: 1.15;
    letter-spacing: -0.01em;
  }

  a { color: inherit; text-decoration: none; }

  .container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 32px;
  }

  /* ---------- Reveal Animation ---------- */
  .reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.9s ease, transform 0.9s ease;
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  /* ---------- Navigation ---------- */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background-color: rgba(247, 244, 239, 0.82);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
  }
  nav.scrolled { border-bottom-color: var(--line); }

  .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 32px;
    max-width: 1180px;
    margin: 0 auto;
  }

  .logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Lora', serif;
    font-size: 23px;
    font-weight: 600;
    color: var(--dark-green);
    letter-spacing: -0.01em;
  }
  .logo img { width: 34px; height: 34px; object-fit: contain; }

  .nav-links {
    display: flex;
    gap: 38px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-soft);
  }
  .nav-links a { transition: color 0.2s ease, background-color 0.2s ease; position: relative; padding: 6px 14px; border-radius: 999px; }
  .nav-links a:hover { color: var(--dark-green); }
  .nav-links a.active { background: var(--dark-green); color: var(--warm-beige) !important; }

  .nav-cta {
    background-color: var(--dark-green);
    color: var(--warm-beige) !important;
    padding: 11px 24px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    transition: background-color 0.25s ease, transform 0.25s ease;
    letter-spacing: 0.02em;
  }
  .nav-cta:hover { background-color: #1f2f28; transform: translateY(-1px); }

  .nav-phone {
    font-weight: 600;
    font-size: 14px;
    color: var(--dark-green);
    white-space: nowrap;
    transition: color 0.2s ease;
  }
  .nav-phone:hover { color: var(--primary-green); }

  /* ---------- Hero ---------- */
  .hero {
    position: relative;
    padding: 180px 0 120px;
    overflow: hidden;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
  }
  .hero-bg::before {
    content: '';
    position: absolute;
    top: -20%; right: -10%;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(201, 210, 189, 0.45) 0%, transparent 65%);
    border-radius: 50%;
    filter: blur(40px);
  }
  .hero-bg::after {
    content: '';
    position: absolute;
    bottom: -30%; left: -10%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(122, 143, 106, 0.18) 0%, transparent 65%);
    border-radius: 50%;
    filter: blur(50px);
  }

  .hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--primary-green);
    margin-bottom: 28px;
  }
  .hero-kicker::before {
    content: '';
    width: 28px; height: 1px;
    background: var(--primary-green);
  }

  .hero h1 {
    font-size: clamp(42px, 5.6vw, 72px);
    font-weight: 500;
    margin-bottom: 28px;
  }
  .hero h1 em {
    font-style: italic;
    font-weight: 400;
    color: var(--primary-green);
  }

  .hero p.lead {
    font-size: 19px;
    line-height: 1.65;
    color: var(--text-soft);
    max-width: 520px;
    margin-bottom: 44px;
    font-weight: 400;
  }

  .hero-cta-group {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
  }

  .btn-primary {
    background-color: var(--dark-green);
    color: var(--warm-beige);
    padding: 15px 32px;
    border-radius: 999px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: background-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    cursor: pointer;
  }
  .btn-primary:hover {
    background-color: #1f2f28;
    transform: translateY(-1px);
    box-shadow: 0 12px 30px -12px rgba(47, 70, 58, 0.4);
  }
  .btn-primary svg { transition: transform 0.25s ease; }
  .btn-primary:hover svg { transform: translateX(3px); }

  .btn-secondary {
    color: var(--dark-green);
    padding: 15px 8px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.02em;
    border-bottom: 1px solid var(--dark-green);
    transition: color 0.25s ease, border-color 0.25s ease;
  }
  .btn-secondary:hover {
    color: var(--primary-green);
    border-color: var(--primary-green);
  }

  /* Hero visual — stacked card composition */
  .hero-visual {
    position: relative;
    height: 580px;
  }

  .hero-card {
    position: absolute;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 60px -20px rgba(47, 70, 58, 0.18),
                0 4px 12px -4px rgba(47, 70, 58, 0.08);
    padding: 24px;
  }

  .hero-card-main {
    top: 40px; left: 0; right: 40px;
    z-index: 2;
  }
  .hero-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--line);
    margin-bottom: 16px;
  }
  .hero-card-title {
    font-family: 'Lora', serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-green);
  }
  .hero-card-progress {
    font-size: 11px;
    font-weight: 500;
    color: var(--primary-green);
    letter-spacing: 0.05em;
  }
  .progress-bar {
    height: 4px;
    background: var(--warm-beige-deep);
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: 20px;
  }
  .progress-fill {
    height: 100%;
    width: 62%;
    background: var(--primary-green);
    border-radius: 999px;
    animation: fillGrow 2s ease forwards;
  }
  @keyframes fillGrow {
    from { width: 0; }
    to { width: 62%; }
  }

  .todo-item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    font-size: 13px;
    font-weight: 400;
    color: var(--text-body);
  }
  .todo-item + .todo-item { border-top: 1px solid var(--line); }
  .todo-check {
    width: 18px; height: 18px;
    border-radius: 50%;
    border: 1.5px solid var(--light-green);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .todo-item.done .todo-check {
    background: var(--primary-green);
    border-color: var(--primary-green);
  }
  .todo-item.done .todo-label {
    text-decoration: line-through;
    color: var(--text-soft);
  }
  .todo-meta {
    margin-left: auto;
    font-size: 11px;
    color: var(--text-soft);
    font-weight: 500;
  }

  .hero-card-support {
    bottom: 20px; right: 0; left: 60px;
    z-index: 3;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .support-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--light-green);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Lora', serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-green);
  }
  .support-text { flex: 1; }
  .support-name {
    font-family: 'Lora', serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-green);
    margin-bottom: 2px;
  }
  .support-msg {
    font-size: 12px;
    color: var(--text-soft);
    line-height: 1.5;
  }
  .support-dot {
    width: 8px; height: 8px;
    background: var(--primary-green);
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
  }
  .support-dot::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: var(--primary-green);
    opacity: 0.3;
    animation: pulse 2s ease infinite;
  }
  @keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.4); opacity: 0; }
  }

  /* ---------- Problem Section ---------- */
  .problem {
    padding: 120px 0;
    position: relative;
  }

  .problem-intro {
    max-width: 820px;
    margin: 0 auto 80px;
    text-align: center;
  }

  .section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--primary-green);
    margin-bottom: 24px;
  }
  .section-kicker::before, .section-kicker::after {
    content: '';
    width: 24px; height: 1px;
    background: var(--primary-green);
    opacity: 0.5;
  }

  .problem h2 {
    font-size: clamp(32px, 3.8vw, 48px);
    font-weight: 500;
    margin-bottom: 24px;
  }
  .problem h2 em { font-style: italic; color: var(--primary-green); font-weight: 400; }

  .problem-lead {
    font-size: 18px;
    color: var(--text-soft);
    line-height: 1.7;
  }

  .problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--line);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--line);
  }

  .problem-card {
    background: var(--warm-beige);
    padding: 44px 36px;
    transition: background-color 0.3s ease;
  }
  .problem-card:hover { background: var(--warm-beige-deep); }

  .problem-num {
    font-family: 'Lora', serif;
    font-size: 13px;
    font-style: italic;
    color: var(--primary-green);
    margin-bottom: 20px;
    display: block;
  }

  .problem-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 14px;
  }

  .problem-card p {
    font-size: 14.5px;
    color: var(--text-soft);
    line-height: 1.65;
  }

  /* ---------- How It Works ---------- */
  .how {
    padding: 120px 0;
    background: var(--warm-beige-deep);
    position: relative;
    overflow: hidden;
  }

  .how-inner {
    position: relative;
    z-index: 1;
  }

  .how-header {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 80px;
  }

  .how h2 {
    font-size: clamp(32px, 3.8vw, 48px);
    font-weight: 500;
  }
  .how h2 em { font-style: italic; color: var(--primary-green); font-weight: 400; }

  .how-lead {
    font-size: 17px;
    color: var(--text-soft);
    line-height: 1.7;
  }

  .steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
  }

  .steps::before {
    content: '';
    position: absolute;
    top: 32px;
    left: 5%;
    right: 5%;
    height: 1px;
    background: repeating-linear-gradient(
      to right,
      var(--primary-green) 0,
      var(--primary-green) 4px,
      transparent 4px,
      transparent 10px
    );
    opacity: 0.4;
    z-index: 0;
  }

  .step {
    position: relative;
    z-index: 1;
  }

  .step-num {
    width: 64px; height: 64px;
    background: var(--warm-beige);
    border: 1.5px solid var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Lora', serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--dark-green);
    margin-bottom: 28px;
    transition: background-color 0.3s ease, transform 0.3s ease;
  }
  .step:hover .step-num {
    background: var(--primary-green);
    color: var(--warm-beige);
    transform: scale(1.05);
  }

  .step h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
  }

  .step p {
    font-size: 14.5px;
    color: var(--text-soft);
    line-height: 1.65;
  }

  /* ---------- Features ---------- */
  .features {
    padding: 120px 0;
  }

  .features-header {
    max-width: 720px;
    margin: 0 auto 80px;
    text-align: center;
  }

  .features h2 {
    font-size: clamp(32px, 3.8vw, 48px);
    font-weight: 500;
    margin-bottom: 20px;
  }
  .features h2 em { font-style: italic; color: var(--primary-green); font-weight: 400; }

  .features-lead {
    font-size: 18px;
    color: var(--text-soft);
  }

  .features-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
  }

  .feature {
    background: #fff;
    border-radius: 20px;
    padding: 36px;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
  }
  .feature:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -20px rgba(47, 70, 58, 0.15);
  }

  .feature-icon {
    width: 48px; height: 48px;
    background: var(--warm-beige);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--primary-green);
  }

  .feature h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
  }

  .feature p {
    font-size: 14.5px;
    color: var(--text-soft);
    line-height: 1.65;
  }

  .feature-large {
    grid-column: span 1;
    grid-row: span 2;
    background: linear-gradient(145deg, var(--dark-green) 0%, #1f2f28 100%);
    color: var(--warm-beige);
  }
  .feature-large h3 { color: var(--warm-beige); font-size: 28px; }
  .feature-large p { color: rgba(247, 244, 239, 0.7); font-size: 15px; }
  .feature-large .feature-icon {
    background: rgba(201, 210, 189, 0.15);
    color: var(--light-green);
  }
  .feature-large-decor {
    position: absolute;
    bottom: -40px; right: -40px;
    width: 220px; height: 220px;
    opacity: 0.08;
  }

  /* ---------- Partner Section ---------- */
  .partner {
    padding: 120px 0;
    background: var(--dark-green);
    color: var(--warm-beige);
    position: relative;
    overflow: hidden;
  }

  .partner::before {
    content: '';
    position: absolute;
    top: -40%; right: -20%;
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(201, 210, 189, 0.08) 0%, transparent 60%);
    border-radius: 50%;
  }

  .partner-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .partner .section-kicker { color: var(--light-green); }
  .partner .section-kicker::before, .partner .section-kicker::after { background: var(--light-green); opacity: 0.5; }

  .partner h2 {
    font-size: clamp(32px, 3.8vw, 48px);
    font-weight: 500;
    color: var(--warm-beige);
    margin-bottom: 24px;
  }
  .partner h2 em { font-style: italic; color: var(--light-green); font-weight: 400; }

  .partner-lead {
    font-size: 17px;
    color: rgba(247, 244, 239, 0.75);
    margin-bottom: 36px;
    line-height: 1.7;
  }

  .partner-benefits {
    list-style: none;
    margin-bottom: 40px;
  }
  .partner-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    border-top: 1px solid rgba(201, 210, 189, 0.15);
    font-size: 15px;
    color: rgba(247, 244, 239, 0.85);
  }
  .partner-benefits li:last-child { border-bottom: 1px solid rgba(201, 210, 189, 0.15); }
  .partner-benefits svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--light-green);
  }

  .btn-partner {
    background: var(--light-green);
    color: var(--dark-green);
    padding: 15px 32px;
    border-radius: 999px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.02em;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background-color 0.25s ease, transform 0.25s ease;
  }
  .btn-partner:hover {
    background: var(--warm-beige);
    transform: translateY(-1px);
  }

  .partner-types {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .partner-type {
    background: rgba(201, 210, 189, 0.06);
    border: 1px solid rgba(201, 210, 189, 0.15);
    border-radius: 16px;
    padding: 28px;
    transition: background-color 0.3s ease, border-color 0.3s ease;
  }
  .partner-type:hover {
    background: rgba(201, 210, 189, 0.1);
    border-color: rgba(201, 210, 189, 0.3);
  }
  .partner-type-icon {
    width: 40px; height: 40px;
    background: rgba(201, 210, 189, 0.12);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-green);
    margin-bottom: 18px;
  }
  .partner-type h4 {
    color: var(--warm-beige);
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 8px;
    font-family: 'Lora', serif;
  }
  .partner-type p {
    font-size: 13.5px;
    color: rgba(247, 244, 239, 0.65);
    line-height: 1.6;
  }

  /* ---------- About / Mission ---------- */
  .about {
    padding: 140px 0;
    position: relative;
  }

  .about-inner {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
  }

  .about-quote {
    font-family: 'Lora', serif;
    font-style: italic;
    font-size: clamp(28px, 3.2vw, 40px);
    line-height: 1.4;
    color: var(--dark-green);
    margin-bottom: 40px;
    font-weight: 400;
  }
  .about-quote::before {
    content: '"';
    display: block;
    font-size: 80px;
    color: var(--primary-green);
    line-height: 0.5;
    margin-bottom: 24px;
    opacity: 0.4;
  }

  .about p {
    font-size: 17px;
    color: var(--text-soft);
    line-height: 1.8;
    max-width: 680px;
    margin: 0 auto 24px;
  }

  .values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid var(--line);
  }

  .value {
    text-align: center;
  }
  .value-icon {
    width: 56px; height: 56px;
    margin: 0 auto 20px;
    color: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .value h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    font-family: 'Lora', serif;
  }
  .value p {
    font-size: 14px;
    color: var(--text-soft);
    max-width: 240px;
    margin: 0 auto;
  }

  /* ---------- Founders ---------- */
  .founders { padding: 120px 0; background: var(--warm-beige-deep); }

  .founders-inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 64px;
    align-items: center;
    max-width: 1080px;
    margin: 0 auto;
  }

  .founders-photo {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--line);
    aspect-ratio: 4 / 3;
  }
  .founders-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

  .founders-text .section-kicker { margin-bottom: 20px; }
  .founders-text p { font-size: 16px; color: var(--text-soft); line-height: 1.8; margin-bottom: 20px; }
  .founders-names {
    font-family: 'Lora', serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--dark-green);
    margin-top: 4px;
  }

  /* ---------- Contact ---------- */
  .contact-section { padding: 20px 0 120px; }
  .contact-email-note {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 48px;
    font-size: 15px;
    color: var(--text-soft);
  }
  .contact-email-note a { color: var(--dark-green); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
  .calendly-wrap {
    background: #fff;
    border-radius: 20px;
    border: 1px solid var(--line);
    overflow: hidden;
    padding: 8px;
    max-width: 900px;
    margin: 0 auto;
  }

  /* ---------- Legal pages ---------- */
  .legal-section { padding: 20px 0 120px; }
  .legal-inner { max-width: 720px; margin: 0 auto; }
  .legal-inner h2 { font-size: 20px; margin: 44px 0 12px; }
  .legal-inner h2:first-child { margin-top: 0; }
  .legal-inner p { font-size: 15px; color: var(--text-soft); line-height: 1.75; margin-bottom: 10px; }
  .legal-inner a { color: var(--dark-green); text-decoration: underline; text-underline-offset: 3px; }

  /* ---------- FAQ ---------- */
  .faq {
    padding: 120px 0;
    background: var(--warm-beige-deep);
  }

  .faq-inner {
    max-width: 820px;
    margin: 0 auto;
  }

  .faq-header { text-align: center; margin-bottom: 60px; }
  .faq h2 {
    font-size: clamp(32px, 3.8vw, 48px);
    font-weight: 500;
  }
  .faq h2 em { font-style: italic; color: var(--primary-green); font-weight: 400; }

  .faq-item {
    border-bottom: 1px solid var(--line);
  }

  .faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 28px 0;
    text-align: left;
    font-family: 'Lora', serif;
    font-size: 19px;
    font-weight: 600;
    color: var(--dark-green);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    transition: color 0.2s ease;
  }
  .faq-question:hover { color: var(--primary-green); }

  .faq-toggle {
    width: 28px; height: 28px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--warm-beige);
    color: var(--primary-green);
    transition: transform 0.3s ease, background-color 0.3s ease;
  }
  .faq-item.open .faq-toggle {
    transform: rotate(45deg);
    background: var(--primary-green);
    color: var(--warm-beige);
  }

  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
  }
  .faq-item.open .faq-answer {
    max-height: 500px;
    padding-bottom: 28px;
  }
  .faq-answer p {
    font-size: 15.5px;
    color: var(--text-soft);
    line-height: 1.75;
    max-width: 680px;
  }

  /* ---------- CTA Block ---------- */
  .cta-block {
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .cta-block::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 900px; height: 400px;
    background: radial-gradient(ellipse, rgba(201, 210, 189, 0.4) 0%, transparent 70%);
    filter: blur(40px);
    z-index: 0;
  }

  .cta-inner {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto;
  }

  .cta-block h2 {
    font-size: clamp(36px, 4.5vw, 56px);
    font-weight: 500;
    margin-bottom: 24px;
  }
  .cta-block h2 em { font-style: italic; color: var(--primary-green); font-weight: 400; }

  .cta-block p {
    font-size: 18px;
    color: var(--text-soft);
    margin-bottom: 40px;
    line-height: 1.7;
  }

  /* ---------- Footer ---------- */
  footer {
    background: var(--dark-green);
    color: rgba(247, 244, 239, 0.7);
    padding: 80px 0 40px;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
  }

  footer .logo {
    color: rgba(201, 210, 189, 0.8);
    margin-bottom: 16px;
    font-size: 22px;
    font-weight: 600;
    gap: 12px;
  }
  footer .logo img {
    width: 36px;
    height: 36px;
    filter: brightness(1.5) saturate(0.4) opacity(0.8);
  }

  .footer-tagline {
    font-family: 'Lora', serif;
    font-style: italic;
    font-size: 15px;
    color: rgba(201, 210, 189, 0.8);
    max-width: 320px;
    line-height: 1.6;
  }

  .footer-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    color: rgba(201, 210, 189, 0.8);
    transition: color 0.2s ease;
  }
  .footer-social:hover { color: var(--warm-beige); }

  .footer-col h5 {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--light-green);
    margin-bottom: 20px;
  }

  .footer-col ul { list-style: none; }
  .footer-col li { margin-bottom: 12px; }
  .footer-col a {
    font-size: 14px;
    color: rgba(247, 244, 239, 0.7);
    transition: color 0.2s ease;
  }
  .footer-col a:hover { color: var(--warm-beige); }

  .footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(201, 210, 189, 0.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    flex-wrap: wrap;
    gap: 16px;
  }

  /* ---------- Pricing ---------- */
  .pricing { padding: 120px 0; background: var(--warm-beige); }

  .pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: stretch;
    max-width: 960px;
    margin: 0 auto;
  }

  .pricing-card {
    background: #fff;
    border-radius: 20px;
    padding: 44px 36px;
    border: 1px solid var(--line);
    position: relative;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
  }
  .pricing-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -20px rgba(47, 70, 58, 0.15); }

  .pricing-card.featured {
    background: linear-gradient(145deg, var(--dark-green) 0%, #1f2f28 100%);
    color: var(--warm-beige);
    border-color: transparent;
  }
  .pricing-card.featured h3,
  .pricing-card.featured .pricing-amount { color: var(--warm-beige); }
  .pricing-card.featured .pricing-amount span { color: rgba(247, 244, 239, 0.65); }
  .pricing-card.featured .pricing-subtitle { color: rgba(247, 244, 239, 0.7); }
  .pricing-card.featured .pricing-features li { color: rgba(247, 244, 239, 0.9); border-color: rgba(247, 244, 239, 0.15); }
  .pricing-card.featured .pricing-features svg { color: var(--light-green); }
  .pricing-card.featured .pricing-footnote { color: rgba(247, 244, 239, 0.55); }

  .pricing-badge {
    position: absolute;
    top: 28px; right: 28px;
    background: var(--light-green);
    color: var(--dark-green);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.03em;
    padding: 5px 13px;
    border-radius: 999px;
  }

  .pricing-card h3 { font-size: 24px; font-weight: 600; margin-bottom: 10px; }

  .pricing-amount {
    font-family: 'Lora', serif;
    font-size: 40px;
    font-weight: 600;
    color: var(--dark-green);
    margin-bottom: 14px;
  }
  .pricing-amount span {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-soft);
    margin-left: 6px;
  }

  .pricing-subtitle { font-size: 14.5px; color: var(--text-soft); line-height: 1.6; margin-bottom: 28px; }

  .pricing-features { list-style: none; margin-bottom: 28px; flex: 1; }
  .pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14.5px;
    line-height: 1.5;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
  }
  .pricing-features li:last-child { border-bottom: none; }
  .pricing-features svg { flex-shrink: 0; margin-top: 3px; color: var(--primary-green); }

  .pricing-footnote { font-size: 14.5px; color: var(--text-soft); line-height: 1.6; margin-bottom: 24px; }

  .pricing-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--dark-green);
    color: var(--warm-beige) !important;
    padding: 14px 24px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    transition: background-color 0.25s ease, transform 0.25s ease;
  }
  .pricing-cta:hover { background: #1f2f28; transform: translateY(-1px); }
  .pricing-card.featured .pricing-cta { background: var(--light-green); color: var(--dark-green) !important; }
  .pricing-card.featured .pricing-cta:hover { background: #fff; }

  .pricing-notes {
    max-width: 720px;
    margin: 72px auto 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .pricing-notes h4 { font-size: 15px; font-weight: 600; margin-bottom: 8px; }
  .pricing-notes p { font-size: 14.5px; color: var(--text-soft); line-height: 1.65; }

  /* ---------- Responsive ---------- */
  @media (max-width: 960px) {
    .nav-inner { flex-wrap: wrap; row-gap: 12px; }
    .nav-links {
      order: 3;
      width: 100%;
      justify-content: center;
      gap: 22px;
      font-size: 13px;
      overflow-x: auto;
      white-space: nowrap;
      -ms-overflow-style: none;
      scrollbar-width: none;
      padding-bottom: 2px;
    }
    .nav-links::-webkit-scrollbar { display: none; }
    .nav-links a:hover, .nav-links a.active { color: var(--dark-green); }

    .hero { padding: 140px 0 80px; }
    .hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .hero-visual { height: auto; max-width: 420px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
    .hero-card { position: relative; top: auto; bottom: auto; left: auto; right: auto; }
    .hero-card-main { bottom: auto; }
    .hero-card-main { right: auto; }
    .hero-card-support { left: auto; }

    .problem-grid { grid-template-columns: 1fr; }
    .problem, .how, .features, .partner, .about, .faq, .cta-block { padding: 80px 0; }

    .how-header { grid-template-columns: 1fr; gap: 24px; }
    .steps { grid-template-columns: 1fr 1fr; gap: 40px; }
    .steps::before { display: none; }

    .features-grid { grid-template-columns: 1fr; }
    .feature-large { grid-row: auto; }

    .partner-inner { grid-template-columns: 1fr; gap: 60px; }
    .partner-types { grid-template-columns: 1fr; }

    .values { grid-template-columns: 1fr; gap: 40px; }

    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .footer-bottom { flex-direction: column; text-align: center; }

    .pricing-grid { grid-template-columns: 1fr; max-width: 480px; }
    .pricing-notes { grid-template-columns: 1fr; }

    .founders-inner { grid-template-columns: 1fr; gap: 32px; }
    .founders-photo { max-width: 360px; margin: 0 auto; }
  }

  @media (max-width: 540px) {
    .container { padding: 0 20px; }
    .nav-inner { padding: 16px 20px; }
    .nav-phone { font-size: 12px; }
    .nav-cta { padding: 8px 14px; font-size: 11px; }
    .nav-links { gap: 16px; font-size: 12px; justify-content: flex-start; }
    .steps { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero-visual { max-width: 100%; }
    .hero-card { padding: 18px; border-radius: 16px; }
  }
