
    :root {
      --green:       #006B3C;
      --green-dark:  #004D2B;
      --green-light: #00A85A;
      --gold:        #FFB800;
      --gold-dim:    rgba(255,184,0,0.12);
      --dark:        #0D0D0D;
      --dark2:       #161616;
      --off:         #F8F5EE;
      --muted:       rgba(248,245,238,0.5);
      --border:      rgba(255,184,0,0.2);
      --tr:          0.3s ease;
      --radius:      14px;
    }
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body { font-family: 'Syne', sans-serif; background: var(--dark); color: var(--off); overflow-x: hidden; }
    a { text-decoration: none; color: inherit; }

    /* PRELOADER */
    #preloader { position: fixed; inset: 0; background: var(--dark); display: flex; flex-direction: column; align-items: center; justify-content: center; z-index: 9999; transition: opacity 0.5s, visibility 0.5s; }
    #preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
    .pre-logo { font-size: 2rem; font-weight: 800; }
    .pre-logo span { color: var(--gold); }
    .pre-bar { width: 160px; height: 3px; background: var(--dark2); border-radius: 2px; margin-top: 16px; overflow: hidden; }
    .pre-bar::after { content: ''; display: block; height: 100%; width: 0; background: var(--gold); animation: preload 1.3s ease forwards; }
    @keyframes preload { to { width: 100%; } }

    /* NAV */
    .site-nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 1rem 5%; background: rgba(13,13,13,0.92); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }
    .nav-logo { font-size: 1.1rem; font-weight: 800; }
    .nav-logo span { color: var(--gold); }
    .nav-links { display: flex; align-items: center; gap: 2rem; }
    .nav-links a { font-size: 0.85rem; font-weight: 600; color: var(--muted); transition: color var(--tr); }
    .nav-links a:hover { color: var(--gold); }
    .nav-cta { background: var(--gold); color: var(--dark); padding: 0.45rem 1.2rem; border-radius: 40px; font-weight: 700; font-size: 0.85rem; transition: opacity var(--tr); }
    .nav-cta:hover { opacity: 0.85; }
    .lang-toggle { display: flex; gap: 0.25rem; background: rgba(255,184,0,0.08); border-radius: 20px; padding: 3px; }
    .lang-btn { padding: 3px 10px; border: none; border-radius: 16px; font-size: 0.72rem; font-weight: 700; cursor: pointer; background: transparent; color: var(--muted); font-family: 'Syne', sans-serif; transition: all var(--tr); }
    .lang-btn.active { background: var(--gold); color: var(--dark); }
    @media(max-width: 768px) { .nav-links { display: none; } }

    /* HERO */
    .hero { min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; padding-top: 80px; }
    .hero-bg { position: absolute; inset: 0; background: var(--dark); }
    .hero-bg::after { content: ''; position: absolute; top: 0; right: 0; width: 48%; height: 100%; background: var(--green); clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%); }
    .hero-inner { position: relative; z-index: 2; width: 100%; max-width: 1200px; margin: 0 auto; padding: 4rem 5%; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
    .hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--gold-dim); border: 1px solid var(--border); border-radius: 40px; padding: 0.35rem 1rem; font-size: 0.78rem; font-weight: 700; color: var(--gold); margin-bottom: 1.5rem; }
    .hero-h1 { font-size: clamp(2.8rem, 6vw, 5rem); font-weight: 800; line-height: 1.05; margin-bottom: 1.2rem; }
    .hero-h1 em { color: var(--gold); font-style: normal; display: block; }
    .hero-sub { font-size: 1rem; color: var(--muted); line-height: 1.65; margin-bottom: 2rem; max-width: 440px; }
    .hero-cta { display: inline-flex; align-items: center; gap: 0.6rem; background: var(--gold); color: var(--dark); padding: 0.85rem 2rem; border-radius: 40px; font-weight: 800; font-size: 1rem; transition: transform var(--tr), opacity var(--tr); }
    .hero-cta:hover { transform: translateY(-2px); opacity: 0.9; }

    /* floating card */
    .hero-card { background: rgba(13,13,13,0.75); border: 1px solid rgba(0,107,60,0.45); border-radius: 24px; padding: 2rem 2rem 2.2rem; backdrop-filter: blur(12px); animation: floatCard 4s ease-in-out infinite; position: relative; overflow: hidden; }
    .hero-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255,184,0,0.07) 0%, transparent 55%); pointer-events: none; }
    @keyframes floatCard { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-14px)} }
    .card-label { font-size: 0.7rem; font-weight: 700; color: var(--gold); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 1.2rem; }
    .card-items { display: flex; flex-direction: column; gap: 1.1rem; }
    .card-item { display: flex; align-items: center; gap: 1rem; }
    .c-icon { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
    .c-icon.gr { background: rgba(0,107,60,0.3); color: var(--green-light); }
    .c-icon.go { background: rgba(255,184,0,0.15); color: var(--gold); }
    .c-text strong { display: block; font-size: 0.9rem; font-weight: 700; }
    .c-text span { font-size: 0.78rem; color: var(--muted); }
    @media(max-width: 768px) { .hero-inner { grid-template-columns: 1fr; } .hero-bg::after { width: 100%; height: 35%; top: auto; bottom: 0; clip-path: polygon(0 40%, 100% 0, 100% 100%, 0 100%); } .hero-card { display: none; } }

    /* SERVICES */
    .services { padding: 6rem 5%; }
    .srv-inner { max-width: 1100px; margin: 0 auto; }
    .sec-label { font-size: 0.75rem; font-weight: 700; color: var(--gold); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 0.75rem; }
    .sec-title { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; margin-bottom: 3rem; }
    .srv-list { display: flex; flex-direction: column; gap: 1.2rem; }
    .srv-row { display: grid; grid-template-columns: 70px 1fr auto; align-items: center; gap: 2rem; padding: 1.8rem 2rem; background: var(--dark2); border: 1px solid rgba(255,255,255,0.05); border-radius: var(--radius); transition: border-color var(--tr); }
    .srv-row:hover { border-color: var(--border); }
    .srv-num { font-size: 3.5rem; font-weight: 800; color: rgba(255,184,0,0.07); line-height: 1; }
    .srv-icon { width: 50px; height: 50px; border-radius: 13px; background: rgba(0,107,60,0.2); border: 1px solid rgba(0,107,60,0.35); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: var(--gold); flex-shrink: 0; }
    .srv-body { display: flex; align-items: center; gap: 1.2rem; }
    .srv-body h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.25rem; }
    .srv-body p { font-size: 0.83rem; color: var(--muted); line-height: 1.55; }
    .srv-tag { background: var(--gold-dim); color: var(--gold); font-size: 0.72rem; font-weight: 700; padding: 4px 12px; border-radius: 20px; border: 1px solid var(--border); white-space: nowrap; }
    @media(max-width: 600px) { .srv-row { grid-template-columns: 1fr; } .srv-num,.srv-tag { display: none; } }

    /* PLANS */
    .plans { padding: 6rem 5%; background: var(--dark2); }
    .plans-inner { max-width: 680px; margin: 0 auto; text-align: center; }
    .trial-card { background: var(--dark); border: 1px solid var(--border); border-radius: 20px; padding: 2.5rem; margin-top: 3rem; }
    .trial-perks { list-style: none; display: flex; flex-direction: column; gap: 0.8rem; margin-bottom: 2rem; text-align: left; }
    .trial-perks li { font-size: 0.9rem; display: flex; align-items: center; gap: 0.75rem; }
    .trial-perks li i { color: var(--gold); width: 16px; flex-shrink: 0; }
    .email-form { display: flex; gap: 0.75rem; }
    .email-form input { flex: 1; padding: 0.85rem 1.2rem; border-radius: 40px; border: 1px solid rgba(255,255,255,0.12); background: rgba(255,255,255,0.05); color: var(--off); font-family: 'Syne', sans-serif; font-size: 0.9rem; outline: none; transition: border-color var(--tr); }
    .email-form input:focus { border-color: var(--gold); }
    .email-form input::placeholder { color: var(--muted); }
    .email-form button { padding: 0.85rem 1.8rem; border-radius: 40px; border: none; background: var(--gold); color: var(--dark); font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.9rem; cursor: pointer; transition: opacity var(--tr); white-space: nowrap; }
    .email-form button:hover { opacity: 0.88; }
    #subscribe-thanks { display: none; color: var(--green-light); font-size: 0.9rem; margin-top: 1rem; font-weight: 600; }
    @media(max-width: 560px) { .email-form { flex-direction: column; } }

    /* FAQ */
    .faq { padding: 6rem 5%; }
    .faq-inner { max-width: 780px; margin: 0 auto; }
    .faq-list { margin-top: 3rem; display: flex; flex-direction: column; gap: 1rem; }
    details.faq-item { background: var(--dark2); border: 1px solid rgba(255,255,255,0.05); border-radius: var(--radius); overflow: hidden; transition: border-color var(--tr); }
    details.faq-item[open] { border-color: var(--border); }
    details.faq-item summary { padding: 1.2rem 1.5rem; font-weight: 700; font-size: 0.95rem; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
    details.faq-item summary::after { content: '+'; font-size: 1.3rem; color: var(--gold); transition: transform var(--tr); flex-shrink: 0; }
    details.faq-item[open] summary::after { transform: rotate(45deg); }
    .faq-answer { padding: 0 1.5rem 1.2rem; font-size: 0.87rem; color: var(--muted); line-height: 1.65; }

    /* FOOTER */
    .site-footer { background: var(--green-dark); padding: 3rem 5% 2rem; text-align: center; }
    .footer-logo { font-size: 1.4rem; font-weight: 800; margin-bottom: 0.4rem; }
    .footer-logo span { color: var(--gold); }
    .footer-tagline { font-size: 0.85rem; color: rgba(248,245,238,0.5); margin-bottom: 1.5rem; }
    .footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.8rem 2rem; margin-bottom: 1.5rem; }
    .footer-links a { font-size: 0.82rem; color: rgba(248,245,238,0.5); transition: color var(--tr); }
    .footer-links a:hover { color: var(--gold); }
    .footer-divider { height: 1px; background: rgba(255,255,255,0.1); max-width: 400px; margin: 0 auto 1.5rem; }
    .footer-legal { font-size: 0.75rem; color: rgba(248,245,238,0.22); max-width: 700px; margin: 0 auto; line-height: 1.6; }
  
/* Footer contact line (added by _to_php.py) */
.footer-contact { font-size: 0.82rem; opacity: 0.75; margin-bottom: 0.5rem; }
.footer-contact a { text-decoration: underline; }
