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

    /* ── TOKENS ── */
    :root {
      --navy:      #050d1f;
      --navy2:     #0d1a3a;
      --blue:      #1a56db;
      --blue2:     #3b82f6;
      --glow:      #60a5fa;
      --accent:    #00d4ff;
      --white:     #ffffff;
      --g100:      #f8fafc;
      --g200:      #e2e8f0;
      --g400:      #94a3b8;
      --g600:      #475569;
      --r-sm:  8px;
      --r-md: 16px;
      --r-lg: 24px;
      --r-xl: 32px;
      --sh-sm: 0 2px 8px rgba(0,0,0,.08);
      --sh-md: 0 8px 32px rgba(0,0,0,.12);
      --sh-lg: 0 20px 60px rgba(0,0,0,.16);
      --sh-bl: 0 8px 32px rgba(26,86,219,.28);
      --tr: all .3s cubic-bezier(.4,0,.2,1);
    }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Inter', sans-serif;
      background: var(--white);
      color: var(--navy);
      line-height: 1.65;
      overflow-x: hidden;
    }
    html[lang="ku"] body { font-family: 'Noto Naskh Arabic', 'Inter', sans-serif; }

    /* ── UTILS ── */
    .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

    .tag {
      display: inline-block;
      font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
      color: var(--blue2);
      background: rgba(59,130,246,.1);
      padding: 6px 16px; border-radius: 100px; margin-bottom: 16px;
    }
    .sec-title {
      font-size: clamp(28px,4vw,44px); font-weight: 900;
      color: var(--navy); margin-bottom: 14px; line-height: 1.15;
    }
    .sec-sub {
      font-size: 17px; color: var(--g600); max-width: 560px;
      margin: 0 auto; line-height: 1.75;
    }
    .sec-hdr { text-align: center; margin-bottom: 64px; }

    /* ── BUTTONS ── */
    .btn {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 14px 30px; border-radius: 100px;
      font-weight: 700; font-size: 15px; font-family: inherit;
      text-decoration: none; cursor: pointer; border: none;
      transition: var(--tr); white-space: nowrap;
    }
    .btn-primary {
      background: linear-gradient(135deg,var(--blue),var(--blue2));
      color: var(--white); box-shadow: var(--sh-bl);
    }
    .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 48px rgba(26,86,219,.4); }
    .btn-ghost {
      background: rgba(255,255,255,.08);
      color: rgba(255,255,255,.85);
      border: 1.5px solid rgba(255,255,255,.18);
      backdrop-filter: blur(8px);
    }
    .btn-ghost:hover { background: rgba(255,255,255,.14); transform: translateY(-3px); }
    .btn-outline-dark {
      background: transparent; color: var(--navy);
      border: 2px solid var(--g200);
    }
    .btn-outline-dark:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-2px); }

    /* ── NAVBAR ── */
    .navbar {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      padding: 18px 0; transition: var(--tr);
    }
    .navbar.scrolled {
      background: rgba(255,255,255,.97);
      backdrop-filter: blur(24px);
      box-shadow: 0 1px 0 rgba(0,0,0,.07), var(--sh-sm);
      padding: 12px 0;
    }
    .nb { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
    .nb-logo img { height: 42px; width: auto; display: block; }
    .nb-nav { display: flex; align-items: center; gap: 4px; list-style: none; }
    .nb-nav a {
      text-decoration: none; color: var(--g600);
      font-weight: 500; font-size: 14px;
      padding: 8px 13px; border-radius: var(--r-sm); transition: var(--tr);
    }
    .nb-nav a:hover { color: var(--navy); background: var(--g100); }
    .nb-right { display: flex; align-items: center; gap: 12px; }

    /* lang switcher */
    .ls {
      display: flex; align-items: center;
      background: var(--g100); border-radius: 100px; padding: 3px; gap: 2px;
    }
    .lb {
      padding: 5px 13px; border-radius: 100px; border: none;
      font-size: 12px; font-weight: 700; color: var(--g600);
      cursor: pointer; background: transparent; transition: var(--tr);
      font-family: inherit;
    }
    .lb.active { background: var(--white); color: var(--navy); box-shadow: var(--sh-sm); }

    /* nav cta */
    .nav-cta { font-size: 13px !important; padding: 9px 18px !important; }

    /* hamburger */
    .hbg {
      display: none; flex-direction: column; gap: 5px;
      cursor: pointer; padding: 6px; border: none; background: transparent;
    }
    .hbg span {
      display: block; width: 22px; height: 2px;
      background: var(--navy); border-radius: 2px; transition: var(--tr);
    }

    /* mobile menu */
    .mob-menu {
      display: none; position: fixed; inset: 0;
      background: var(--white); z-index: 1100;
      flex-direction: column; align-items: center; justify-content: center; gap: 36px;
    }
    .mob-menu.open { display: flex; }
    .mob-menu a {
      font-size: 22px; font-weight: 800; color: var(--navy);
      text-decoration: none; transition: var(--tr);
    }
    .mob-menu a:hover { color: var(--blue); }
    .mob-close {
      position: absolute; top: 20px; right: 20px;
      font-size: 28px; cursor: pointer; background: none; border: none; color: var(--navy);
    }

    /* ── HERO ── */
    .hero {
      min-height: 100vh; display: flex; align-items: center;
      background: var(--navy); position: relative; overflow: hidden;
      padding: 130px 0 100px;
    }
    .hero-bg {
      position: absolute; inset: 0;
      background:
        radial-gradient(ellipse 90% 60% at 50% -5%, rgba(26,86,219,.45) 0%, transparent 65%),
        radial-gradient(ellipse 50% 50% at 85% 80%, rgba(0,212,255,.18) 0%, transparent 55%),
        linear-gradient(180deg, #050d1f 0%, #071228 100%);
    }
    .orb {
      position: absolute; border-radius: 50%;
      filter: blur(90px); opacity: .35; pointer-events: none;
    }
    .orb1 {
      width: 600px; height: 600px;
      background: radial-gradient(circle, rgba(26,86,219,.7), transparent);
      top: -250px; left: -150px;
      animation: orb-float 10s ease-in-out infinite;
    }
    .orb2 {
      width: 450px; height: 450px;
      background: radial-gradient(circle, rgba(0,212,255,.5), transparent);
      bottom: -150px; right: -80px;
      animation: orb-float 12s ease-in-out infinite reverse;
    }
    @keyframes orb-float {
      0%,100% { transform: translate(0,0) scale(1); }
      50%      { transform: translate(20px,-40px) scale(1.08); }
    }
    .hero-grid {
      position: absolute; inset: 0;
      background-image: radial-gradient(circle, rgba(255,255,255,.055) 1px, transparent 1px);
      background-size: 44px 44px;
    }
    .hero-content {
      position: relative; z-index: 1;
      text-align: center; max-width: 820px; margin: 0 auto;
    }
    .hero-badge {
      display: inline-flex; align-items: center; gap: 10px;
      background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
      border-radius: 100px; padding: 8px 22px; font-size: 13px;
      color: rgba(255,255,255,.75); margin-bottom: 36px;
      backdrop-filter: blur(12px);
    }
    .badge-dot {
      width: 7px; height: 7px; background: var(--accent);
      border-radius: 50%; flex-shrink: 0;
      animation: blink 2.2s ease-in-out infinite;
    }
    @keyframes blink {
      0%,100% { opacity:1; transform:scale(1); }
      50%      { opacity:.4; transform:scale(.75); }
    }
    .hero-title {
      font-size: clamp(38px,6.5vw,74px); font-weight: 900;
      color: var(--white); line-height: 1.08; margin-bottom: 26px;
      letter-spacing: -1.5px;
    }
    .grad { background: linear-gradient(135deg,var(--glow),var(--accent)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
    .hero-sub {
      font-size: 18px; color: rgba(255,255,255,.6);
      max-width: 580px; margin: 0 auto 44px; line-height: 1.8;
    }
    .hero-btns { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }

    /* scroll cue */
    .scroll-cue {
      position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
      display: flex; flex-direction: column; align-items: center; gap: 6px;
      color: rgba(255,255,255,.3); font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
    }
    .scroll-line {
      width: 1px; height: 44px;
      background: linear-gradient(to bottom,rgba(255,255,255,.35),transparent);
      animation: sc 2s ease-in-out infinite;
    }
    @keyframes sc {
      0%   { opacity:0; transform: scaleY(0); transform-origin: top; }
      50%  { opacity:1; transform: scaleY(1); }
      100% { opacity:0; transform: scaleY(0); transform-origin: bottom; }
    }

    /* ── SERVICES ── */
    .services { padding: 110px 0; background: var(--white); }
    .srv-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 24px; }
    .srv-card {
      background: var(--white); border: 1.5px solid var(--g200);
      border-radius: var(--r-lg); padding: 36px 32px;
      transition: var(--tr); position: relative; overflow: hidden;
    }
    .srv-card::after {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(135deg,rgba(26,86,219,.03),rgba(0,212,255,.03));
      opacity: 0; transition: var(--tr);
    }
    .srv-card:hover { transform: translateY(-7px); box-shadow: var(--sh-lg); border-color: rgba(26,86,219,.22); }
    .srv-card:hover::after { opacity: 1; }
    .srv-icon {
      width: 58px; height: 58px; border-radius: var(--r-md);
      display: flex; align-items: center; justify-content: center; font-size: 26px;
      background: linear-gradient(135deg,rgba(26,86,219,.1),rgba(59,130,246,.15));
      margin-bottom: 22px; position: relative; z-index: 1;
    }
    .srv-title { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 10px; position: relative; z-index: 1; }
    .srv-desc  { font-size: 14px; color: var(--g600); line-height: 1.7; position: relative; z-index: 1; }

    /* ── SAMPLES ── */
    .samples { padding: 110px 0; background: var(--g100); }
    .smp-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(260px,1fr)); gap: 28px; }
    .smp-card {
      background: var(--white); border-radius: var(--r-lg);
      overflow: hidden; box-shadow: var(--sh-sm); transition: var(--tr);
    }
    .smp-card:hover { transform: translateY(-9px); box-shadow: var(--sh-lg); }
    .smp-img {
      height: 200px; display: flex; align-items: center; justify-content: center;
      font-size: 50px; position: relative; overflow: hidden;
    }
    .smp-img::after {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(to top,rgba(0,0,0,.25),transparent);
    }
    .si-rest   { background: linear-gradient(135deg,#1a1a2e,#16213e); }
    .si-beauty { background: linear-gradient(135deg,#2d1b69,#11998e); }
    .si-corp   { background: linear-gradient(135deg,#0f3460,#533483); }
    .si-pers   { background: linear-gradient(135deg,#1a1a2e,#c62a47); }
    .smp-body  { padding: 26px; }
    .smp-tag   { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--blue); margin-bottom: 6px; display: block; }
    .smp-name  { font-size: 18px; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
    .smp-desc  { font-size: 14px; color: var(--g600); line-height: 1.65; margin-bottom: 20px; }
    .smp-btn   {
      display: inline-flex; align-items: center; gap: 6px;
      font-size: 13px; font-weight: 700; color: var(--blue);
      text-decoration: none;
      border: none; background: none; cursor: pointer; padding: 0;
      font-family: inherit; transition: var(--tr);
    }
    .smp-btn:hover { gap: 10px; }

    /* ── PRICING ── */
    .pricing {
      padding: 110px 0; background: var(--navy);
      position: relative; overflow: hidden;
    }
    .pricing::before {
      content: ''; position: absolute; inset: 0;
      background:
        radial-gradient(ellipse 55% 55% at 20% 50%, rgba(26,86,219,.22), transparent),
        radial-gradient(ellipse 40% 40% at 80% 50%, rgba(0,212,255,.12), transparent);
      pointer-events: none;
    }
    .pricing .sec-title { color: var(--white); }
    .pricing .sec-sub   { color: rgba(255,255,255,.55); }
    .pricing .tag       { background: rgba(59,130,246,.15); color: var(--glow); }

    .pr-grid {
      display: grid; grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
      gap: 32px; max-width: 820px; margin: 0 auto; position: relative; z-index: 1;
    }
    .pr-card {
      background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
      border-radius: var(--r-xl); padding: 48px 40px;
      backdrop-filter: blur(20px); transition: var(--tr); position: relative;
    }
    .pr-card.feat {
      background: linear-gradient(145deg,rgba(26,86,219,.32),rgba(59,130,246,.18));
      border-color: rgba(59,130,246,.45);
      transform: scale(1.03);
      box-shadow: 0 0 60px rgba(26,86,219,.3);
    }
    .pr-card.feat:hover { transform: scale(1.03) translateY(-7px); }
    .pr-card:not(.feat):hover { transform: translateY(-7px); border-color: rgba(255,255,255,.2); }
    .pr-badge {
      position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
      background: linear-gradient(135deg,var(--blue),var(--blue2));
      color: var(--white); font-size: 11px; font-weight: 800;
      letter-spacing: 1px; padding: 6px 20px; border-radius: 100px; white-space: nowrap;
    }
    .pr-plan  { font-size: 13px; font-weight: 700; color: rgba(255,255,255,.55); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 18px; }
    .pr-price { font-size: 60px; font-weight: 900; color: var(--white); line-height: 1; margin-bottom: 6px; }
    .pr-price sup { font-size: 26px; vertical-align: super; }
    .pr-per   { font-size: 13px; color: rgba(255,255,255,.45); margin-bottom: 32px; }
    .pr-div   { height: 1px; background: rgba(255,255,255,.1); margin-bottom: 30px; }
    .pr-feats { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-bottom: 40px; }
    .pr-feats li {
      display: flex; align-items: center; gap: 12px;
      color: rgba(255,255,255,.82); font-size: 15px;
    }
    .pr-feats li .chk {
      width: 20px; height: 20px; border-radius: 50%;
      background: rgba(59,130,246,.25); color: var(--glow);
      display: flex; align-items: center; justify-content: center;
      font-size: 10px; font-weight: 800; flex-shrink: 0;
    }
    [dir="rtl"] .pr-feats li { flex-direction: row-reverse; }

    /* ── HOW IT WORKS ── */
    .hiw { padding: 110px 0; background: var(--white); }
    .steps {
      display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
      gap: 40px; position: relative;
    }
    .steps::before {
      content: ''; position: absolute; top: 34px; left: 12%; right: 12%; height: 2px;
      background: linear-gradient(to right,var(--blue),var(--accent)); opacity: .18;
    }
    [dir="rtl"] .steps::before { background: linear-gradient(to left,var(--blue),var(--accent)); }
    .step { text-align: center; }
    .step-n {
      width: 68px; height: 68px; border-radius: 50%;
      background: linear-gradient(135deg,var(--blue),var(--blue2));
      color: var(--white); font-size: 22px; font-weight: 900;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 24px; box-shadow: 0 8px 28px rgba(26,86,219,.38);
      position: relative; z-index: 1;
    }
    .step-t { font-size: 17px; font-weight: 800; color: var(--navy); margin-bottom: 10px; }
    .step-d { font-size: 14px; color: var(--g600); line-height: 1.7; }

    /* ── FORM ── */
    .rform { padding: 110px 0; background: var(--g100); }
    .fw {
      max-width: 820px; margin: 0 auto;
      background: var(--white); border-radius: var(--r-xl);
      padding: 64px 60px; box-shadow: var(--sh-lg);
    }
    .fg { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
    .grp { display: flex; flex-direction: column; gap: 7px; }
    .grp.full { grid-column: 1/-1; }
    .lbl { font-size: 13px; font-weight: 700; color: var(--navy); }
    .inp, .sel, .txa {
      padding: 13px 17px; border: 2px solid var(--g200);
      border-radius: var(--r-md); font-size: 15px; font-family: inherit;
      color: var(--navy); background: var(--white);
      transition: var(--tr); outline: none; width: 100%;
      appearance: none; -webkit-appearance: none;
    }
    .inp:focus, .sel:focus, .txa:focus {
      border-color: var(--blue); box-shadow: 0 0 0 4px rgba(26,86,219,.1);
    }
    .txa { resize: vertical; min-height: 120px; }
    .fsub {
      width: 100%; padding: 17px; font-size: 16px; font-weight: 800;
      font-family: inherit;
      background: linear-gradient(135deg,var(--blue),var(--blue2));
      color: var(--white); border: none; border-radius: var(--r-md);
      cursor: pointer; transition: var(--tr); box-shadow: var(--sh-bl); margin-top: 10px;
    }
    .fsub:hover { transform: translateY(-3px); box-shadow: 0 14px 44px rgba(26,86,219,.42); }

    /* ── FOOTER ── */
    footer { background: var(--navy); color: rgba(255,255,255,.65); padding: 72px 0 32px; }
    .ft-inner {
      display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px;
      padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.07); margin-bottom: 32px;
    }
    .ft-brand img { height: 40px; margin-bottom: 18px; }
    .ft-brand p  { font-size: 15px; line-height: 1.75; max-width: 290px; }
    .ft-ttl { font-size: 12px; font-weight: 800; color: var(--white); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 22px; }
    .ft-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .ft-links a { color: rgba(255,255,255,.55); text-decoration: none; font-size: 15px; transition: var(--tr); }
    .ft-links a:hover { color: var(--white); }
    .ft-ci { display: flex; align-items: center; gap: 10px; font-size: 15px; margin-bottom: 12px; }
    .ft-ci a { color: rgba(255,255,255,.55); text-decoration: none; transition: var(--tr); }
    .ft-ci a:hover { color: var(--white); }
    [dir="rtl"] .ft-ci { flex-direction: row-reverse; }
    .ft-bot { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
    .ft-copy { font-size: 13px; }

    /* ── REVEAL ── */
    .rv { opacity:0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
    .rv.vis { opacity:1; transform: translateY(0); }
    .rv.d1 { transition-delay: .1s; }
    .rv.d2 { transition-delay: .2s; }
    .rv.d3 { transition-delay: .3s; }
    .rv.d4 { transition-delay: .4s; }

    /* ── RTL ── */
    [dir="rtl"] .sec-hdr,
    [dir="rtl"] .hero-content,
    [dir="rtl"] .srv-card,
    [dir="rtl"] .smp-body,
    [dir="rtl"] .step,
    [dir="rtl"] .fw,
    [dir="rtl"] .ft-inner,
    [dir="rtl"] .ft-brand p { text-align: right; direction: rtl; }
    [dir="rtl"] .nb-nav { direction: rtl; }
    [dir="rtl"] .hero-btns { direction: rtl; }
    [dir="rtl"] .ft-bot { direction: rtl; }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      .ft-inner { grid-template-columns: 1fr 1fr; }
      .ft-brand { grid-column: 1/-1; }
    }
    @media (max-width: 768px) {
      .nb-nav, .nav-cta { display: none !important; }
      .hbg { display: flex; }
      .fw  { padding: 36px 24px; }
      .fg  { grid-template-columns: 1fr; }
      .grp.full { grid-column: 1; }
      .ft-inner { grid-template-columns: 1fr; }
      .ft-bot { flex-direction: column; text-align: center; }
      .pr-card.feat { transform: scale(1); }
      .pr-card.feat:hover { transform: translateY(-7px); }
      .steps::before { display: none; }
    }
    @media (max-width: 480px) {
      .hero-title { font-size: 34px; letter-spacing: -1px; }
      .pr-price { font-size: 48px; }
    }
  

/* PHP integration states */
.form-alert {
  display: none;
  margin-bottom: 18px;
  padding: 14px 18px;
  border-radius: var(--r-md);
  font-weight: 700;
  line-height: 1.55;
}
.form-alert.ok {
  display: block;
  color: #065f46;
  background: #d1fae5;
  border: 1px solid #a7f3d0;
}
.form-alert.err {
  display: block;
  color: #991b1b;
  background: #fee2e2;
  border: 1px solid #fecaca;
}
