  :root {
    --green: #2D6A30;
    --green-mid: #2D6A30;
    --green-light: #e8f2ec;
    --yellow: #F5C000;
    --yellow-soft: #fdf6dc;
    --white: #ffffff;
    --off-white: #fafaf7;
    --text: #1a1a1a;
    --muted: #6b7280;
  }

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

  html { scroll-behavior: smooth; }

  body {
    background: var(--off-white);
    color: var(--text);
    overflow-x: hidden;
  }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; justify-content: space-between; align-items: center;
    padding: 18px 60px;
    background: rgba(26,74,46,0.97);
    backdrop-filter: blur(10px);
  }
  .nav-logo { height: 42px; }
  .nav-links { display: flex; gap: 32px; list-style: none; }
  .nav-links a { color: rgba(255,255,255,0.8); text-decoration: none; font-size: 14px; font-weight: 500; letter-spacing: 0.05em; transition: color .2s; }
  .nav-links a:hover { color: var(--yellow); }
  .nav-cta {
    background: var(--yellow); color: var(--green); font-weight: 700;
    padding: 10px 24px; border-radius: 50px; font-size: 14px;
    text-decoration: none; letter-spacing: 0.02em; transition: transform .2s, box-shadow .2s;
  }
  .nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(240,192,48,0.4); }

  /* HERO */
  .hero {
    min-height: 100vh;
    background: var(--green);
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-top: 10em;
    overflow: hidden;
    position: relative;
  }
  .hero::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 30% 60%, rgba(240,192,48,0.08) 0%, transparent 60%);
  }
  .hero-left {
    display: flex; flex-direction: column; justify-content: center;
    padding: 80px 60px 80px 80px;
    position: relative; z-index: 2;
  }
  .hero-eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(240,192,48,0.15); border: 1px solid rgba(240,192,48,0.3);
    border-radius: 50px; padding: 6px 16px;
    color: var(--yellow); font-size: 12px; font-weight: 600;
    letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 28px;
    width: fit-content;
  }
  .hero-eyebrow::before { content: '●'; font-size: 8px; }
  .hero-title {
    font-size: clamp(48px, 5.5vw, 76px);
    font-weight: 900; line-height: 1.0;
    color: var(--white);
    margin-bottom: 24px;
  }
  .hero-title span { color: var(--yellow); }
  .hero-subtitle {
    font-size: 18px; color: rgba(255,255,255,0.7);
    line-height: 1.7; max-width: 440px; margin-bottom: 40px;
  }
  .hero-stats {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
    background: rgba(255,255,255,0.1); border-radius: 12px;
    overflow: hidden; margin-bottom: 44px; max-width: 440px;
  }
  .hero-stat {
    background: rgba(255,255,255,0.06);
    padding: 18px 20px; text-align: center;
  }
  .hero-stat-num {
    font-size: 28px; font-weight: 700; color: var(--yellow);
    display: block;
  }
  .hero-stat-label { font-size: 11px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.08em; }
  .hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
  .btn-primary {
    background: var(--yellow); color: var(--green);
    padding: 16px 36px; border-radius: 50px;
    font-weight: 700; font-size: 15px; text-decoration: none;
    transition: transform .2s, box-shadow .2s;
    letter-spacing: 0.02em;
  }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(240,192,48,0.4); }
  .btn-secondary {
    border: 1px solid rgba(255,255,255,0.3); color: white;
    padding: 16px 36px; border-radius: 50px;
    font-weight: 500; font-size: 15px; text-decoration: none;
    transition: background .2s, border-color .2s;
    display: flex; align-items: center; gap: 8px;
  }
  .btn-secondary:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.5); }

  .hero-right {
    position: relative; overflow: hidden;
  }
  .hero-right img {
    width: 100%; height: 100%; object-fit: cover;
    object-position: 83% 40%;
    opacity: 0.95;
  }
  .hero-badge {
    position: absolute; bottom: 40px; left: 24px;
    background: var(--yellow); color: var(--green);
    padding: 16px 24px; border-radius: 12px;
    font-weight: 700; font-size: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    max-width: 220px;
  }
  .hero-badge span { display: block; font-size: 11px; font-weight: 500; opacity: 0.7; margin-top: 3px; }

  /* BRAND STRIP */
  .brand-strip {
    background: var(--yellow);
    padding: 16px 0;
    overflow: hidden;
    display: flex;
  }
  .brand-strip-track {
    display: flex; gap: 0; align-items: center;
    animation: marquee 28s linear infinite;
    white-space: nowrap;
  }
  @keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }
  .brand-strip-item {
    display: inline-flex; align-items: center; gap: 10px;
    color: var(--green); font-weight: 600; font-size: 14px;
    padding: 0 36px; white-space: nowrap;
  }
  .brand-strip-item::before { content: '✓'; font-size: 16px; }
  .brand-strip-dot {
    width: 5px; height: 5px; border-radius: 50%;
    background: var(--green); opacity: 0.3; flex-shrink: 0;
  }

  /* SECTION COMMONS */
  section { padding: 100px 80px; }
  .section-label {
    text-transform: uppercase; letter-spacing: 0.15em; font-size: 11px;
    font-weight: 600; color: var(--green-mid); margin-bottom: 12px;
  }
  .section-title {
    font-size: clamp(36px, 4vw, 54px); font-weight: 700;
    line-height: 1.1; margin-bottom: 20px;
  }
  .section-intro { font-size: 17px; color: var(--muted); line-height: 1.8; max-width: 580px; }

  /* WHY NOW */
  .why-now { background: white; }
  .why-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
    align-items: center; margin-top: 60px;
  }
  .why-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .why-card {
    background: white; padding: 28px; border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    transition: transform .2s, box-shadow .2s;
  }
  .why-card:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,0,0,0.08); }
  .why-card-icon { font-size: 28px; margin-bottom: 12px; }
  .why-card h4 { font-size: 16px; font-weight: 600; margin-bottom: 8px; color: var(--green); }
  .why-card p { font-size: 14px; color: var(--muted); line-height: 1.6; }
  .market-highlight { background: linear-gradient(135deg, #1a4a2e 0%, #2d7a50 100%); color: white; padding: 40px; border-radius: 20px; text-align: center; box-shadow: 0 20px 60px rgba(26,74,46,0.2); }
  .market-highlight .big-num {
    font-size: 64px; font-weight: 900; color: var(--yellow);
    display: block; line-height: 1;
  }
  .market-highlight p { font-size: 16px; color: rgba(255,255,255,0.75); margin-top: 10px; }

  /* FORMATS */
  .formats { background: #1e3a2a; color: white; }
  .formats .section-title { color: white; }
  .formats .section-intro { color: rgba(255,255,255,0.65); }
  .formats-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 60px;
  }
  .format-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 24px; overflow: hidden;
    transition: transform .2s;
  }
  .format-card:hover { transform: translateY(-4px); }
  .format-card-image { height: 280px; overflow: hidden; position: relative; }
  .format-card-image img { width: 100%; height: 100%; object-fit: cover; }
  .format-tag {
    position: absolute; top: 16px; left: 16px;
    background: var(--yellow); color: var(--green);
    font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
    text-transform: uppercase; padding: 5px 14px; border-radius: 50px;
  }
  .format-card-body { padding: 32px; }
  .format-card-body h3 {
    
    font-size: 26px; font-weight: 700; margin-bottom: 8px; color: white;
  }
  .format-card-body p { color: rgba(255,255,255,0.6); font-size: 14px; margin-bottom: 24px; line-height: 1.6; }
  .format-total {
    
    font-size: 38px; font-weight: 900; color: var(--yellow);
    margin-bottom: 4px;
  }
  .format-total-label { font-size: 12px; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 20px; }
  .format-breakdown { display: flex; flex-direction: column; gap: 10px; }
  .format-row {
    display: flex; justify-content: space-between; align-items: center;
    padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .format-row:last-child { border-bottom: none; padding-bottom: 0; }
  .format-row span:first-child { font-size: 14px; color: rgba(255,255,255,0.6); }
  .format-row span:last-child { font-size: 14px; font-weight: 600; color: white; }
  .finance-note {
      margin-top: 20px;
      padding: 14px 18px;
      background: rgba(240,192,48,0.12);
      border: 1px solid rgba(240,192,48,0.25);
      border-radius: 10px;
      font-size: 13px;
      color: rgba(255,255,255,0.7);
      display: flex;
      align-items: anchor-center;
  }
  .finance-note strong { color: var(--yellow); }

  /* SUPPORT */
  .support { background: white; }
  .support-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
    margin-top: 60px;
  }
  .support-card {
    padding: 32px 24px;
    border: 1px solid rgba(0,0,0,0.07);
    border-radius: 20px;
    transition: all .25s;
    position: relative; overflow: hidden;
  }
  .support-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 3px; background: var(--green); transform: scaleX(0);
    transition: transform .3s; transform-origin: left;
  }
  .support-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.08); transform: translateY(-3px); }
  .support-card:hover::before { transform: scaleX(1); }
  .support-icon {
    width: 52px; height: 52px; background: var(--green-light);
    border-radius: 14px; display: flex; align-items: center; justify-content: center;
    font-size: 22px; margin-bottom: 18px;
  }
  .support-card h4 { font-size: 16px; font-weight: 700; margin-bottom: 10px; color: var(--green); }
  .support-card p { font-size: 14px; color: var(--muted); line-height: 1.65; }

  /* SOCIAL */
  .social-section { background: white; border-top: 1px solid rgba(0,0,0,0.06); }
  .social-inner {
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  }
  .social-platforms { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
  .social-platform {
    display: flex; align-items: center; gap: 16px;
    background: white; padding: 18px 24px; border-radius: 14px;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
  }
  .social-platform-icon {
    width: 42px; height: 42px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; flex-shrink: 0;
  }
  .ig { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366); }
  .tt { background: #000000; }
  .fb { background: #1877f2; }
  .social-platform-info { flex: 1; }
  .social-platform-info h5 { font-size: 15px; font-weight: 600; }
  .social-platform-info p { font-size: 13px; color: var(--muted); }
  .social-platform-count {
    
    font-size: 22px; font-weight: 700; color: var(--green);
  }
  .social-right {
    background: var(--green); border-radius: 24px; padding: 48px;
    text-align: center; color: white;
  }
  .social-right .big {  font-size: 72px; font-weight: 900; color: var(--yellow); line-height: 1; }
  .social-right h3 { font-size: 22px; font-weight: 600; margin: 12px 0 16px; }
  .social-right p { color: rgba(255,255,255,0.65); font-size: 15px; line-height: 1.7; }
  .social-handle { margin-top: 24px; display: inline-block; background: rgba(240,192,48,0.15); border: 1px solid rgba(240,192,48,0.3); color: var(--yellow); padding: 8px 20px; border-radius: 50px; font-size: 14px; font-weight: 600; }

  /* TESTIMONIAL */
  .testimonials-section { background: #fdf8f0; }
  .testimonial-card {
    max-width: 820px; margin: 0 auto; text-align: center;
  }
  .quote-mark {
    
    font-size: 120px; color: var(--green); opacity: 0.12;
    line-height: 0.6; margin-bottom: 24px;
  }
  .quote-text {  font-size: clamp(22px, 3vw, 32px); line-height: 1.45; color: #2a4a35; font-style: italic; margin-bottom: 36px; }
  .quote-author { display: flex; flex-direction: column; align-items: center; gap: 6px; }
  .quote-author strong { font-size: 16px; font-weight: 700; color: var(--green); }
  .quote-author span { font-size: 14px; color: var(--muted); }
  .quote-stars { color: var(--yellow); font-size: 20px; margin-bottom: 6px; }

  /* STEPS */
  .steps-section { background: white; }
  .steps-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; margin-top: 60px; position: relative; }
  .steps-grid::before {
    content: ''; position: absolute;
    top: 36px; left: 10%; right: 10%; height: 2px;
    background: linear-gradient(90deg, var(--green), var(--yellow));
    z-index: 0;
  }
  .step { text-align: center; position: relative; z-index: 1; padding: 0 16px; }
  .step-num {
    width: 72px; height: 72px; border-radius: 50%;
    background: var(--green); color: white;
    
    font-size: 24px; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px; border: 4px solid var(--off-white);
    box-shadow: 0 4px 20px rgba(26,74,46,0.2);
  }
  .step:nth-child(even) .step-num { background: var(--yellow); color: var(--green); }
  .step h4 { font-size: 15px; font-weight: 700; color: var(--green); margin-bottom: 8px; }
  .step p { font-size: 13px; color: var(--muted); line-height: 1.5; }

  /* FAQ */
  .faq-section {
      background: #fff;
  }
  .faq-grid { max-width: 780px; margin: 60px auto 0; }
  .faq-item {
    border-bottom: 1px solid rgba(0,0,0,0.08);
    padding: 22px 0; cursor: pointer;
  }
  .faq-q {
    display: flex; justify-content: space-between; align-items: center; gap: 20px;
    font-size: 17px; font-weight: 600; color: var(--green);
  }
  .faq-toggle {
    width: 28px; height: 28px; border-radius: 50%;
    background: var(--green-light); display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; font-size: 18px; color: var(--green); transition: background .2s;
  }
  .faq-item.open .faq-toggle { background: var(--yellow); }
  .faq-a { font-size: 15px; color: var(--muted); line-height: 1.7; padding-top: 14px; display: none; }
  .faq-item.open .faq-a { display: block; }

  /* CTA */
  .cta-section { background: linear-gradient(145deg, #1a4a2e 0%, #0f3320 60%, #1a4a2e 100%); color: white; text-align: center; padding: 100px 80px; }
  .cta-section .section-title { color: white; margin: 0 auto 16px; }
  .cta-section p { color: rgba(255,255,255,0.7); font-size: 18px; max-width: 540px; margin: 0 auto 44px; line-height: 1.7; }
  .cta-contact { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; margin-top: 48px; }
  .cta-contact-item { color: rgba(255,255,255,0.7); font-size: 15px; }
  .cta-contact-item a { color: var(--yellow); text-decoration: none; font-weight: 600; }

  /* FOOTER */
  footer {
    background: #111; color: rgba(255,255,255,0.5);
    padding: 32px 80px; display: flex;
    justify-content: space-between; align-items: center;
    font-size: 13px;
  }
  footer a { color: rgba(255,255,255,0.5); text-decoration: none; }



  .gallery-section { padding: 0; background: white; overflow: hidden; }
  .gallery-header { padding: 72px 80px 40px; }
  .gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: 300px 300px;
    gap: 4px;
  }

  .contain-gallery .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-item {
      overflow: hidden;
      position: relative;
      background-color: #000000;
  }
  .gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; display: block; }
  .contain-gallery .gallery-item img {
    object-fit: contain;
  }
  .gallery-item:hover img { transform: scale(1.05); }
  .gallery-item.tall { grid-row: span 2; }
  .gallery-caption {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.65));
    color: white; padding: 24px 18px 14px;
    font-size: 12px; font-weight: 600; letter-spacing: 0.06em;
    opacity: 0; transition: opacity .3s; text-transform: uppercase;
  }
  .gallery-item:hover .gallery-caption { opacity: 1; }
  .gallery-pill {
    position: absolute; top: 12px; left: 12px;
    background: var(--yellow); color: var(--green);
    font-size: 10px; font-weight: 700; letter-spacing: 0.1em;
    text-transform: uppercase; padding: 4px 11px; border-radius: 50px;
  }
  @media (max-width: 900px) {
    .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 200px 200px 200px; }
    .gallery-item.tall { grid-row: span 1; }
    .gallery-header { padding: 48px 28px 28px; }
  }
  @media (max-width: 600px) {
    .gallery-grid { grid-template-columns: 1fr; grid-template-rows: repeat(5, 220px); }
  }

  /* FOOD PARTNERSHIP */
  .food-partnership { background: var(--green-light); padding: 100px 80px; }
  .fp-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
  .fp-items { display: flex; flex-direction: column; gap: 20px; }
  .fp-item { display: flex; align-items: flex-start; gap: 16px; }
  .fp-icon { width: 44px; height: 44px; background: white; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; box-shadow: 0 2px 10px rgba(0,0,0,0.06); }
  .fp-item h5 { font-size: 15px; font-weight: 700; color: var(--green); margin-bottom: 4px; }
  .fp-item p { font-size: 14px; color: var(--muted); line-height: 1.5; }
  .fp-quote-card { background: white; border-radius: 20px; padding: 36px; box-shadow: 0 8px 40px rgba(0,0,0,0.07); }
  .fp-tag { display: inline-block; background: var(--green-light); color: var(--green); font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 5px 14px; border-radius: 50px; margin-bottom: 24px; }
  .fp-stat-row { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 8px; }
  .fp-pct {  font-size: 24px; font-weight: 700; color: var(--green); }
  .fp-label { font-size: 13px; color: var(--muted); }
  .fp-bar { height: 8px; background: #f0f0f0; border-radius: 50px; overflow: hidden; }
  .fp-bar-fill { height: 100%; background: var(--green); border-radius: 50px; }
  @media (max-width: 900px) { .fp-inner { grid-template-columns: 1fr; gap: 40px; } .food-partnership { padding: 60px 28px; } }

  /* CONTACT FORM */
  .contact-form {
    max-width: 600px; margin: 44px auto 0;
    display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  }
  .contact-form input, .contact-form select, .contact-form textarea {
    padding: 14px 18px; border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.08);
    color: white; font-size: 15px;
    outline: none; transition: border-color .2s;
    width: 100%;
  }
  .contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(255,255,255,0.4); }
  .contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--yellow); }
  .contact-form select option { background: var(--green); color: white; }
  .contact-form .full { grid-column: 1 / -1; }
  .contact-form textarea { resize: none; height: 110px; }
  .contact-form .submit-btn {
    grid-column: 1 / -1; background: var(--yellow); color: var(--green);
    border: none; padding: 16px; border-radius: 50px;
    font-weight: 700; font-size: 16px; cursor: pointer;
    transition: transform .2s, box-shadow .2s;
  }
  .contact-form .submit-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(240,192,48,0.4); }
  .form-note { color: rgba(255,255,255,0.4); font-size: 12px; text-align: center; margin-top: 12px; }

  /* SCROLL ANIMATIONS */
  .reveal { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-delay-1 { transition-delay: .1s; }
  .reveal-delay-2 { transition-delay: .2s; }
  .reveal-delay-3 { transition-delay: .3s; }
  .reveal-delay-4 { transition-delay: .4s; }

  /* MOBILE RESPONSIVE */
  @media (max-width: 900px) {
    nav { padding: 16px 24px; }
    .nav-links { display: none; }
    .hero { grid-template-columns: 1fr; min-height: auto; }
    .hero-left { padding: 100px 28px 40px; }
    .hero-right { height: 320px; }
    .hero-badge { left: 16px; bottom: 16px; font-size: 13px; padding: 12px 18px; }
    section { padding: 60px 28px; }
    .why-grid { grid-template-columns: 1fr; gap: 40px; }
    .why-cards { grid-template-columns: 1fr 1fr; }
    .formats-grid { grid-template-columns: 1fr; }
    .support-grid { grid-template-columns: 1fr 1fr; }
    .social-inner { grid-template-columns: 1fr; gap: 40px; }
    .steps-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .steps-grid::before { display: none; }
    .contact-form { grid-template-columns: 1fr; }
    .contact-form .full, .contact-form .submit-btn { grid-column: 1; }
    footer { flex-direction: column; gap: 10px; text-align: center; padding: 24px; }
    .cta-contact { flex-direction: column; gap: 16px; }
    .hero-stats { max-width: 100%; }
  }
  @media (max-width: 600px) {
    .why-cards { grid-template-columns: 1fr; }
    .support-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr; }
    .formats-grid { grid-template-columns: 1fr; }
    .hero-title { font-size: 38px; }
    .section-title { font-size: 30px; }
  }

div#frm_form_3_container {
    background-color: #fdf8f0;
    padding: 2em;
}

.instagram-qr-code {
  margin-top: 1em;
}

img.finance-logo {
    width: 6em;
    height: auto;
    /* float: left; */
    /* clear: both; */
    margin-right: 1em;
}