    :root {
      --forest-green: #2D5A3D;
      --forest-green-light: #3D7A4F;
      --forest-green-dark: #1E3D2A;
      --gold: #D4A853;
      --gold-light: #E5C078;
      --gold-dark: #B8923F;
      --cream: #F7F4ED;
      --cream-dark: #EBE6DA;
      --charcoal: #2D2D2D;
      --charcoal-light: #4A4A4A;
    }

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

    body {
      font-family: 'Open Sans', sans-serif;
      background: var(--cream);
      color: var(--charcoal);
      line-height: 1.6;
    }

    /* Navigation */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      background: var(--forest-green);
      box-shadow: 0 2px 10px rgba(0,0,0,0.2);
      z-index: 1000;
      padding: 12px 0;
    }

    .nav-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
    }

    .logo-text {
      font-size: 1.4rem;
      font-weight: 700;
      color: #F7F4ED;
      letter-spacing: 2px;
    }

    .logo-accent {
      font-weight: 400;
      background: linear-gradient(135deg, #E5C078 0%, #D4A853 50%, #B8923F 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .nav-links {
      display: flex;
      gap: 28px;
      align-items: center;
    }

    .nav-links a {
      color: rgba(255,255,255,0.8);
      text-decoration: none;
      font-weight: 500;
      font-size: 14px;
      transition: color 0.2s;
    }

    .nav-links a:hover {
      color: var(--gold);
    }
    
    /* Hamburger menu */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 10px;
      z-index: 1001;
    }
    
    .hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: white;
      transition: all 0.3s;
    }
    
    .hamburger.active span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
      opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
      transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .mobile-nav {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: var(--forest-green);
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 30px;
      z-index: 1000;
    }
    
    .mobile-nav.active {
      display: flex;
    }
    
    .mobile-nav a {
      color: white;
      text-decoration: none;
      font-size: 20px;
      font-weight: 500;
    }
    
    .mobile-nav a:hover {
      color: var(--gold);
    }
    
    @media (max-width: 768px) {
      .nav-links {
        display: none;
      }
      
      .hamburger {
        display: flex;
      }
    }

    .btn {
      display: inline-block;
      padding: 12px 24px;
      border-radius: 8px;
      font-weight: 600;
      font-size: 14px;
      text-decoration: none;
      transition: all 0.2s;
      cursor: pointer;
      border: none;
    }

    .btn-gold {
      background: linear-gradient(135deg, var(--gold), var(--gold-light));
      color: var(--forest-green);
    }

    .btn-gold:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 15px rgba(212, 168, 83, 0.4);
    }

    .btn-primary {
      background: var(--forest-green);
      color: white;
    }

    .btn-primary:hover {
      background: var(--forest-green-light);
      transform: translateY(-1px);
    }

    .btn-secondary {
      background: transparent;
      color: var(--forest-green);
      border: 2px solid var(--forest-green);
    }

    .btn-secondary:hover {
      background: var(--forest-green);
      color: white;
    }

    .btn-large {
      padding: 16px 32px;
      font-size: 16px;
    }

    /* Hero Section */
    .hero {
      padding: 140px 24px 80px;
      text-align: center;
      background: linear-gradient(180deg, var(--forest-green) 0%, var(--forest-green-dark) 100%);
      color: white;
    }

    .hero-container {
      max-width: 900px;
      margin: 0 auto;
    }

    .hero-badge {
      display: inline-block;
      background: rgba(212, 168, 83, 0.2);
      color: var(--gold-light);
      padding: 8px 16px;
      border-radius: 50px;
      font-size: 13px;
      font-weight: 600;
      margin-bottom: 24px;
      border: 1px solid rgba(212, 168, 83, 0.3);
    }

    .hero h1 {
      font-size: 48px;
      font-weight: 700;
      line-height: 1.2;
      margin-bottom: 24px;
      color: white;
    }

    .hero h1 span {
      color: var(--gold);
    }

    .hero p {
      font-size: 20px;
      color: rgba(255,255,255,0.8);
      max-width: 600px;
      margin: 0 auto 40px;
    }

    .hero-buttons {
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .hero-image {
      margin-top: 60px;
      border-radius: 16px;
      box-shadow: 0 20px 60px rgba(0,0,0,0.4);
      border: 1px solid rgba(255,255,255,0.1);
    }

    .screenshot-placeholder {
      background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
      height: 450px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--charcoal-light);
      font-size: 18px;
    }

    /* Features Section */
    .features {
      padding: 100px 24px;
      background: white;
    }

    .section-container {
      max-width: 1200px;
      margin: 0 auto;
    }

    .section-header {
      text-align: center;
      margin-bottom: 60px;
    }

    .section-header h2 {
      font-size: 36px;
      margin-bottom: 16px;
      color: var(--forest-green);
    }

    .section-header p {
      font-size: 18px;
      color: var(--charcoal-light);
      max-width: 600px;
      margin: 0 auto;
    }

    /* Feature Rows - Alternating Layout */
    .feature-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
      margin-bottom: 80px;
    }
    
    .feature-row:last-child {
      margin-bottom: 0;
    }
    
    .feature-row.reverse {
      direction: rtl;
    }
    
    .feature-row.reverse > * {
      direction: ltr;
    }
    
    .feature-slideshow {
      position: relative;
    }
    
    .slideshow-container {
      position: relative;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    }
    
    .slideshow-container img.slide {
      width: 100%;
      height: auto;
      position: absolute;
      top: 0;
      left: 0;
      opacity: 0;
      transition: opacity 1.5s ease-in-out;
      border-radius: 12px;
    }
    
    .slideshow-container img.slide:first-child {
      position: relative;
    }
    
    .slideshow-container img.slide.active {
      opacity: 1;
      z-index: 1;
    }
    
    .slideshow-dots {
      position: absolute;
      bottom: 15px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 8px;
    }
    
    .slideshow-container.single .slideshow-dots {
      display: none;
    }
    
    .slideshow-dots .dot {
      width: 10px;
      height: 10px;
      background: rgba(255,255,255,0.5);
      border-radius: 50%;
      cursor: pointer;
      transition: all 0.2s;
    }
    
    .slideshow-dots .dot.active {
      background: var(--gold);
      transform: scale(1.2);
    }
    
    .slideshow-dots .dot:hover {
      background: rgba(255,255,255,0.8);
    }
    
    .feature-content h3 {
      font-size: 28px;
      font-weight: 700;
      margin-bottom: 16px;
      color: var(--forest-green);
    }
    
    .feature-content p {
      font-size: 16px;
      color: var(--charcoal-light);
      line-height: 1.8;
      margin-bottom: 20px;
    }
    
    .feature-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    
    .feature-list li {
      position: relative;
      padding-left: 28px;
      margin-bottom: 10px;
      font-size: 15px;
      color: var(--charcoal);
    }
    
    .feature-list li::before {
      content: "✓";
      position: absolute;
      left: 0;
      color: var(--gold);
      font-weight: bold;
    }
    
    /* Fade up animation */
    .fade-up {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }
    
    .fade-up.visible {
      opacity: 1;
      transform: translateY(0);
    }
    
    @media (max-width: 868px) {
      .feature-row {
        grid-template-columns: 1fr;
        gap: 30px;
      }
      
      .feature-row.reverse {
        direction: ltr;
      }
      
      .feature-content h3 {
        font-size: 24px;
      }
    }

    .coming-soon {
      display: inline-block;
      background: var(--gold);
      color: var(--forest-green);
      font-size: 10px;
      font-weight: 700;
      padding: 2px 8px;
      border-radius: 10px;
      margin-left: 8px;
      vertical-align: middle;
    }

    /* Privacy Section */
    .privacy {
      padding: 80px 24px;
      background: var(--forest-green);
      color: white;
    }

    .privacy-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 40px;
      max-width: 1000px;
      margin: 0 auto;
    }

    .privacy-item {
      text-align: center;
    }

    .privacy-icon {
      font-size: 48px;
      margin-bottom: 16px;
    }

    .privacy-item h3 {
      font-size: 20px;
      margin-bottom: 10px;
      color: var(--gold);
    }

    .privacy-item p {
      font-size: 14px;
      color: rgba(255,255,255,0.8);
      line-height: 1.7;
    }

    /* How It Works */
    .how-it-works {
      padding: 100px 24px;
      background: var(--cream);
    }

    .steps {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 40px;
      margin-top: 60px;
    }

    .step {
      text-align: center;
    }

    .step-number {
      width: 60px;
      height: 60px;
      background: var(--forest-green);
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      font-weight: 700;
      margin: 0 auto 24px;
    }

    .step h3 {
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 12px;
      color: var(--forest-green);
    }

    .step p {
      font-size: 15px;
      color: var(--charcoal-light);
      line-height: 1.7;
    }

    /* Pricing */
    .pricing {
      padding: 100px 24px;
      background: white;
    }

    .pricing-cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      max-width: 1000px;
      margin: 0 auto;
      align-items: start;
    }
    
    .pricing-cards.four-tier {
      grid-template-columns: repeat(4, 1fr);
      max-width: 1200px;
    }

    .pricing-card {
      background: var(--cream);
      border-radius: 16px;
      padding: 32px;
      text-align: center;
      position: relative;
      border: 2px solid transparent;
      transition: all 0.2s;
    }

    .pricing-card:hover {
      border-color: var(--forest-green);
    }

    .pricing-card.featured {
      background: var(--forest-green);
      color: white;
      transform: scale(1.05);
      box-shadow: 0 10px 40px rgba(30, 58, 95, 0.3);
    }

    .pricing-card.featured:hover {
      border-color: var(--gold);
    }

    .pricing-badge {
      position: absolute;
      top: -12px;
      left: 50%;
      transform: translateX(-50%);
      background: linear-gradient(135deg, var(--gold), var(--gold-light));
      color: var(--forest-green);
      padding: 6px 16px;
      border-radius: 20px;
      font-size: 12px;
      font-weight: 700;
    }

    .pricing-period {
      font-size: 14px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 8px;
      color: var(--charcoal-light);
    }

    .pricing-card.featured .pricing-period {
      color: rgba(255,255,255,0.7);
    }

    .pricing-price {
      font-size: 48px;
      font-weight: 700;
      margin-bottom: 8px;
      color: var(--forest-green);
    }

    .pricing-card.featured .pricing-price {
      color: white;
    }

    .pricing-price span {
      font-size: 18px;
      font-weight: 400;
    }

    .pricing-subtitle {
      font-size: 13px;
      color: var(--charcoal-light);
      margin-bottom: 24px;
    }

    .pricing-card.featured .pricing-subtitle {
      color: rgba(255,255,255,0.7);
    }

    .pricing-features {
      list-style: none;
      text-align: left;
      margin-bottom: 24px;
    }

    .pricing-features li {
      padding: 8px 0;
      font-size: 14px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .pricing-features li::before {
      content: "✓";
      color: var(--gold);
      font-weight: bold;
    }

    .pricing-features li.limited::before {
      content: "○";
      color: var(--charcoal-light);
    }

    .pricing-card.featured .pricing-features li {
      color: rgba(255,255,255,0.9);
    }

    .pricing-card .btn {
      width: 100%;
    }

    .pricing-card.featured .btn-gold {
      background: white;
      color: var(--forest-green);
    }

    /* CTA */
    .cta {
      padding: 100px 24px;
      background: linear-gradient(135deg, var(--forest-green) 0%, var(--forest-green-dark) 100%);
      text-align: center;
      color: white;
    }

    .cta h2 {
      font-size: 36px;
      margin-bottom: 16px;
    }

    .cta p {
      font-size: 18px;
      color: rgba(255,255,255,0.8);
      margin-bottom: 32px;
    }

    /* Footer */
    footer {
      background: var(--charcoal);
      color: white;
      padding: 60px 24px 30px;
    }

    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
    }

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

    .footer-brand .logo {
      margin-bottom: 16px;
    }

    .footer-brand p {
      color: rgba(255,255,255,0.6);
      font-size: 14px;
      line-height: 1.7;
    }

    .footer-links h4 {
      font-size: 13px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 20px;
      color: var(--gold);
    }

    .footer-links a {
      display: block;
      color: rgba(255,255,255,0.6);
      text-decoration: none;
      font-size: 14px;
      margin-bottom: 12px;
      transition: color 0.2s;
    }

    .footer-links a:hover {
      color: white;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.1);
      padding-top: 30px;
      text-align: center;
      color: rgba(255,255,255,0.4);
      font-size: 13px;
    }

    /* Responsive */
    @media (max-width: 1100px) {
      .pricing-cards.four-tier {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    
    @media (max-width: 968px) {
      .features-grid,
      .steps,
      .pricing-cards,
      .privacy-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .pricing-card.featured {
        transform: none;
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }

      .hero h1 {
        font-size: 36px;
      }
    }

    @media (max-width: 640px) {
      .nav-links a:not(.btn) {
        display: none;
      }

      .features-grid,
      .steps,
      .pricing-cards,
      .pricing-cards.four-tier,
      .privacy-grid {
        grid-template-columns: 1fr;
      }

      .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
      }

      .hero h1 {
        font-size: 28px;
      }

      .hero p {
        font-size: 16px;
      }

      .section-header h2 {
        font-size: 28px;
      }
    }
