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

  :root {

    --purple: #6b21a8;

    --purple-dark: #4a1272;

    --fuchsia: #e879f9;

    --orange: #f7941d;

    --blue: #1d4ed8;

    --blue-light: #dbeafe;

    --green: #15803d;

    --green-light: #dcfce7;

    --white: #fff;

    --light: #fdf4ff;

    --text: #1f2937;

    --muted: #6b7280;

    --nav-h: 72px;

  }

  body { font-family: 'Roboto', sans-serif; color: var(--text); background: var(--white); }
  /* ── NAV ── */

  nav {

    position: fixed; top: 0; width: 100%; z-index: 999;

    background: #fff;

    height: var(--nav-h);

    display: flex; align-items: center; gap: 0;

    padding: 0 48px;

    border-bottom: 1px solid #e8e8e8;

    box-shadow: 0 2px 12px rgba(0,0,0,.06);

  }

  .nav-logo { height: 45px; flex-shrink: 0; margin-right: auto; }

  .nav-logo img { height: 100%; width: auto; }
  /* Desktop nav */

  .nav-links {

    display: flex; gap: 32px;

    align-items: center; list-style: none;

    margin: 0; padding: 0;

  }

  .nav-links a {

    color: #444; text-decoration: none;

    font-size: 13px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase;

    transition: color .2s;

  }

  .nav-links a:hover { color: #a21caf; }
  /* Desktop dropdown */

  .nav-dropdown { position: relative; }

  .nav-dropdown > a::after { content: ' ▾'; font-size: 10px; }

  .nav-dropdown-menu {

    display: none;

    position: absolute; top: calc(100% + 8px); left: 50%;

    transform: translateX(-50%);

    background: #fff; border-radius: 8px;

    box-shadow: 0 8px 32px rgba(0,0,0,.12);

    border: 1px solid #eee;

    min-width: 220px; padding: 8px 0;

    z-index: 1000; list-style: none;

  }

  .nav-dropdown:hover .nav-dropdown-menu,

  .nav-dropdown.open .nav-dropdown-menu { display: block; }

  .nav-dropdown-menu li a {

    display: block; padding: 10px 20px;

    font-size: 13px; color: #444;

    text-transform: uppercase; letter-spacing: .06em;

    transition: background .15s, color .15s;

  }

  .nav-dropdown-menu li a:hover { background: #fdf4ff; color: #a21caf; }
  /* CTA */

  .nav-cta {

    margin-left: 24px;

    background: #e879f9; color: #fff !important;

    padding: 10px 22px; border-radius: 4px;

    font-weight: 700 !important;

    transition: background .2s !important;

  }

  .nav-cta:hover { background: #d946ef; }
  /* Desktop social */

  .nav-social { display: flex; gap: 8px; align-items: center; margin-left: 12px; }

  .nav-social a {

    width: 34px; height: 34px; border-radius: 50%;

    background: rgba(0,0,0,.06);

    display: flex; align-items: center; justify-content: center;

    color: #555; text-decoration: none; font-size: 14px;

    transition: background .2s, color .2s;

  }

  .nav-social a:hover { background: #a21caf; color: #fff; }

  .nav-social a.nav-instagram:hover { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366); color: #fff; }
  /* Hamburger button — hidden on desktop */

  .nav-toggle {

    display: none;

    flex-direction: column; justify-content: center; gap: 5px;

    cursor: pointer; background: none; border: none;

    padding: 8px; z-index: 1001;

  }

  .nav-toggle span {

    display: block; width: 26px; height: 2.5px;

    background: #555; border-radius: 2px;

    transition: transform .3s, opacity .3s;

  }

  .nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }

  .nav-toggle.open span:nth-child(2) { opacity: 0; }

  .nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

  @media (max-width: 900px) {

    nav { padding: 0 20px; }

    .nav-toggle { display: flex; }

    .nav-social { display: none; }
    /* Hide desktop menu, show as overlay when open */

    .nav-links {

      display: none !important;

      position: fixed;

      top: var(--nav-h); left: 0; right: 0; bottom: 0;

      flex-direction: column !important;

      align-items: stretch;

      gap: 0;

      background: #fff;

      overflow-y: auto;

      -webkit-overflow-scrolling: touch;

      z-index: 998;

      border-top: 3px solid #e879f9;

      list-style: none;

      padding: 0;

      margin: 0;

    }

    .nav-links.open { display: flex !important; }
    /* Menu items */

    .nav-links > li { width: 100%; }

    .nav-links > li > a {

      display: block !important;

      padding: 16px 24px;

      font-size: 15px; font-weight: 600;

      color: #3b1a5c !important;

      border-bottom: 1px solid #f3e8ff;

      text-transform: uppercase; letter-spacing: .06em;

      background: none; margin: 0;

    }

    .nav-links > li > a:hover { background: #fdf4ff !important; }
    /* Dropdown always expanded on mobile */

    .nav-dropdown > a::after { display: none; }

    .nav-dropdown-menu {

      display: block !important;

      position: static !important;

      transform: none !important;

      box-shadow: none !important;

      border: none !important;

      border-radius: 0 !important;

      min-width: unset !important;

      padding: 0 !important;

      margin: 0 !important;

      background: #f5edff;

      list-style: none;

    }

    .nav-dropdown-menu li a {

      padding: 12px 40px !important;

      font-size: 13px !important;

      color: #7c3aed !important;

      border-bottom: 1px solid #ede9fe !important;

      font-weight: 500 !important;

    }

    .nav-dropdown-menu li a:hover { background: #ede9fe !important; }
    /* CTA */

    .nav-cta {

      display: block !important;

      margin: 16px 24px !important;

      text-align: center !important;

      padding: 14px !important;

      border-bottom: none !important;

      border-radius: 6px !important;

      background: #e879f9 !important;

      color: #fff !important;

    }

    .nav-cta:hover { background: #d946ef !important; }
    /* Page layout */

    section { padding: 64px 24px; }

    .hero-inner { grid-template-columns: 1fr; gap: 0; padding: 60px 24px 40px; }

    .hero-img { display: flex !important; justify-content: center; margin-top: 48px; min-height: 320px; }

    .hero-img::before { width: 300px; height: 300px; }

    .hero-img::after { width: 270px; height: 270px; }

    .hero-img-wrap { width: 260px; height: 260px; }

    .who-grid { grid-template-columns: 1fr; gap: 48px; }

    #who-pillars-grid { grid-template-columns: 1fr !important; }

    #apostoli-pillars { flex-direction: column !important; }

    #apostoli-pillars > div { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,.2); border-radius: 0 !important; }

    #apostoli-pillars > div:first-child { border-radius: 16px 16px 0 0 !important; }

    #apostoli-pillars > div:last-child { border-bottom: none; border-radius: 0 0 16px 16px !important; }

    .stats-grid { grid-template-columns: 1fr 1fr; gap: 16px; }

    .stat-card { padding: 24px 16px; }

    .stat-number { font-size: 2rem; }

    .vision-inner { grid-template-columns: 1fr; }

    #vision-inner { grid-template-columns: 1fr !important; padding: 40px 24px !important; }

    #vision-inner img { width: 200px !important; height: 200px !important; margin: 0 auto; display: block; }

    .vision-img { display: none; }

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

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

    .cta-banner-inner { flex-direction: column; }

    .cta-banner-imgs { display: none; }

  }
  /* HEADER */

  header {

    background: linear-gradient(135deg, #1e3a5f, #1d4ed8);

    padding: 120px 48px 80px;

    text-align: center;

    position: relative; overflow: hidden;

  }

  header::before {

    content: ''; position: absolute; inset: 0;

    background-image: radial-gradient(circle, rgba(255,255,255,.05) 1px, transparent 1px);

    background-size: 28px 28px;

  }

  .back-link {

    position: absolute; top: 88px; left: 32px;

    color: rgba(255,255,255,.75); text-decoration: none;

    font-size: 13px; font-weight: 500; letter-spacing: .06em;

    display: flex; align-items: center; gap: 6px; transition: color .2s;

  }

  .back-link:hover { color: #fff; }

  header .label {

    font-size: 11px; font-weight: 700; letter-spacing: .2em;

    text-transform: uppercase; color: rgba(147,197,253,.9);

    margin-bottom: 16px; position: relative;

  }

  header h1 {

    font-size: clamp(2rem,4vw,3.2rem); font-weight: 900;

    color: #fff; line-height: 1.2; position: relative; margin-bottom: 20px;

  }

  header h1 em { color: #93c5fd; font-style: normal; }

  header p {

    color: rgba(255,255,255,.82); font-size: 17px; line-height: 1.75;

    max-width: 640px; margin: 0 auto; position: relative;

  }
  /* DISCLAIMER */

  .disclaimer {

    background: #fff7ed; border-bottom: 1px solid #fed7aa;

    padding: 16px 48px; text-align: center;

    font-size: 14px; color: #9a3412; line-height: 1.6;

  }
  /* MAIN */

  main { max-width: 1000px; margin: 0 auto; padding: 64px 48px; }
  /* CAT HEADER */

  .cat-header {

    display: flex; align-items: center; gap: 16px;

    margin-bottom: 28px; margin-top: 56px; padding-bottom: 16px;

    border-bottom: 2px solid #e5e7eb;

  }

  .cat-header:first-child { margin-top: 0; }

  .cat-icon {

    width: 52px; height: 52px; border-radius: 14px;

    display: flex; align-items: center; justify-content: center;

    font-size: 24px; flex-shrink: 0;

  }

  .cat-header h2 { font-size: 1.4rem; font-weight: 800; color: var(--purple); }

  .cat-header p { font-size: 13px; color: var(--muted); margin-top: 3px; }
  /* BENEFIT CARDS */

  .benefit-grid {

    display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; margin-bottom: 12px;

  }

  .benefit-card {

    background: var(--white); border-radius: 14px; padding: 24px;

    border: 1px solid #e5e7eb;

    box-shadow: 0 2px 12px rgba(0,0,0,.05);

    display: flex; flex-direction: column; gap: 10px;

  }

  .benefit-card-top {

    display: flex; align-items: flex-start; gap: 14px;

  }

  .benefit-icon {

    width: 42px; height: 42px; border-radius: 10px;

    display: flex; align-items: center; justify-content: center;

    font-size: 20px; flex-shrink: 0;

  }

  .benefit-card h3 {

    font-size: 14px; font-weight: 700; color: var(--text); line-height: 1.4; margin-bottom: 4px;

  }

  .benefit-card .amount {

    font-size: 20px; font-weight: 900; color: var(--green); line-height: 1;

  }

  .benefit-card p {

    font-size: 13px; color: var(--muted); line-height: 1.7; margin: 0;

  }

  .benefit-card .conditions {

    font-size: 12px; color: var(--muted); border-top: 1px solid #f3f4f6;

    padding-top: 10px; margin-top: 4px; line-height: 1.6;

  }

  .conditions strong { color: var(--text); }
  /* FULL-WIDTH CARD */

  .benefit-card.full {

    grid-column: span 2;

  }
  /* INFO BOX */

  .info-box {

    border-radius: 12px; padding: 20px 24px; margin: 20px 0;

    display: flex; gap: 14px; align-items: flex-start;

  }

  .info-box.blue { background: var(--blue-light); border: 1px solid #93c5fd; }

  .info-box.green { background: var(--green-light); border: 1px solid #86efac; }

  .info-box.orange { background: #fff7ed; border: 1px solid #fed7aa; }

  .info-box.purple { background: var(--light); border: 1px solid #f0abfc; }

  .info-box .ib-icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; }

  .info-box p { font-size: 14px; line-height: 1.75; margin: 0; }

  .info-box.blue p { color: #1e3a8a; }

  .info-box.green p { color: #14532d; }

  .info-box.orange p { color: #9a3412; }

  .info-box.purple p { color: var(--purple); }
  /* RIGHTS LIST */

  .rights-list { display: flex; flex-direction: column; gap: 16px; margin-top: 4px; }

  .right-item {

    display: flex; gap: 14px; align-items: flex-start;

    background: var(--blue-light); border-radius: 10px; padding: 18px 20px;

    border: 1px solid #93c5fd;

  }

  .right-num {

    width: 32px; height: 32px; border-radius: 50%;

    background: var(--blue); color: #fff;

    font-weight: 700; font-size: 14px;

    display: flex; align-items: center; justify-content: center; flex-shrink: 0;

  }

  .right-item h4 { font-size: 14px; font-weight: 700; color: #1e3a8a; margin-bottom: 4px; }

  .right-item p { font-size: 13px; color: #1e40af; line-height: 1.65; margin: 0; }
  /* PROCESS STEPS */

  .steps { display: flex; flex-direction: column; gap: 16px; margin-top: 4px; }

  .step-item {

    display: flex; gap: 14px; align-items: flex-start;

    padding: 18px; background: var(--white);

    border: 1px solid #e5e7eb; border-radius: 10px;

    box-shadow: 0 1px 4px rgba(0,0,0,.04);

  }

  .step-num {

    width: 34px; height: 34px; border-radius: 50%;

    background: linear-gradient(135deg, var(--purple), #a21caf);

    color: #fff; font-weight: 700; font-size: 14px;

    display: flex; align-items: center; justify-content: center; flex-shrink: 0;

  }

  .step-item h4 { font-size: 14px; font-weight: 700; color: var(--purple); margin-bottom: 4px; }

  .step-item p { font-size: 13px; color: var(--muted); line-height: 1.65; margin: 0; }
  /* DIVIDER */

  .divider { height: 1px; background: #e5e7eb; margin: 48px 0 0; }
  /* CTA */

  .page-cta {

    background: linear-gradient(135deg, #1e3a5f, #1d4ed8);

    border-radius: 16px; padding: 40px; text-align: center; margin-top: 64px;

  }

  .page-cta h2 { font-size: 1.4rem; font-weight: 800; color: #fff; margin-bottom: 12px; }

  .page-cta p { color: rgba(255,255,255,.82); font-size: 15px; line-height: 1.7; margin-bottom: 28px; }

  .page-cta a {

    display: inline-block; background: var(--fuchsia); color: #fff;

    padding: 14px 36px; border-radius: 8px; font-weight: 700;

    text-decoration: none; font-size: 14px; letter-spacing: .06em; text-transform: uppercase;

    transition: opacity .2s, transform .15s;

  }

  .page-cta a:hover { opacity: .9; transform: translateY(-2px); }
  @media (max-width: 700px) {

    header { padding: 100px 24px 64px; }

    main { padding: 48px 24px; }

    .disclaimer { padding: 14px 24px; }

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

    .benefit-card.full { grid-column: span 1; }

  }