
    :root {
      --orange:      #F04E23;
      --orange-dark: #C93B16;
      --orange-bg:   #FFF4F0;
      --dark:        #111111;
      --mid:         #555555;
      --light:       #F7F5F2;
      --white:       #FFFFFF;
      --border:      rgba(0,0,0,0.09);
      --radius:      14px;
      --transition:  0.3s ease;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Plus Jakarta Sans', sans-serif;
      background: var(--white); color: var(--dark);
      line-height: 1.6; overflow-x: hidden;
    }
    img { max-width: 100%; height: auto; display: block; }
    a { text-decoration: none; color: inherit; }

    /* PRELOADER */
    #preloader {
      position: fixed; inset: 0; background: var(--dark);
      display: flex; align-items: center; justify-content: center;
      z-index: 9999; transition: opacity 0.5s ease;
    }
    #preloader.hidden { opacity: 0; pointer-events: none; }
    .preloader-bar {
      width: 120px; height: 3px; background: rgba(255,255,255,0.15); border-radius: 3px; overflow: hidden;
    }
    .preloader-bar::after {
      content: ''; display: block; width: 40%; height: 100%;
      background: var(--orange); border-radius: 3px;
      animation: load 0.8s ease infinite alternate;
    }
    @keyframes load { from { transform: translateX(0); } to { transform: translateX(200%); } }

    /* HEADER */
    .site-header {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      height: 70px; padding: 0 2.5rem;
      display: flex; align-items: center; justify-content: space-between;
      background: var(--white);
      border-bottom: 2px solid var(--dark);
      transition: box-shadow var(--transition);
    }
    .site-header.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.08); }

    .logo-text {
      font-size: 1.2rem; font-weight: 800; color: var(--dark);
      letter-spacing: -0.5px;
    }
    .logo-text span { color: var(--orange); }

    .header-nav { display: flex; gap: 2.5rem; align-items: center; }
    .header-nav a {
      font-size: 0.88rem; font-weight: 600; color: var(--mid);
      transition: color var(--transition); position: relative;
    }
    .header-nav a::after {
      content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
      height: 2px; background: var(--orange);
      transform: scaleX(0); transition: transform var(--transition);
    }
    .header-nav a:hover { color: var(--dark); }
    .header-nav a:hover::after { transform: scaleX(1); }

    .nav-cta {
      padding: 9px 22px;
      background: var(--dark); color: var(--white);
      border-radius: 6px; font-size: 0.85rem; font-weight: 700;
      transition: all var(--transition);
    }
    .nav-cta:hover { background: var(--orange); }
    .nav-cta::after { display: none !important; }

    .nav-toggle {
      display: none; flex-direction: column; gap: 5px;
      cursor: pointer; background: none; border: none;
    }
    .nav-toggle span { width: 22px; height: 2px; background: var(--dark); display: block; }

    /* HERO — SPLIT SCREEN */
    .hero {
      min-height: 100vh;
      display: grid; grid-template-columns: 1fr 1fr;
      padding-top: 70px;
    }
    .hero-left {
      background: var(--dark); color: var(--white);
      display: flex; flex-direction: column; justify-content: center;
      padding: 5rem 4rem 5rem 5rem;
    }
    .hero-kicker {
      font-size: 0.75rem; font-weight: 700; letter-spacing: 4px;
      text-transform: uppercase; color: var(--orange); margin-bottom: 1.5rem;
    }
    .hero h1 {
      font-size: clamp(2.8rem, 5vw, 5rem);
      font-weight: 800; line-height: 1.0;
      letter-spacing: -2px; margin-bottom: 1.5rem;
    }
    .hero h1 em { color: var(--orange); font-style: normal; }
    .hero-desc {
      font-size: 1rem; color: rgba(255,255,255,0.6);
      max-width: 380px; margin-bottom: 2.5rem; line-height: 1.7;
    }
    .hero-cta-group { display: flex; gap: 1rem; flex-wrap: wrap; }
    .btn-orange {
      padding: 14px 30px;
      background: var(--orange); color: var(--white);
      border: 2px solid var(--orange);
      border-radius: 6px; font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 700; font-size: 0.95rem;
      cursor: pointer; transition: all var(--transition);
    }
    .btn-orange:hover { background: var(--orange-dark); border-color: var(--orange-dark); }
    .btn-outline-white {
      padding: 14px 30px;
      background: transparent; color: var(--white);
      border: 2px solid rgba(255,255,255,0.25);
      border-radius: 6px; font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 600; font-size: 0.95rem;
      cursor: pointer; transition: all var(--transition);
    }
    .btn-outline-white:hover { border-color: rgba(255,255,255,0.6); }

    .hero-right {
      background: var(--orange);
      display: flex; flex-direction: column;
      align-items: flex-start; justify-content: flex-end;
      padding: 4rem;
      position: relative; overflow: hidden;
    }
    .hero-right-img {
      position: absolute; inset: 0;
      width: 100%; height: 100%;
      object-fit: cover;
      mix-blend-mode: multiply;
      opacity: 0.9;
    }
    .hero-right-content { position: relative; z-index: 1; }
    .hero-right h2 {
      font-size: clamp(1.6rem, 3vw, 2.8rem);
      font-weight: 800; color: var(--white);
      line-height: 1.1; letter-spacing: -1px; margin-bottom: 1rem;
    }
    .hero-tags { display: flex; flex-wrap: wrap; gap: 0.6rem; }
    .hero-tag {
      padding: 6px 14px; background: rgba(255,255,255,0.2);
      border: 1px solid rgba(255,255,255,0.3);
      border-radius: 50px; color: white;
      font-size: 0.82rem; font-weight: 600;
    }

    /* SERVICES — EDITORIAL NUMBERED */
    .section { padding: 80px 2.5rem; }
    .section-inner { max-width: 1100px; margin: 0 auto; }

    .services { background: var(--light); }
    .services-header {
      display: flex; align-items: flex-end; justify-content: space-between;
      margin-bottom: 3.5rem; gap: 2rem;
    }
    .services-eyebrow {
      font-size: 0.72rem; font-weight: 700; letter-spacing: 4px;
      text-transform: uppercase; color: var(--orange); margin-bottom: 0.6rem;
    }
    .services-title {
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 800; line-height: 1.1; letter-spacing: -1.5px;
    }
    .services-desc {
      font-size: 0.95rem; color: var(--mid); max-width: 300px; line-height: 1.7;
    }

    .services-list { display: flex; flex-direction: column; gap: 0; }
    .service-row {
      display: grid; grid-template-columns: 80px 60px 1fr auto;
      align-items: center; gap: 1.5rem;
      padding: 1.8rem 0; border-top: 1px solid var(--border);
      transition: background var(--transition);
      opacity: 0; transform: translateX(-20px);
    }
    .service-row:last-child { border-bottom: 1px solid var(--border); }
    .service-row.visible { animation: slideIn 0.5s forwards; }
    @keyframes slideIn { to { opacity: 1; transform: translateX(0); } }
    .service-row:hover { background: rgba(240,78,35,0.04); margin: 0 -1.5rem; padding-left: 1.5rem; padding-right: 1.5rem; }

    .row-num {
      font-size: 2.5rem; font-weight: 800;
      color: rgba(0,0,0,0.07); line-height: 1;
      font-variant-numeric: tabular-nums;
    }
    .row-icon {
      width: 52px; height: 52px;
      background: var(--dark); border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      color: var(--orange); font-size: 1.3rem;
    }
    .row-content h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.3rem; }
    .row-content p { font-size: 0.9rem; color: var(--mid); line-height: 1.6; }
    .row-check {
      width: 36px; height: 36px;
      border: 1.5px solid rgba(240,78,35,0.25); border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      color: rgba(240,78,35,0.4); font-size: 0.7rem;
    }

    /* PLANS */
    .plans { background: var(--white); }
    .plans-inner {
      display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
    }
    .plans-text .services-eyebrow { margin-bottom: 0.6rem; }
    .plans-heading {
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 800; line-height: 1.1;
      letter-spacing: -1.5px; margin-bottom: 1rem;
    }
    .plans-heading em { color: var(--orange); font-style: normal; }
    .plans-sub { font-size: 1rem; color: var(--mid); margin-bottom: 1.5rem; line-height: 1.7; }
    .plans-perks { list-style: none; margin-bottom: 2rem; }
    .plans-perks li {
      display: flex; align-items: center; gap: 12px;
      padding: 10px 0; font-size: 0.95rem; color: var(--mid);
      border-bottom: 1px solid var(--border);
    }
    .plans-perks li:last-child { border-bottom: none; }
    .plans-perks li i { color: var(--orange); width: 18px; flex-shrink: 0; }

    .email-form { display: flex; box-shadow: 0 4px 20px rgba(0,0,0,0.08); border-radius: 8px; overflow: hidden; }
    .email-form input {
      flex: 1; padding: 14px 18px;
      border: none; outline: none;
      font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.9rem; color: var(--dark);
    }
    .email-form button {
      padding: 14px 24px;
      background: var(--orange); color: white; border: none;
      font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 0.9rem;
      cursor: pointer; transition: background var(--transition); white-space: nowrap;
    }
    .email-form button:hover { background: var(--orange-dark); }
    #subscribe-thanks {
      display: none; margin-top: 1rem;
      color: var(--orange); font-weight: 700; font-size: 0.95rem;
    }

    .plans-visual {
      background: var(--dark); border-radius: 20px;
      padding: 2.5rem; position: relative; overflow: hidden;
    }
    .plans-visual::before {
      content: ''; position: absolute; width: 300px; height: 300px;
      background: radial-gradient(circle, rgba(240,78,35,0.25) 0%, transparent 70%);
      top: -80px; right: -80px;
    }
    .plans-visual-title {
      font-size: 0.72rem; font-weight: 700; letter-spacing: 3px;
      text-transform: uppercase; color: var(--orange); margin-bottom: 1.5rem; position: relative;
    }
    .plans-feature-list { list-style: none; position: relative; }
    .plans-feature-list li {
      display: flex; align-items: center; gap: 14px;
      padding: 14px 0; color: rgba(255,255,255,0.85);
      font-size: 0.95rem; font-weight: 500;
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .plans-feature-list li:last-child { border-bottom: none; }
    .feat-dot {
      width: 8px; height: 8px; border-radius: 50%;
      background: var(--orange); flex-shrink: 0;
    }

    /* FAQ */
    .faq { background: var(--light); }
    .faq-header { margin-bottom: 3rem; }
    .faq-eyebrow {
      font-size: 0.72rem; font-weight: 700; letter-spacing: 4px;
      text-transform: uppercase; color: var(--orange); margin-bottom: 0.6rem;
    }
    .faq-title {
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 800; letter-spacing: -1.5px; line-height: 1.1;
    }
    .faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
    .faq-item {
      background: var(--white);
      border: 2px solid transparent;
      border-radius: var(--radius); overflow: hidden;
      transition: border-color var(--transition);
    }
    .faq-item[open] { border-color: var(--orange); }
    .faq-item summary {
      padding: 1.2rem 1.4rem; font-weight: 700; font-size: 0.95rem;
      cursor: pointer; list-style: none;
      display: flex; justify-content: space-between; align-items: center; gap: 1rem;
    }
    .faq-item summary::-webkit-details-marker { display: none; }
    .faq-item summary::after {
      content: '\f067'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
      font-size: 0.75rem; color: var(--orange); flex-shrink: 0;
    }
    .faq-item[open] summary::after { content: '\f068'; }
    .faq-answer { padding: 0 1.4rem 1.2rem; color: var(--mid); font-size: 0.9rem; line-height: 1.7; }

    /* FOOTER */
    .site-footer {
      background: var(--dark); color: rgba(255,255,255,0.6);
      padding: 3.5rem 2.5rem;
    }
    .footer-inner {
      max-width: 1100px; margin: 0 auto;
      display: flex; align-items: center; justify-content: space-between;
      flex-wrap: wrap; gap: 2rem;
    }
    .footer-brand .footer-logo {
      font-size: 1.4rem; font-weight: 800; color: var(--white);
      letter-spacing: -0.5px; margin-bottom: 0.3rem;
    }
    .footer-brand .footer-logo span { color: var(--orange); }
    .footer-brand p { font-size: 0.82rem; }
    .footer-links {
      display: flex; flex-direction: column; gap: 0.5rem;
    }
    .footer-links a { font-size: 0.82rem; transition: color var(--transition); }
    .footer-links a:hover { color: var(--orange); }
    .footer-bottom {
      max-width: 1100px; margin: 2rem auto 0;
      border-top: 1px solid rgba(255,255,255,0.08);
      padding-top: 1.5rem;
      font-size: 0.76rem; color: rgba(255,255,255,0.25); line-height: 1.6;
    }

    /* RESPONSIVE */
    @media (max-width: 900px) {
      .hero { grid-template-columns: 1fr; }
      .hero-left { padding: 4rem 2rem; }
      .hero-right { min-height: 280px; padding: 3rem 2rem; }
      .plans-inner { grid-template-columns: 1fr; }
      .plans-visual { display: none; }
      .services-header { flex-direction: column; align-items: flex-start; }
      .service-row { grid-template-columns: 50px 50px 1fr; }
      .row-check { display: none; }
      .faq-grid { grid-template-columns: 1fr; }
      .footer-inner { flex-direction: column; gap: 1.5rem; }
    }
    @media (max-width: 768px) {
      .header-nav {
        display: none; flex-direction: column; gap: 0;
        position: fixed; top: 70px; left: 0; right: 0;
        background: var(--white);
        border-bottom: 2px solid var(--dark);
        padding: 1rem 0;
      }
      .header-nav.open { display: flex; }
      .header-nav a, .nav-cta { padding: 0.8rem 2rem; border-radius: 0; }
      .nav-toggle { display: flex; }
    }
    @media (max-width: 480px) {
      .email-form { flex-direction: column; border-radius: 8px; }
      .email-form input { border-radius: 8px 8px 0 0; border-bottom: 1px solid var(--border); }
      .email-form button { border-radius: 0 0 8px 8px; }
      .hero-cta-group { flex-direction: column; }
      .service-row { grid-template-columns: 40px 1fr; gap: 1rem; }
      .row-num { display: none; }
    }
  
/* 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; }
