*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --green: #2d5a27;
    --green-light: #3d7a34;
    --green-dark: #1a3a16;
    --gold: #c8a050;
    --text: #1a1a1a;
    --text-muted: #555;
    --bg: #fff;
    --bg-light: #f7f5f0;
    --border: #ddd;
  }

  body {
    font-family: Georgia, 'Times New Roman', serif;
    color: var(--text);
    background: var(--bg);
    min-height: 100vh;
  }

  /* ── NAV ── */
  nav {
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 216px;
    position: sticky;
    top: 0;
    z-index: 100;
  }

  .nav-logo {
    cursor: pointer;
  }

  .nav-logo img {
    height: 200px;
    display: block;
  }

  .nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
  }

  .nav-links a {
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 14px;
    color: var(--text-muted);
    text-decoration: none;
    letter-spacing: 0.03em;
    transition: color 0.2s;
  }

  .nav-links a:hover { color: var(--green); }

  /* ── PAGES ── */
  .page { display: none; }
  .page.active { display: block; }

  /* ── HERO ── */
  .hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background-color: #2d5a27;
    background-image: url('hero.jpg');
    background-size: cover;
    background-position: center;
    filter: brightness(1);
  }

  .hero-overlay {
    position: absolute;
    inset: 0;
    background: none;
    z-index: 1;
  }

  .hero-content {
    position: relative;
    z-index: 2;
    padding: 3rem 1.5rem;
    max-width: 700px;
  }

  .hero-headline {
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    text-shadow: 0 2px 12px rgba(0,0,0,0.7), 0 1px 4px rgba(0,0,0,0.5);
  }

  .hero-eyebrow {
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 13px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #4caf50;
    margin-bottom: 1rem;
    text-shadow: 0 1px 6px rgba(0,0,0,0.6);
  }

  .hero-sub {
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 16px;
    color: rgba(255,255,255,0.95);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    text-shadow: 0 1px 6px rgba(0,0,0,0.6);
  }

  .btn-primary {
    display: inline-block;
    background: var(--green);
    color: #fff;
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 14px 32px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s;
  }

  .btn-primary:hover { background: var(--green-light); }

  /* ── FORM SECTION ── */
  .form-section {
    background: var(--bg-light);
    padding: 5rem 1.5rem;
    text-align: center;
  }

  .form-section h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--green-dark);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 0.6rem;
  }

  .form-section .tagline {
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
  }

  .offer-form {
    max-width: 480px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: left;
  }

  .offer-form input,
  .offer-form textarea,
  .offer-form select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border);
    background: #fff;
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 14px;
    color: var(--text);
    outline: none;
    transition: border-color 0.2s;
  }

  .offer-form input:focus,
  .offer-form textarea:focus,
  .offer-form select:focus {
    border-color: var(--green);
  }

  .offer-form textarea { resize: vertical; min-height: 90px; }

  .form-consent {
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 11px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-top: 4px;
  }

  .consent-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    cursor: pointer;
    width: 100%;
  }

  .consent-row input[type="checkbox"] {
    width: 18px;
    height: 18px;
    min-width: 18px;
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: var(--green);
  }

  .consent-row span {
    flex: 1;
  }

  .btn-submit {
    background: var(--green);
    color: #fff;
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 15px;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 4px;
  }

  .btn-submit:hover { background: var(--green-light); }

  /* ── ILLUSTRATION IMAGE ── */
  .illustration-section {
    display: flex;
    justify-content: center;
    padding: 3rem 1.5rem 4rem;
    background: #fff;
  }

  .illustration-section img {
    max-width: 360px;
    width: 100%;
    border-radius: 4px;
  }

  /* ── HOW IT WORKS ── */
  .how-section {
    background: var(--bg-light);
    padding: 5rem 2rem;
    text-align: center;
  }

  .how-section h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--green-dark);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 3.5rem;
  }

  .how-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    max-width: 960px;
    margin: 0 auto;
    flex-wrap: wrap;
  }

  .how-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    min-width: 180px;
    max-width: 220px;
    padding: 0 1rem;
  }

  .how-icon {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
  }

  .how-icon svg {
    width: 52px;
    height: 52px;
    stroke: #fff;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .how-arrow {
    display: flex;
    align-items: center;
    padding-top: 40px;
    color: var(--text);
    flex-shrink: 0;
  }

  .how-arrow svg {
    width: 40px;
    height: 20px;
    stroke: #333;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .how-step h3 {
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 0.6rem;
  }

  .how-step p {
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.65;
  }

  /* ── WHY SELL ── */
  .why-section {
    background: var(--bg-light);
    padding: 4rem 2rem 5rem;
    text-align: center;
    border-top: 1px solid var(--border);
  }

  .why-section h2 {
    font-size: 1.9rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 3rem;
  }

  .why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 960px;
    margin: 0 auto;
    border-left: 1px solid var(--border);
  }

  .why-item {
    padding: 1.5rem 1.5rem 2rem;
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .why-icon {
    width: 72px;
    height: 72px;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .why-icon svg {
    width: 60px;
    height: 60px;
    stroke: var(--green);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .why-item h3 {
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 0.7rem;
  }

  .why-item p {
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.65;
  }

  @media (max-width: 680px) {
    .how-steps { flex-direction: column; align-items: center; }
    .how-arrow { display: none; }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
  }

  /* ── FOOTER ── */
  footer {
    background: var(--green-dark);
    color: rgba(255,255,255,0.6);
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 12px;
    text-align: center;
    padding: 1.2rem;
    letter-spacing: 0.03em;
  }

  /* ── INNER PAGES ── */
  .inner-hero {
    position: relative;
    height: 280px;
    display: flex;
    align-items: flex-end;
    padding-bottom: 2.5rem;
    padding-left: 2rem;
    overflow: hidden;
  }

  .inner-hero-bg {
    position: absolute;
    inset: 0;
    background-color: #2d5a27;
    background-size: cover;
    background-position: center;
    filter: brightness(1);
  }

  .inner-hero-bg.terms-bg {
    background-image: url('hero.jpg');
  }

  .inner-hero-bg.privacy-bg {
    background-image: url('hero.jpg');
  }

  .inner-hero h1 {
    position: relative;
    z-index: 2;
    color: #fff;
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: 0.04em;
  }

  .inner-content {
    max-width: 760px;
    margin: 0 auto;
    padding: 3.5rem 2rem 5rem;
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 15px;
    line-height: 1.85;
    color: var(--text-muted);
  }

  .inner-content p { margin-bottom: 1rem; }

  /* success banner */
  .success-banner {
    display: none;
    background: #e8f5e3;
    border: 1px solid #7bc87a;
    color: #2d5a27;
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 14px;
    padding: 12px 16px;
    border-radius: 2px;
    margin-bottom: 1rem;
  }