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

    :root {
      --ink: #0f1117;
      --ink-soft: #3a3d47;
      --ink-muted: #7a7e8a;
      --rule: #d8dae0;
      --rule-light: #eceef2;
      --surface: #f7f8fa;
      --white: #ffffff;
      --accent: #1c4ed8;
      --accent-dark: #1338b0;
      --accent-pale: #eff3fe;
      --warn: #b91c1c;
      --warn-pale: #fef2f2;
      --serif: 'Crimson Pro', Georgia, serif;
      --sans: 'DM Sans', system-ui, sans-serif;
      --max: 1100px;
      --gap: clamp(3rem, 8vw, 6rem);
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: var(--sans);
      font-size: 16px;
      line-height: 1.65;
      color: var(--ink);
      background: var(--white);
      -webkit-font-smoothing: antialiased;
    }

    /* ─── UTILITIES ─────────────────────────────── */
    .container { max-width: var(--max); margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 2.5rem); }
    .section { padding: var(--gap) 0; }
    .section--alt { background: var(--surface); }
    .label {
      display: inline-block;
      font-size: 0.6875rem;
      font-weight: 500;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--ink-muted);
      margin-bottom: 1.25rem;
    }
    .label--accent { color: var(--accent); }
    h1, h2, h3, h4 { line-height: 1.2; }
    h2 {
      font-family: var(--serif);
      font-size: clamp(1.75rem, 4vw, 2.5rem);
      font-weight: 300;
      letter-spacing: -0.01em;
      color: var(--ink);
      margin-bottom: 1rem;
    }
    h3 {
      font-family: var(--serif);
      font-size: clamp(1.15rem, 2.5vw, 1.4rem);
      font-weight: 400;
      margin-bottom: 0.6rem;
    }
    p { color: var(--ink-soft); }
    p + p { margin-top: 0.75rem; }
    .lead {
      font-size: clamp(1rem, 1.5vw, 1.125rem);
      color: var(--ink-soft);
      max-width: 52ch;
      line-height: 1.75;
    }
    hr.rule { border: none; border-top: 1px solid var(--rule); margin: 0; }
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.875rem 1.75rem;
      border-radius: 3px;
      font-family: var(--sans);
      font-size: 0.9375rem;
      font-weight: 500;
      cursor: pointer;
      text-decoration: none;
      transition: background 0.18s, color 0.18s, border-color 0.18s, transform 0.12s;
      border: 1.5px solid transparent;
    }
    .btn:hover { transform: translateY(-1px); }
    .btn--primary { background: var(--accent); color: #fff; border-color: var(--accent); }
    .btn--primary:hover { background: var(--accent-dark); border-color: var(--accent-dark); }
    .btn--ghost { background: transparent; color: var(--ink); border-color: var(--rule); }
    .btn--ghost:hover { border-color: var(--ink-soft); }
    .btn--ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.4); }
    .btn--ghost-light:hover { border-color: #fff; }
    .btn--whatsapp { background: #25D366; color: #fff; border-color: #25D366; }
    .btn--whatsapp:hover { background: #128C7E; border-color: #128C7E; }
    .email-obf { unicode-bidi: bidi-override; direction: rtl; }

    /* ─── NAV ────────────────────────────────────── */
    .nav {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(255,255,255,0.96);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid var(--rule);
    }
    .nav__inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 72px;
    }
    .nav__logo {
      display: inline-flex;
      align-items: center;
      text-decoration: none;
      flex-shrink: 0;
    }
    .nav__logo svg { height: 42px; width: auto; display: block; }
    .nav__logo img { display: block; }
    .nav__links {
      display: flex;
      align-items: center;
      gap: 2rem;
      list-style: none;
    }
    .nav__links a {
      font-size: 0.875rem;
      color: var(--ink-soft);
      text-decoration: none;
      transition: color 0.15s;
    }
    .nav__links a:hover { color: var(--ink); }
    .nav__cta { font-size: 0.875rem !important; padding: 0.6rem 1.25rem !important; color: #fff !important; }

    .nav__hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 0.5rem;
      z-index: 101;
    }
    .nav__hamburger span {
      display: block;
      width: 22px;
      height: 2px;
      background: var(--ink);
      transition: transform 0.2s, opacity 0.2s;
      transform-origin: center;
    }
    .nav__hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav__hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
    .nav__hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    @media (max-width: 700px) {
      .nav__hamburger { display: flex; }
      .nav__links {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(12px);
        border-bottom: 1px solid var(--rule);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0.75rem clamp(1.25rem, 4vw, 2.5rem) 1.25rem;
        list-style: none;
      }
      .nav__links.open { display: flex; }
      .nav__links li { border-bottom: 1px solid var(--rule-light); }
      .nav__links li:last-child { border-bottom: none; padding-top: 0.5rem; }
      .nav__links a { display: block; padding: 0.75rem 0; font-size: 1rem; }
      .nav__cta { display: inline-flex !important; margin-top: 0.25rem; }
    }

    /* ─── HERO ───────────────────────────────────── */
    .hero {
      padding: clamp(4rem, 10vw, 7rem) 0 clamp(3.5rem, 8vw, 6rem);
      background: var(--ink);
      position: relative;
      overflow: hidden;
    }
    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 70% 60% at 80% 50%, #1a2e6e 0%, transparent 70%);
      pointer-events: none;
    }
    .hero__grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: center;
    }
    @media (max-width: 780px) {
      .hero__grid { grid-template-columns: 1fr; }
      .hero__visual { display: none; }
    }
    .hero__eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.6875rem;
      font-weight: 500;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.55);
      margin-bottom: 1.5rem;
    }
    .hero__eyebrow::before {
      content: '';
      display: block;
      width: 24px;
      height: 1px;
      background: var(--accent);
    }
    .hero h1 {
      font-family: var(--serif);
      font-size: clamp(2.25rem, 5.5vw, 3.5rem);
      font-weight: 300;
      color: #fff;
      letter-spacing: -0.02em;
      line-height: 1.12;
      margin-bottom: 1.5rem;
    }
    .hero h1 em { font-style: italic; color: #93b4fb; }
    .hero__sub {
      font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
      color: rgba(255,255,255,0.62);
      max-width: 44ch;
      line-height: 1.75;
      margin-bottom: 2.25rem;
    }
    .hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
    .hero__note {
      margin-top: 2rem;
      padding-top: 2rem;
      border-top: 1px solid rgba(255,255,255,0.1);
      display: flex;
      gap: 2rem;
      flex-wrap: wrap;
    }
    .hero__stat { color: rgba(255,255,255,0.5); font-size: 0.8125rem; }
    .hero__stat strong { display: block; color: #fff; font-size: 1.25rem; font-family: var(--serif); font-weight: 300; }
    .hero__visual { display: flex; justify-content: flex-end; }
    .hero__card-stack { position: relative; width: 320px; height: 220px; }
    .hero__card {
      position: absolute;
      border-radius: 6px;
      padding: 1.25rem 1.5rem;
      font-size: 0.8125rem;
    }
    .hero__card--back {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.1);
      bottom: 0; left: 0; right: 0; top: 20px;
      transform: rotate(-3deg);
    }
    .hero__card--front {
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.15);
      backdrop-filter: blur(12px);
      bottom: 0; left: 20px; right: -20px;
    }
    .hero__card-label { color: rgba(255,255,255,0.45); font-size: 0.6875rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.75rem; }
    .hero__card-status {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      color: #4ade80;
      font-size: 0.875rem;
      font-weight: 500;
    }
    .hero__card-status::before { content: ''; display: block; width: 6px; height: 6px; border-radius: 50%; background: #4ade80; }
    .hero__card-detail { color: rgba(255,255,255,0.4); font-size: 0.75rem; margin-top: 0.25rem; }

    /* ─── PROBLEMS ──────────────────────────────── */
    .problems__intro { max-width: 56ch; margin-bottom: 3rem; }
    .risk-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
      gap: 1.5px;
      background: var(--rule);
      border: 1.5px solid var(--rule);
      border-radius: 4px;
      overflow: hidden;
    }
    .risk-item {
      background: var(--white);
      padding: 1.75rem;
      transition: background 0.15s;
    }
    .risk-item:hover { background: var(--warn-pale); }
    .risk-item__icon {
      width: 36px; height: 36px;
      border-radius: 50%;
      background: var(--warn-pale);
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 1rem;
      font-size: 1rem;
    }
    .risk-item h3 { font-size: 1rem; font-family: var(--sans); font-weight: 500; color: var(--ink); margin-bottom: 0.4rem; }
    .risk-item p { font-size: 0.875rem; }

    /* ─── SOLUTION ──────────────────────────────── */
    .solution__layout {
      display: grid;
      grid-template-columns: 1fr 1.4fr;
      gap: 4rem;
      align-items: start;
    }
    @media (max-width: 780px) { .solution__layout { grid-template-columns: 1fr; gap: 2.5rem; } }
    .solution__copy p + p { margin-top: 1rem; }
    .solution__items { display: flex; flex-direction: column; gap: 1px; }
    .sol-item {
      display: grid;
      grid-template-columns: 48px 1fr;
      gap: 1rem;
      padding: 1.25rem 0;
      border-bottom: 1px solid var(--rule-light);
      align-items: start;
    }
    .sol-item:first-child { border-top: 1px solid var(--rule-light); }
    .sol-item__num {
      font-family: var(--serif);
      font-size: 1.5rem;
      font-weight: 300;
      color: var(--rule);
      line-height: 1;
      padding-top: 0.2rem;
    }
    .sol-item h3 { font-family: var(--sans); font-size: 0.9375rem; font-weight: 500; color: var(--ink); margin-bottom: 0.3rem; }
    .sol-item p { font-size: 0.875rem; }

    /* ─── PACKAGES ──────────────────────────────── */
    .packages__intro { max-width: 52ch; margin-bottom: 3rem; }
    .packages__grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5px;
      background: var(--rule);
      border: 1.5px solid var(--rule);
      border-radius: 4px;
      overflow: hidden;
    }
    @media (max-width: 900px) { .packages__grid { grid-template-columns: 1fr; } }
    .pkg { background: var(--white); padding: 2rem 1.75rem; display: flex; flex-direction: column; }
    .pkg--highlight { background: var(--ink); color: #fff; }
    .pkg__badge {
      display: inline-block;
      font-size: 0.625rem;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      background: var(--accent);
      color: #fff;
      padding: 0.2em 0.6em;
      border-radius: 2px;
      margin-bottom: 1rem;
      align-self: flex-start;
    }
    .pkg__name { font-family: var(--serif); font-size: 1.5rem; font-weight: 300; color: var(--ink); margin-bottom: 0.25rem; }
    .pkg--highlight .pkg__name { color: #fff; }
    .pkg__tagline { font-size: 0.8125rem; color: var(--ink-muted); margin-bottom: 1.5rem; }
    .pkg--highlight .pkg__tagline { color: rgba(255,255,255,0.5); }
    .pkg__features { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; flex: 1; margin-bottom: 1.75rem; }
    .pkg__features li { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.875rem; color: var(--ink-soft); }
    .pkg--highlight .pkg__features li { color: rgba(255,255,255,0.7); }
    .pkg__features li::before { content: '—'; color: var(--accent); flex-shrink: 0; margin-top: 0.05em; }
    .pkg--highlight .pkg__features li::before { color: #93b4fb; }
    .pkg__cta { margin-top: auto; }

    /* ─── WHY US ────────────────────────────────── */
    .why__grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 2.5rem;
      margin-top: 3rem;
    }
    .why-item__num { font-family: var(--serif); font-size: 2.5rem; font-weight: 300; color: var(--rule); line-height: 1; margin-bottom: 0.75rem; }
    .why-item h3 { font-family: var(--sans); font-size: 0.9375rem; font-weight: 500; color: var(--ink); margin-bottom: 0.4rem; }
    .why-item p { font-size: 0.875rem; }

    /* ─── PROCESS ───────────────────────────────── */
    .process__steps {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0;
      margin-top: 3rem;
      border: 1.5px solid var(--rule);
      border-radius: 4px;
      overflow: hidden;
      background: var(--rule);
    }
    .step { background: var(--white); padding: 1.75rem 1.5rem; }
    .step__num { font-family: var(--serif); font-size: 0.75rem; font-weight: 400; letter-spacing: 0.1em; color: var(--ink-muted); margin-bottom: 1rem; }
    .step h3 { font-family: var(--sans); font-size: 0.9375rem; font-weight: 500; color: var(--ink); margin-bottom: 0.4rem; }
    .step p { font-size: 0.8125rem; }
    @media (max-width: 780px) { .process__steps { grid-template-columns: 1fr; } }

    /* ─── FAQ ───────────────────────────────────── */
    .faq__grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
      margin-top: 3rem;
      border: 1.5px solid var(--rule);
      border-radius: 4px;
      overflow: hidden;
      background: var(--rule);
    }
    @media (max-width: 720px) { .faq__grid { grid-template-columns: 1fr; } }
    .faq-item { background: var(--white); padding: 1.75rem; }
    .faq-item__q { font-family: var(--sans); font-size: 0.9375rem; font-weight: 500; color: var(--ink); margin-bottom: 0.6rem; }
    .faq-item p { font-size: 0.875rem; }

    /* ─── FINAL CTA ─────────────────────────────── */
    .final-cta { background: var(--ink); padding: var(--gap) 0; text-align: center; }
    .final-cta h2 { font-family: var(--serif); color: #fff; font-size: clamp(1.75rem, 4vw, 2.75rem); font-weight: 300; margin-bottom: 1rem; }
    .final-cta h2 em { font-style: italic; color: #93b4fb; }
    .final-cta p { color: rgba(255,255,255,0.55); max-width: 48ch; margin: 0 auto 2.25rem; }
    .final-cta__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

    /* ─── FOOTER ────────────────────────────────── */
    footer {
      background: #070a0f;
      padding: 3rem 0 2rem;
      color: rgba(255,255,255,0.4);
      font-size: 0.8125rem;
    }
    .footer__top {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1fr;
      gap: 2.5rem;
      padding-bottom: 2rem;
      border-bottom: 1px solid rgba(255,255,255,0.07);
      margin-bottom: 2rem;
    }
    @media (max-width: 780px) { .footer__top { grid-template-columns: 1fr 1fr; } }
    @media (max-width: 500px) { .footer__top { grid-template-columns: 1fr; } }
    .footer__brand .nav__logo svg { height: 54px; }
    .footer__brand .nav__logo img { display: block; }
    .footer__brand p { margin-top: 0.75rem; color: rgba(255,255,255,0.35); line-height: 1.65; }
    .footer__col h4 { font-size: 0.6875rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 0.875rem; }
    .footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
    .footer__col ul a { color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.15s; }
    .footer__col ul a:hover { color: rgba(255,255,255,0.75); }
    .footer__bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
    .footer__bottom a { color: rgba(255,255,255,0.35); text-decoration: none; }
    .footer__bottom a:hover { color: rgba(255,255,255,0.55); }

    /* ─── CERTIFICATIONS ────────────────────────── */
    .cert-section {
      margin-top: 3rem;
      display: grid;
      grid-template-columns: 1fr 2fr;
      gap: 1.5px;
      background: var(--rule);
      border: 1.5px solid var(--rule);
      border-radius: 4px;
      overflow: hidden;
    }
    @media (max-width: 700px) { .cert-section { grid-template-columns: 1fr; } }
    .cert-box {
      background: var(--white);
      padding: 1.75rem;
    }
    .cert-box__label {
      font-size: 0.6875rem;
      font-weight: 500;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--ink-muted);
      margin-bottom: 1.25rem;
    }
    .cert-badge {
      display: flex;
      align-items: center;
      gap: 1rem;
    }
    .cert-badge__mark {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      background: #FFF7ED;
      border: 1.5px solid #FED7AA;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .cert-badge__text strong {
      display: block;
      font-size: 0.875rem;
      font-weight: 500;
      color: var(--ink);
      line-height: 1.3;
    }
    .cert-badge__text span {
      font-size: 0.8125rem;
      color: var(--ink-muted);
    }
    .tech-logos {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 2rem 2.5rem;
    }
    .tech-logo {
      display: flex;
      flex-direction: column;
      gap: 0.4rem;
    }
    .tech-logo__label {
      font-size: 0.6875rem;
      color: var(--ink-muted);
      letter-spacing: 0.05em;
    }

    /* ─── TRUST BAR ─────────────────────────────── */
    .trust-bar {
      background: var(--surface);
      border-bottom: 1px solid var(--rule);
      padding: 0.875rem 0;
    }
    .trust-bar__inner {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: clamp(1.5rem, 4vw, 3rem);
      flex-wrap: wrap;
    }
    .trust-item {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.8125rem;
      color: var(--ink-soft);
      white-space: nowrap;
    }
    .trust-item__icon {
      width: 18px;
      height: 18px;
      color: var(--accent);
      flex-shrink: 0;
    }

    /* ─── SCROLL ANIMATIONS ─────────────────────── */
    @media (prefers-reduced-motion: no-preference) {
      [data-reveal] {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.55s ease, transform 0.55s ease;
      }
      [data-reveal].visible {
        opacity: 1;
        transform: none;
      }
    }

    /* ─── COOKIE BANNER ─────────────────────── */
    .cookie-banner {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 999;
      background: var(--white);
      border-top: 1px solid var(--rule);
      box-shadow: 0 -4px 24px rgba(0,0,0,0.08);
      padding: 1.25rem clamp(1.25rem, 4vw, 2.5rem);
    }
    .cookie-banner__inner {
      max-width: var(--max);
      margin: 0 auto;
      display: flex;
      align-items: center;
      gap: 1.5rem;
      flex-wrap: wrap;
    }
    .cookie-banner__text {
      flex: 1;
      min-width: 200px;
      font-size: 0.875rem;
      color: var(--ink-soft);
      line-height: 1.55;
    }
    .cookie-banner__actions {
      display: flex;
      gap: 0.75rem;
      flex-shrink: 0;
      flex-wrap: wrap;
    }
    .cookie-banner.hidden { display: none; }