
    :root {
      --bg: #081120;
      --panel: #0f172a;
      --panel-2: #121d34;
      --text: #dce7f8;
      --muted: #9ab0cf;
      --line: rgba(255,255,255,0.12);

      /* original orange, refined */
      --primary: #f59e0b;
      --primary-2: #fb923c;
      --primary-soft: #ffedd5;
      --primary-border: rgba(245, 158, 11, 0.28);

      --white: #ffffff;
      --shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
      --container: 1180px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }

    body {
      margin: 0;
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background:
        radial-gradient(circle at top right, rgba(245, 158, 11, 0.14), transparent 22%),
        radial-gradient(circle at left top, rgba(59, 130, 246, 0.10), transparent 30%),
        linear-gradient(180deg, #07101d 0%, #0b1324 100%);
      color: var(--text);
      line-height: 1.65;
    }

    body.rtl {
      direction: rtl;
      font-family: "Segoe UI", Tahoma, Arial, sans-serif;
    }

    body.menu-open {
      overflow: hidden;
    }

    img { max-width: 100%; display: block; }
    a { color: inherit; text-decoration: none; }

    .container {
      width: min(var(--container), calc(100% - 32px));
      margin: 0 auto;
    }

    .section { padding: 88px 0; }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 8px 14px;
      border: 1px solid var(--line);
      border-radius: 999px;
      background: rgba(255,255,255,0.03);
      color: #ffc975;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: .03em;
      text-transform: uppercase;
    }

    body.rtl .eyebrow {
      letter-spacing: 0;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      backdrop-filter: blur(14px);
      background: rgba(8,17,32,0.82);
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      min-height: 78px;
      gap: 24px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 1.18rem;
      font-weight: 800;
      letter-spacing: 0.02em;
      position: relative;
      z-index: 1002;
    }

    .brand-badge {
      width: 42px;
      height: 42px;
      border-radius: 12px;
      display: grid;
      place-items: center;
      color: #111827;
      background: linear-gradient(135deg, var(--primary), var(--primary-2));
      box-shadow: 0 12px 24px rgba(245, 158, 11, 0.24);
      font-weight: 900;
    }

    .nav-right {
      display: flex;
      align-items: center;
      gap: 12px;
      position: relative;
    }

    .nav-panel {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 22px;
      flex-wrap: wrap;
    }

    .nav-links a {
      color: var(--muted);
      font-weight: 600;
      font-size: 15px;
      transition: .2s ease;
    }

    .nav-links a:hover { color: var(--white); }

    .lang-switch {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      padding: 4px;
      border-radius: 999px;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
    }

    .lang-btn {
      border: 0;
      min-width: 38px;
      height: 30px;
      border-radius: 999px;
      padding: 0 10px;
      background: transparent;
      color: var(--muted);
      font-size: 12px;
      font-weight: 800;
      letter-spacing: .02em;
      cursor: pointer;
      transition: .25s ease;
    }

    .lang-btn:hover {
      color: var(--white);
    }

    .lang-btn.active {
      background: linear-gradient(135deg, rgba(245, 158, 11, 0.20), rgba(251, 146, 60, 0.18));
      color: #ffd79f;
      box-shadow: inset 0 0 0 1px rgba(245, 158, 11, 0.22);
    }

    .menu-toggle {
      display: none;
      width: 44px;
      height: 44px;
      border-radius: 12px;
      border: 1px solid rgba(255,255,255,0.1);
      background: rgba(255,255,255,0.04);
      cursor: pointer;
      padding: 0;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 5px;
      position: relative;
      z-index: 1002;
    }

    .menu-toggle span {
      display: block;
      width: 18px;
      height: 2px;
      border-radius: 999px;
      background: var(--white);
      transition: .25s ease;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 48px;
      padding: 0 22px;
      border-radius: 14px;
      border: 1px solid transparent;
      font-weight: 800;
      transition: .25s ease;
      cursor: pointer;
    }

    .btn-primary {
      color: #1a1a1a;
      background: linear-gradient(135deg, var(--primary), var(--primary-2));
      border-color: rgba(255,255,255,0.18);
      box-shadow:
        0 14px 28px rgba(245, 158, 11, 0.18),
        inset 0 1px 0 rgba(255,255,255,0.28);
    }

    .btn-primary:hover {
      transform: translateY(-1px);
      box-shadow:
        0 18px 34px rgba(245, 158, 11, 0.22),
        inset 0 1px 0 rgba(255,255,255,0.32);
      filter: saturate(1.03);
    }

    .btn-secondary {
      color: var(--white);
      background: rgba(255,255,255,0.04);
      border-color: var(--line);
    }

    .btn-secondary:hover {
      background: rgba(255,255,255,0.08);
      border-color: rgba(255,255,255,0.16);
      transform: translateY(-1px);
    }

    .nav-cta {
      min-height: 42px;
      padding: 0 16px;
      border-radius: 12px;
      font-size: 14px;
    }

    .hero { padding: 32px 0 48px; }
    .hero-head { margin-bottom: 28px; }

    .hero-head h1 {
      margin: 18px 0;
      font-size: clamp(2.2rem, 5vw, 4.4rem);
      line-height: 1.02;
      letter-spacing: -0.04em;
      color: var(--white);
      max-width: 980px;
    }

    .hero-head p {
      font-size: 1.08rem;
      color: var(--muted);
      max-width: 980px;
      margin: 0;
    }

    .hero-actions {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      margin: 28px 0 0;
    }

    .hero-slider-shell {
      padding: 0;
      border-radius: 28px;
      background: transparent;
      border: 0;
      box-shadow: none;
      overflow: visible;
      margin-bottom: 24px;
    }

    .hero-slider {
      position: relative;
      border-radius: 26px;
      overflow: hidden;
      background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
      border: 1px solid rgba(255,255,255,0.08);
      box-shadow: var(--shadow);
      padding: 14px;
    }

    .slider-stage {
      position: relative;
      height: 540px;
      border-radius: 18px;
      overflow: hidden;
      background: linear-gradient(180deg, rgba(10,20,36,0.92), rgba(13,23,48,0.92));
    }

    .slides {
      position: relative;
      width: 100%;
      height: 100%;
      overflow: hidden;
    }

    .slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      transform: translate3d(70px, 0, 0) scale(1.01);
      transition:
        opacity 1200ms cubic-bezier(0.22, 1, 0.36, 1),
        transform 1400ms cubic-bezier(0.22, 1, 0.36, 1);
      pointer-events: none;
      display: flex;
      align-items: center;
      justify-content: center;
      will-change: transform, opacity;
    }

    .slide.prev {
      transform: translate3d(-70px, 0, 0) scale(0.99);
    }

    .slide.active {
      opacity: 1;
      transform: translate3d(0, 0, 0) scale(1);
      pointer-events: auto;
      z-index: 2;
    }

    .slide.first-slide {
      transform: translate3d(0, 0, 0) scale(1);
      transition:
        opacity 900ms ease,
        transform 900ms ease;
    }

    .shot-wrap {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .shot-wrap img,
    .shot-wrap video {
      width: 100%;
      height: 100%;
      object-position: center;
      border-radius: 12px;
      display: block;
    }

    .slider-controls {
      display: flex;
      justify-content: center;
      gap: 12px;
      padding: 18px 18px 6px;
    }

    .slider-btn {
      width: 12px;
      height: 12px;
      border-radius: 999px;
      border: 0;
      cursor: pointer;
      background: rgba(255,255,255,0.22);
      transition: .25s ease;
    }

    .slider-btn.active {
      width: 36px;
      background: linear-gradient(135deg, var(--primary), var(--primary-2));
    }

    .hero-points {
      display: grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap: 14px;
      margin-top: 8px;
    }

    .point-card {
      padding: 18px;
      border-radius: 18px;
      background: rgba(255,255,255,0.04);
      border: 1px solid var(--line);
      box-shadow: var(--shadow);
    }

    .point-card strong {
      display: block;
      color: var(--white);
      font-size: 1.15rem;
      margin-bottom: 4px;
    }

    .point-card span { color: var(--muted); }

    .section-title {
      max-width: 840px;
      margin-bottom: 38px;
    }

    .section-title h2 {
      margin: 14px 0 12px;
      font-size: clamp(1.9rem, 4vw, 3rem);
      line-height: 1.1;
      letter-spacing: -0.03em;
      color: var(--white);
    }

    .section-title p {
      color: var(--muted);
      margin: 0;
    }

    .grid-3 {
      display: grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap: 22px;
    }

    .card {
      padding: 24px;
      border-radius: 22px;
      background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.025));
      border: 1px solid rgba(255,255,255,0.08);
      box-shadow: var(--shadow);
    }

    .card h3 {
      margin: 14px 0 10px;
      font-size: 1.22rem;
      color: var(--white);
    }

    .card p {
      margin: 0;
      color: var(--muted);
    }

    .icon-wrap {
      width: 52px;
      height: 52px;
      border-radius: 16px;
      display: grid;
      place-items: center;
      color: #1a1a1a;
      font-size: 1.1rem;
      font-weight: 900;
      background: linear-gradient(135deg, var(--primary), var(--primary-2));
      box-shadow: 0 10px 24px rgba(245, 158, 11, 0.18);
    }

    .split {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      align-items: start;
    }

    .list-card ul {
      list-style: none;
      padding: 0;
      margin: 18px 0 0;
      display: grid;
      gap: 14px;
    }

    .list-card li {
      display: flex;
      gap: 12px;
      align-items: flex-start;
      color: var(--muted);
    }

    .tick {
      width: 26px;
      height: 26px;
      border-radius: 999px;
      flex: 0 0 26px;
      display: grid;
      place-items: center;
      margin-top: 3px;
      background: rgba(245,158,11,0.14);
      color: #ffc975;
      border: 1px solid var(--primary-border);
      font-size: 13px;
      font-weight: 800;
    }

    .list-card strong { color: var(--white); }
    .contact-highlight { margin-top: 8px; }

    .faq {
      display: grid;
      gap: 14px;
    }

    .faq-item {
      border-radius: 18px;
      overflow: hidden;
      border: 1px solid rgba(255,255,255,0.08);
      background: rgba(255,255,255,0.04);
    }

    .faq-question {
      width: 100%;
      text-align: left;
      border: 0;
      background: transparent;
      color: var(--white);
      padding: 20px 22px;
      font-size: 1rem;
      font-weight: 800;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      gap: 20px;
      align-items: center;
    }

    body.rtl .faq-question {
      text-align: right;
    }

    .faq-answer {
      display: none;
      padding: 0 22px 20px;
      color: var(--muted);
    }

    .faq-item.active .faq-answer { display: block; }

    .faq-toggle {
      color: #ffc975;
      font-size: 1.2rem;
      line-height: 1;
      flex: 0 0 auto;
    }

    .contact-box {
      padding: 22px;
      border-radius: 22px;
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.08);
      box-shadow: var(--shadow);
    }

    .contact-box form {
      display: grid;
      grid-template-columns: repeat(2, minmax(0,1fr));
      gap: 14px;
      margin-top: 18px;
      align-items: start;
    }

    .contact-box .full { grid-column: 1 / -1; }

    .hidden-field {
      display: none !important;
    }

    .field {
      display: flex;
      flex-direction: column;
    }

    .field label {
      display: block;
      margin-bottom: 7px;
      color: var(--white);
      font-weight: 700;
      font-size: 14px;
    }

    .field small {
      display: block;
      color: var(--muted);
      margin-top: 6px;
      font-size: 12px;
    }

    .field input,
    .field select,
    .field textarea {
      width: 100%;
      border: 1px solid rgba(255,255,255,0.1);
      background: rgba(255,255,255,0.04);
      color: var(--white);
      border-radius: 14px;
      padding: 14px 15px;
      outline: none;
      font: inherit;
      min-height: 52px;
      height: 52px;
      appearance: none;
      -webkit-appearance: none;
    }

    .field textarea {
      min-height: 128px;
      height: 128px;
      resize: vertical;
      padding-top: 14px;
    }

    .field input::placeholder,
    .field textarea::placeholder {
      color: #88a0c4;
    }

    .footer {
      padding: 26px 0 46px;
      color: var(--muted);
    }

    .footer-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
      padding-top: 26px;
      border-top: 1px solid rgba(255,255,255,0.08);
    }

    .mobile-overlay {
      display: none;
    }

    @media (max-width: 980px) {
      .split,
      .grid-3,
      .hero-points {
        grid-template-columns: 1fr;
      }

      .contact-box form {
        grid-template-columns: 1fr;
      }

      .slider-stage {
        height: 400px;
      }
    }

    @media (max-width: 760px) {
      .section { padding: 72px 0; }
      .hero { padding-top: 20px; }

      .nav {
        min-height: 72px;
        padding: 12px 0;
      }

      .nav-right {
        margin-left: auto;
      }

      body.rtl .nav-right {
        margin-left: 0;
        margin-right: auto;
      }

      .menu-toggle {
        display: inline-flex;
      }

      .nav-panel {
        position: fixed;
        top: 78px;
        right: 16px;
        left: 16px;
        padding: 14px;
        border-radius: 18px;
        background: rgba(15, 23, 42, 0.98);
        border: 1px solid rgba(255,255,255,0.08);
        box-shadow: 0 24px 60px rgba(0,0,0,0.38);
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
        z-index: 1001;
      }

      .nav-panel.open {
        display: flex;
      }

      .mobile-overlay.show {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.46);
        z-index: 999;
      }

      .nav-links {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
      }

      .nav-links a {
        width: 100%;
        padding: 12px 14px;
        border-radius: 12px;
        background: rgba(255,255,255,0.03);
        color: var(--text);
      }

      .nav-links a:hover {
        background: rgba(255,255,255,0.06);
      }

      .nav-links .nav-cta {
        margin-top: 4px;
        min-height: 46px;
        width: 100%;
        text-align: center;
      }

      .lang-switch {
        width: fit-content;
        margin: 0 auto;
      }

      .menu-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
      }

      .menu-toggle.active span:nth-child(2) {
        opacity: 0;
      }

      .menu-toggle.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
      }

      .card,
      .contact-box {
        padding: 20px;
      }

      .hero-slider {
        padding: 10px;
      }

      .slider-stage {
        height: 280px;
      }

      .slide {
        padding: 10px;
      }

      .hero-actions {
        flex-direction: column;
      }

      .hero-actions .btn {
        width: 100%;
      }
    }


    .form-shell {
      position: relative;
      margin-top: 22px;
    }

    .success-state {
      display: none;
      margin-top: 18px;
      padding: 0;
      border-radius: 28px;
      border: 1px solid rgba(245, 158, 11, 0.24);
      background:
        radial-gradient(circle at top right, rgba(245,158,11,0.14), transparent 28%),
        radial-gradient(circle at left bottom, rgba(34,197,94,0.10), transparent 24%),
        linear-gradient(180deg, rgba(15,23,42,0.98), rgba(9,16,30,0.99));
      box-shadow: 0 24px 60px rgba(0,0,0,0.30);
      overflow: hidden;
    }

    .success-state.active {
      display: block;
      animation: fadeUp .35s ease;
    }

    .success-top {
      padding: 26px 28px 20px;
      background: linear-gradient(135deg, rgba(245,158,11,0.16), rgba(251,146,60,0.10));
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }

    .success-brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 18px;
    }

    .success-brand img {
     /* width: 44px;*/
      height: 44px;
      object-fit: contain;
      border-radius: 12px;
      background: rgba(255,255,255,0.08);
      padding: 6px;
    }

    .success-brand span {
      color: #ffd79f;
      font-size: 13px;
      font-weight: 800;
      letter-spacing: .08em;
      text-transform: uppercase;
    }

    .success-badge {

      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 58px;
      height: 58px;
      border-radius: 20px;
      background: linear-gradient(135deg, rgba(34,197,94,0.24), rgba(16,185,129,0.18));
      border: 1px solid rgba(74, 222, 128, 0.35);
      color: #dcfce7;
      font-size: 30px;
      font-weight: 800;
      margin-bottom: 18px;
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
      display: none;
    }

    .success-state h3 {
      margin: 0 0 10px;
      color: var(--white);
      font-size: clamp(1.55rem, 2.2vw, 2.05rem);
      line-height: 1.14;
    }

    .success-state p {
      margin: 0;
      color: var(--muted);
      max-width: 640px;
    }

    .success-body {
      padding: 24px 28px 28px;
    }

    .success-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
      margin: 0 0 18px;
    }

    .success-chip {
      border-radius: 20px;
      padding: 18px;
      border: 1px solid rgba(255,255,255,0.08);
      background: rgba(255,255,255,0.03);
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
    }

    .success-chip strong {
      display: block;
      color: #ffd79f;
      font-size: 12px;
      margin-bottom: 8px;
      text-transform: uppercase;
      letter-spacing: .08em;
    }

    .success-chip span {
      color: var(--white);
      font-weight: 700;
      font-size: 15px;
      line-height: 1.5;
    }

    .success-note {
      padding: 16px 18px;
      border-radius: 18px;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      color: #cbd8eb;
      line-height: 1.7;
      margin-top: 8px;
    }

    .success-actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      margin-top: 22px;
    }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(8px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @media (max-width: 860px) {
      .success-grid { grid-template-columns: 1fr; }
    }

  