
    /* ===== CSS VARIABLES ===== */
    :root {
      --navy:        #0B1D5E;
      --blue:        #1535A0;
      --gold:        #F5A623;
      --gold-light:  #FFE082;
      --bg-light:    #F0F4FF;
      --text-dark:   #1a1a2e;
      --text-mid:    #4a4a6a;
      --white:       #ffffff;
      --radius:      12px;
      --shadow:      0 8px 32px rgba(11,29,94,0.10);
      --transition:  0.3s ease;
    }

    /* ===== RESET ===== */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Cairo', sans-serif;
      color: var(--text-dark);
      background: var(--white);
      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(--navy);
      display: flex; align-items: center; justify-content: center;
      z-index: 9999;
      transition: opacity 0.5s ease;
    }
    #preloader.hidden { opacity: 0; pointer-events: none; }
    .preloader-logo {
      font-size: 2rem; font-weight: 900; color: var(--gold);
      animation: pulse 1s infinite alternate;
    }
    @keyframes pulse { from { opacity: 0.4; } to { opacity: 1; } }

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

    .header-logo {
      display: flex; align-items: center; gap: 10px;
    }
    .header-logo img { height: 36px; width: auto; }
    .logo-text {
      font-size: 1.3rem; font-weight: 900; color: var(--white);
      letter-spacing: -0.5px;
    }
    .logo-text span { color: var(--gold); }

    .header-nav {
      display: flex; align-items: center; gap: 2rem;
    }
    .header-nav a {
      color: rgba(255,255,255,0.85); font-weight: 600;
      font-size: 0.9rem; transition: color var(--transition);
    }
    .header-nav a:hover { color: var(--gold); }

    .header-right { display: flex; align-items: center; gap: 1rem; }

    /* Language switcher */
    .lang-switcher {
      display: flex; align-items: center;
      background: rgba(255,255,255,0.12);
      border: 1px solid rgba(255,255,255,0.25);
      border-radius: 50px; overflow: hidden;
    }
    .lang-btn {
      padding: 5px 14px; font-size: 0.8rem; font-weight: 700;
      font-family: 'Cairo', sans-serif;
      color: rgba(255,255,255,0.7);
      cursor: pointer; border: none; background: transparent;
      transition: all var(--transition);
    }
    .lang-btn.active { background: var(--gold); color: var(--navy); border-radius: 50px; }

    /* Mobile toggle */
    .nav-toggle {
      display: none; flex-direction: column; gap: 5px;
      cursor: pointer; background: none; border: none; padding: 4px;
    }
    .nav-toggle span { width: 24px; height: 2px; background: white; display: block; }

    /* ===== HERO ===== */
    .hero {
      position: relative; min-height: 100vh;
      display: flex; align-items: center; justify-content: center;
      text-align: center;
      background: url('https://online2access.com/assets/sites/online2access/images/intro_bg3.png') center/cover no-repeat;
    }
    .hero::before {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(135deg, #0B1D5E 0%, #1535A0 100%);
      mix-blend-mode: multiply;
    }
    .hero-content {
      position: relative; z-index: 1;
      max-width: 800px; padding: 0 2rem; padding-top: 70px;
    }
    .hero-badge {
      display: inline-block;
      background: rgba(245,166,35,0.2);
      border: 1px solid rgba(245,166,35,0.5);
      color: var(--gold-light);
      font-size: 0.78rem; font-weight: 700; letter-spacing: 2px;
      text-transform: uppercase; padding: 6px 18px;
      border-radius: 50px; margin-bottom: 1.5rem;
    }
    .hero h1 {
      font-size: clamp(2.4rem, 6vw, 5rem);
      font-weight: 900; color: var(--white);
      line-height: 1.1; margin-bottom: 1.5rem;
    }
    .hero h1 span { color: var(--gold); }
    .hero p {
      font-size: clamp(1rem, 2vw, 1.2rem);
      color: rgba(255,255,255,0.8);
      max-width: 560px; margin: 0 auto 2.5rem;
    }
    .btn-primary {
      display: inline-block;
      background: var(--gold); color: var(--navy);
      font-weight: 700; font-family: 'Cairo', sans-serif;
      font-size: 1rem; padding: 14px 38px;
      border-radius: 50px; border: none; cursor: pointer;
      box-shadow: 0 4px 20px rgba(245,166,35,0.45);
      transition: all var(--transition);
    }
    .btn-primary:hover {
      background: var(--gold-light); transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(245,166,35,0.55);
    }
    .scroll-indicator {
      position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
      color: rgba(255,255,255,0.45); animation: bounce 2s infinite;
    }
    .scroll-indicator i { font-size: 1.4rem; }
    @keyframes bounce {
      0%, 100% { transform: translateX(-50%) translateY(0); }
      50%       { transform: translateX(-50%) translateY(8px); }
    }

    /* ===== SECTIONS COMMON ===== */
    .section { padding: 90px 2rem; }
    .section-inner { max-width: 1100px; margin: 0 auto; }
    .section-tag {
      display: inline-block;
      background: var(--gold); color: var(--navy);
      font-size: 0.68rem; font-weight: 800; letter-spacing: 3px;
      text-transform: uppercase; padding: 5px 16px; border-radius: 50px;
      margin-bottom: 1rem;
    }
    .section-title {
      font-size: clamp(1.8rem, 4vw, 2.8rem);
      font-weight: 900; color: var(--navy);
      margin-bottom: 1rem; line-height: 1.2;
    }
    .section-subtitle {
      font-size: 1.05rem; color: var(--text-mid);
      max-width: 580px; margin: 0 auto 3.5rem; line-height: 1.7;
    }
    .text-center { text-align: center; }

    /* ===== SERVICES ===== */
    .services { background: var(--bg-light); }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.5rem;
    }
    .service-card {
      background: var(--white); border-radius: var(--radius);
      padding: 2rem 1.5rem; text-align: center;
      box-shadow: var(--shadow);
      transition: transform var(--transition), box-shadow var(--transition);
      opacity: 0; transform: translateY(30px);
    }
    .service-card.visible { animation: fadeUp 0.5s forwards; }
    .service-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 16px 40px rgba(11,29,94,0.15);
    }
    @keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
    .service-icon {
      width: 72px; height: 72px;
      background: linear-gradient(135deg, var(--navy), var(--blue));
      border-radius: 18px;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 1.2rem;
    }
    .service-icon i { font-size: 1.8rem; color: var(--gold); }
    .service-card h3 {
      font-size: 0.9rem; font-weight: 800;
      letter-spacing: 2px; text-transform: uppercase;
      color: var(--navy); margin-bottom: 0.7rem;
    }
    .service-card p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.65; }

    /* ===== PLANS ===== */
    .plans { background: var(--white); }
    .plans-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 4rem; align-items: center;
    }
    .plans-text .section-subtitle { margin-left: 0; margin-right: 0; max-width: 100%; }
    .plans-perks { list-style: none; margin: 1.5rem 0 2rem; }
    .plans-perks li {
      display: flex; align-items: center; gap: 12px;
      padding: 10px 0; font-size: 0.95rem; color: var(--text-mid);
      border-bottom: 1px solid rgba(11,29,94,0.07);
    }
    .plans-perks li:last-child { border-bottom: none; }
    .plans-perks li i { color: var(--gold); font-size: 1.1rem; width: 20px; flex-shrink: 0; }

    .email-form { display: flex; gap: 0; margin-top: 2rem; }
    .email-form input {
      flex: 1; padding: 13px 18px;
      border: 2px solid rgba(11,29,94,0.15); border-right: none;
      border-radius: 50px 0 0 50px;
      font-family: 'Cairo', sans-serif; font-size: 0.9rem;
      outline: none; transition: border var(--transition);
    }
    .email-form input:focus { border-color: var(--blue); }
    .email-form button {
      padding: 13px 24px;
      background: var(--navy); color: var(--white);
      border: none; border-radius: 0 50px 50px 0;
      font-family: 'Cairo', sans-serif; font-weight: 700; font-size: 0.9rem;
      cursor: pointer; transition: background var(--transition);
    }
    .email-form button:hover { background: var(--blue); }
    /* RTL email form flip */
    [dir="rtl"] .email-form input {
      border-right: 2px solid rgba(11,29,94,0.15);
      border-left: none;
      border-radius: 0 50px 50px 0;
    }
    [dir="rtl"] .email-form button { border-radius: 50px 0 0 50px; }

    #subscribe-thanks {
      display: none; margin-top: 1rem;
      color: var(--blue); font-weight: 600; font-size: 0.95rem;
    }
    .plans-image {
      position: relative;
      border-radius: 20px; overflow: hidden;
    }
    .plans-image::after {
      content: '';
      position: absolute; top: 0; left: 0; bottom: 0;
      width: 50%;
      background: linear-gradient(to right, #ffffff 0%, rgba(255,255,255,0) 100%);
      pointer-events: none;
    }
    .plans-image img { width: 100%; height: auto; display: block; }

    /* ===== FAQ ===== */
    .faq { background: var(--bg-light); }
    .faq-list { max-width: 740px; margin: 0 auto; }
    .faq-item {
      background: var(--white); border-radius: var(--radius);
      margin-bottom: 1rem;
      box-shadow: 0 2px 12px rgba(11,29,94,0.06);
      overflow: hidden;
    }
    .faq-item summary {
      padding: 1.2rem 1.5rem;
      font-weight: 700; font-size: 1rem;
      cursor: pointer; list-style: none;
      display: flex; justify-content: space-between; align-items: center;
      color: var(--navy);
    }
    .faq-item summary::-webkit-details-marker { display: none; }
    .faq-item summary::after {
      content: '\f107'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
      color: var(--gold); transition: transform var(--transition); flex-shrink: 0;
    }
    .faq-item[open] summary::after { transform: rotate(180deg); }
    .faq-answer {
      padding: 0 1.5rem 1.2rem;
      color: var(--text-mid); font-size: 0.95rem; line-height: 1.7;
    }

    /* ===== FOOTER ===== */
    .site-footer {
      background: var(--navy); color: rgba(255,255,255,0.7);
      padding: 3.5rem 2rem; text-align: center;
    }
    .footer-logo {
      font-size: 1.6rem; font-weight: 900; color: var(--white); margin-bottom: 0.4rem;
    }
    .footer-logo span { color: var(--gold); }
    .footer-tagline { font-size: 0.85rem; margin-bottom: 2rem; }
    .footer-links {
      display: flex; flex-wrap: wrap; justify-content: center;
      gap: 1rem 2rem; margin-bottom: 2rem;
    }
    .footer-links a {
      font-size: 0.85rem; color: rgba(255,255,255,0.55);
      transition: color var(--transition);
    }
    .footer-links a:hover { color: var(--gold); }
    .footer-divider { height: 1px; background: rgba(255,255,255,0.1); margin: 0 auto 1.5rem; }
    .footer-legal {
      font-size: 0.78rem; color: rgba(255,255,255,0.38);
      max-width: 720px; margin: 0 auto; line-height: 1.7;
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 900px) {
      .services-grid { grid-template-columns: 1fr 1fr; }
      .plans-grid { grid-template-columns: 1fr; }
      .plans-image { display: none; }
    }
    @media (max-width: 768px) {
      .header-nav {
        position: fixed; top: 70px; left: 0; right: 0;
        flex-direction: column; gap: 0;
        background: var(--navy);
        display: none; padding: 1rem 0;
        box-shadow: 0 10px 20px rgba(0,0,0,0.2);
      }
      .header-nav.open { display: flex; }
      .header-nav a { padding: 0.8rem 2rem; width: 100%; }
      .nav-toggle { display: flex; }
    }
    @media (max-width: 480px) {
      .services-grid { grid-template-columns: 1fr; }
      .email-form { flex-direction: column; }
      .email-form input {
        border-right: 2px solid rgba(11,29,94,0.15);
        border-bottom: none;
        border-radius: var(--radius) var(--radius) 0 0;
      }
      .email-form button { border-radius: 0 0 var(--radius) var(--radius); }
      [dir="rtl"] .email-form input {
        border-left: 2px solid rgba(11,29,94,0.15);
        border-radius: var(--radius) var(--radius) 0 0;
      }
    }
  
/* 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; }
