:root {
  --ink: #102c2d;
  --ink-2: #234748;
  --teal: #0b5b59;
  --teal-dark: #073f3f;
  --mint: #c6f06f;
  --mint-soft: #edf9d6;
  --paper: #f6f8f3;
  --white: #fff;
  --sand: #ece9df;
  --muted: #647373;
  --line: #dce4df;
  --danger: #bb3e3e;
  --warning: #bf7a20;
  --success: #17805f;
  --shadow: 0 24px 70px rgba(6, 52, 52, .12);
  --radius: 22px;
  --font: "SF Arabic", "Segoe UI", Tahoma, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; overflow-x: hidden; color: var(--ink); background: var(--paper); font-family: var(--font); font-size: 15px; line-height: 1.7; -webkit-font-smoothing: antialiased; }
body.modal-open, body.app-open { overflow: hidden; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
.hidden { display: none !important; }
.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.skip-link { position: fixed; z-index: 9999; top: 12px; right: 12px; transform: translateY(-160%); padding: 10px 16px; border-radius: 10px; background: var(--white); color: var(--teal); }
.skip-link:focus { transform: translateY(0); }

.site-header { position: fixed; z-index: 50; inset: 0 0 auto; height: 82px; display: flex; align-items: center; transition: .25s ease; }
.site-header.scrolled { height: 70px; background: rgba(246,248,243,.92); border-bottom: 1px solid rgba(11,91,89,.1); backdrop-filter: blur(16px); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 11px; flex: 0 0 auto; }
.brand-mark { width: 37px; height: 40px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; align-items: end; transform: skewY(-8deg); }
.brand-mark span { display: block; background: var(--teal); border-radius: 3px 3px 1px 1px; }
.brand-mark span:nth-child(1) { height: 55%; }
.brand-mark span:nth-child(2) { height: 80%; }
.brand-mark span:nth-child(3) { height: 100%; background: var(--mint); }
.brand-copy { display: grid; line-height: 1; }
.brand-copy strong { font-family: var(--font); font-size: 20px; font-weight: 800; }
.brand-copy small { margin-top: 5px; color: var(--muted); font-size: 8px; font-weight: 800; letter-spacing: .3em; }
.main-nav { display: flex; align-items: center; gap: 30px; margin-inline-start: auto; }
.main-nav a { color: var(--ink-2); font-size: 13px; font-weight: 600; position: relative; }
.main-nav a::after { content: ""; position: absolute; right: 0; bottom: -7px; width: 0; height: 2px; background: var(--teal); transition: width .2s; }
.main-nav a:hover::after { width: 100%; }
.header-actions { display: flex; align-items: center; gap: 8px; }
.language-toggle { min-width: 38px; height: 38px; border: 1px solid rgba(11,91,89,.2); border-radius: 10px; background: rgba(255,255,255,.55); color: var(--teal); font-size: 10px; font-weight: 800; letter-spacing: .04em; cursor: pointer; }
.btn { border: 0; border-radius: 12px; padding: 11px 18px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; font-size: 13px; font-weight: 700; cursor: pointer; transition: transform .2s, box-shadow .2s, background .2s, opacity .2s; }
.btn:hover { transform: translateY(-2px); }
.btn:disabled { cursor: not-allowed; opacity: .5; transform: none; }
.btn-primary { background: var(--teal); color: var(--white); box-shadow: 0 10px 24px rgba(11,91,89,.2); }
.btn-primary:hover { background: var(--teal-dark); box-shadow: 0 14px 30px rgba(11,91,89,.26); }
.btn-ghost { background: transparent; }
.btn-ghost:hover { background: rgba(11,91,89,.08); }
.btn-soft { background: #e4ebe5; color: var(--ink); }
.btn-light { background: var(--mint); color: var(--teal-dark); }
.btn-light:hover { background: #d6fb84; }
.btn-large { padding: 15px 23px; border-radius: 14px; }
.btn-block { width: 100%; }
.text-button { border: 0; padding: 8px; background: none; color: var(--teal); font-size: 12px; font-weight: 600; cursor: pointer; }
.menu-button { display: none; width: 42px; height: 42px; border: 0; border-radius: 10px; background: transparent; padding: 10px; cursor: pointer; }
.menu-button span { display: block; height: 2px; margin: 5px 0; background: var(--ink); border-radius: 9px; }

.hero { min-height: 760px; padding-top: 150px; overflow: hidden; position: relative; background: radial-gradient(circle at 4% 38%, rgba(198,240,111,.2), transparent 26%), var(--paper); }
.hero::before { content: ""; position: absolute; width: 580px; height: 580px; border: 1px solid rgba(11,91,89,.08); border-radius: 50%; left: -250px; top: 70px; box-shadow: 0 0 0 85px rgba(11,91,89,.025), 0 0 0 170px rgba(11,91,89,.018); }
.hero-grid { min-height: 540px; display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: center; }
.eyebrow, .section-kicker { display: inline-flex; align-items: center; gap: 9px; color: var(--teal); font-size: 11px; font-weight: 800; letter-spacing: .04em; }
.live-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 0 5px rgba(198,240,111,.3); }
.hero h1 { margin: 18px 0 18px; font-family: var(--font); font-size: clamp(48px, 6.3vw, 78px); font-weight: 800; line-height: 1.22; letter-spacing: -.055em; }
.hero h1 em { color: var(--teal); font-style: normal; position: relative; }
.hero h1 em::after { content: ""; position: absolute; right: 4px; left: 8px; bottom: -5px; height: 8px; background: var(--mint); border-radius: 30% 60% 50% 30%; z-index: -1; transform: rotate(-1deg); }
.hero-copy > p { max-width: 570px; margin: 0; color: var(--muted); font-size: 17px; line-height: 1.9; }
.hero-copy, .hero-product, .product-window, .mini-content { min-width: 0; }
.hero-actions { display: flex; gap: 11px; margin-top: 30px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 27px; color: var(--ink-2); font-size: 11px; font-weight: 600; }
.trust-row span { display: inline-flex; align-items: center; gap: 6px; }
.trust-row i { width: 18px; height: 18px; display: inline-grid; place-items: center; border-radius: 50%; background: var(--mint-soft); color: var(--teal); font-style: normal; }
.hero-product { min-height: 520px; position: relative; display: grid; place-items: center; direction: rtl; }
.product-glow { position: absolute; width: 440px; height: 440px; border-radius: 50%; background: rgba(198,240,111,.4); filter: blur(80px); }
.product-window { position: relative; width: min(100%, 620px); border: 1px solid rgba(255,255,255,.7); border-radius: 26px; background: rgba(255,255,255,.84); box-shadow: var(--shadow); backdrop-filter: blur(18px); overflow: hidden; transform: perspective(1000px) rotateY(-4deg) rotateX(2deg); }
.window-top { height: 58px; padding: 0 20px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); }
.window-top > div { display: flex; align-items: center; gap: 8px; font-size: 12px; }
.mini-mark { width: 24px; height: 24px; display: inline-block; border-radius: 7px; background: var(--teal); position: relative; }
.mini-mark::after { content: ""; position: absolute; width: 8px; height: 12px; right: 8px; top: 6px; border: solid var(--mint); border-width: 0 3px 3px 0; transform: rotate(45deg); }
.secure-pill { padding: 5px 9px; border-radius: 20px; background: #ebf7ed; color: var(--success); font-size: 8px; font-weight: 700; }
.window-body { min-height: 365px; display: grid; grid-template-columns: 58px 1fr; direction: ltr; }
.mini-sidebar { padding-top: 27px; display: flex; flex-direction: column; align-items: center; gap: 18px; background: var(--teal-dark); }
.mini-sidebar span { width: 18px; height: 18px; border-radius: 6px; background: rgba(255,255,255,.18); }
.mini-sidebar span.active { background: var(--mint); }
.mini-content { padding: 27px; direction: rtl; }
.mini-greeting { display: flex; justify-content: space-between; align-items: center; }
.mini-greeting b { font-size: 16px; }
.mini-greeting span { color: var(--muted); font-size: 9px; }
.mini-stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; margin-top: 19px; }
.mini-stats article { padding: 13px; border: 1px solid var(--line); border-radius: 13px; background: var(--white); }
.mini-stats small { display: block; color: var(--muted); font-size: 7px; }
.mini-stats strong { display: block; margin: 7px 0 2px; font-size: 17px; }
.mini-stats i { color: var(--warning); font-size: 7px; font-style: normal; }
.mini-stats i.good { color: var(--success); }
.mini-request { margin-top: 14px; padding: 18px; border-radius: 16px; background: #f4f7f3; }
.mini-request-head { display: flex; justify-content: space-between; font-size: 9px; }
.mini-request-head span { color: var(--warning); }
.progress-track { height: 6px; margin: 18px 0; border-radius: 9px; background: #dce3df; overflow: hidden; }
.progress-track i { display: block; height: 100%; border-radius: inherit; background: var(--teal); }
.steps-line { display: flex; justify-content: space-between; position: relative; margin: 0 8px 13px; }
.steps-line::before { content: ""; position: absolute; top: 9px; right: 10px; left: 10px; height: 2px; background: #d7dfda; }
.steps-line span { width: 19px; height: 19px; display: grid; place-items: center; border: 2px solid #d7dfda; border-radius: 50%; background: var(--white); color: var(--muted); font-size: 7px; position: relative; }
.steps-line .done { border-color: var(--teal); background: var(--teal); color: white; }
.steps-line .current { border-color: var(--teal); color: var(--teal); }
.mini-request > small { color: var(--muted); font-size: 8px; }
.floating-card { position: absolute; z-index: 2; display: flex; align-items: center; gap: 10px; padding: 13px 16px; border-radius: 14px; background: var(--white); box-shadow: 0 16px 35px rgba(8,47,47,.16); animation: float 5s ease-in-out infinite; }
.floating-card > span { width: 29px; height: 29px; display: grid; place-items: center; border-radius: 9px; background: var(--mint-soft); color: var(--teal); font-weight: 800; }
.floating-card b, .floating-card small { display: block; }
.floating-card b { font-size: 9px; }.floating-card small { color: var(--muted); font-size: 7px; }
.floating-card-a { left: -5px; top: 90px; }.floating-card-b { right: 3px; bottom: 58px; animation-delay: -2s; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.hero-ticker { margin-top: 70px; border-block: 1px solid rgba(11,91,89,.12); overflow: hidden; background: rgba(255,255,255,.45); }
.hero-ticker > div { min-width: max-content; height: 64px; display: flex; align-items: center; justify-content: space-around; gap: 55px; padding-inline: 35px; color: var(--ink-2); font-size: 12px; font-weight: 700; }
.hero-ticker i { color: var(--mint); font-size: 9px; }

.section { padding: 110px 0; }
.section-heading { display: grid; grid-template-columns: 1.1fr .7fr; gap: 100px; align-items: end; margin-bottom: 50px; }
.section-heading h2, .how-copy h2, .cta-box h2 { margin: 12px 0 0; font-family: var(--font); font-size: clamp(34px, 4vw, 52px); font-weight: 800; line-height: 1.45; letter-spacing: -.035em; }
.section-heading > p { margin: 0 0 8px; color: var(--muted); font-size: 15px; }
.services-section { background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.service-card { min-height: 260px; padding: 23px; border: 1px solid var(--line); border-radius: 18px; background: var(--white); display: flex; flex-direction: column; position: relative; overflow: hidden; transition: .25s ease; cursor: pointer; }
.service-card::after { content: ""; position: absolute; width: 90px; height: 90px; border-radius: 50%; left: -50px; bottom: -50px; background: var(--mint); opacity: 0; transition: .25s; }
.service-card:hover { transform: translateY(-5px); border-color: rgba(11,91,89,.45); box-shadow: 0 18px 42px rgba(8,52,52,.09); }
.service-card:hover::after { opacity: .45; transform: scale(1.4); }
.service-icon { width: 47px; height: 47px; display: grid; place-items: center; margin-bottom: 24px; border-radius: 13px; background: var(--mint-soft); color: var(--teal); font-size: 23px; }
.service-card h3 { margin: 0 0 9px; font-size: 16px; line-height: 1.5; }
.service-card p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.8; }
.service-card button { margin-top: auto; padding: 14px 0 0; border: 0; background: none; color: var(--teal); text-align: right; font-size: 11px; font-weight: 800; cursor: pointer; }
.service-card.featured { background: var(--teal-dark); color: white; border-color: var(--teal-dark); }
.service-card.featured p { color: rgba(255,255,255,.67); }.service-card.featured button { color: var(--mint); }

.how-section { padding: 0; background: var(--teal-dark); color: white; }
.how-grid { min-height: 690px; display: grid; grid-template-columns: .85fr 1.15fr; gap: 90px; align-items: center; }
.section-kicker.light { color: var(--mint); }
.how-copy p { max-width: 450px; color: rgba(255,255,255,.68); }
.how-copy .btn { margin-top: 25px; }
.steps-list { border-top: 1px solid rgba(255,255,255,.15); }
.steps-list article { min-height: 130px; padding: 26px 0; display: grid; grid-template-columns: 55px 1fr; gap: 22px; border-bottom: 1px solid rgba(255,255,255,.15); }
.steps-list article > span { color: var(--mint); font-size: 11px; font-weight: 800; }
.steps-list h3 { margin: 0 0 6px; font-size: 18px; }.steps-list p { max-width: 510px; margin: 0; color: rgba(255,255,255,.6); font-size: 12px; }

.value-section { background: #eef1ea; }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.value-grid article { min-height: 245px; padding: 27px; border: 1px solid rgba(11,91,89,.11); border-radius: 18px; background: rgba(255,255,255,.65); }
.value-grid article h3 { margin: 45px 0 8px; font-size: 17px; }.value-grid article p { margin: 0; color: var(--muted); font-size: 12px; }
.value-main { grid-column: span 2; background: var(--white) !important; position: relative; overflow: hidden; }
.value-main h3 { margin-top: 32px !important; }.value-main p { max-width: 400px; }
.value-number { color: var(--teal); font-size: 11px; font-weight: 800; }
.value-icon { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 12px; background: var(--mint-soft); color: var(--teal); font-size: 22px; }
.folders-visual { position: absolute; left: 25px; bottom: 20px; width: 235px; height: 160px; }
.folders-visual span { position: absolute; width: 135px; height: 86px; padding: 15px; border-radius: 12px; background: var(--teal); color: white; font-size: 10px; font-weight: 700; box-shadow: 0 12px 24px rgba(7,63,63,.16); transform: rotate(-7deg); }
.folders-visual span:nth-child(2) { left: 40px; top: 20px; background: #397776; transform: rotate(5deg); }.folders-visual span:nth-child(3) { left: 78px; top: 40px; background: #8bab76; transform: rotate(-2deg); }.folders-visual span:nth-child(4) { left: 102px; top: 65px; background: var(--mint); color: var(--teal-dark); transform: rotate(7deg); }

.cta-section { padding: 90px 0; background: var(--white); }
.cta-box { min-height: 330px; padding: 60px; border-radius: 26px; background: var(--teal); color: white; display: flex; justify-content: space-between; align-items: end; position: relative; overflow: hidden; }
.cta-box::before { content: ""; position: absolute; width: 400px; height: 400px; border: 1px solid rgba(255,255,255,.1); border-radius: 50%; left: -80px; top: -210px; box-shadow: 0 0 0 60px rgba(255,255,255,.035), 0 0 0 120px rgba(255,255,255,.025); }
.cta-actions { display: grid; gap: 15px; position: relative; }.cta-actions a { color: rgba(255,255,255,.75); font-size: 11px; text-align: center; }
.site-footer { padding: 70px 0 25px; background: #082e2f; color: white; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 70px; padding-bottom: 60px; }
.brand-light .brand-copy small { color: rgba(255,255,255,.5); }.brand-light .brand-mark span { background: white; }.brand-light .brand-mark span:last-child { background: var(--mint); }
.footer-grid > div:first-child p { color: rgba(255,255,255,.53); font-size: 12px; }
.footer-grid h3 { margin: 0 0 15px; color: var(--mint); font-size: 12px; }.footer-grid a, .footer-grid button, .footer-grid span { display: block; margin: 8px 0; border: 0; padding: 0; background: none; color: rgba(255,255,255,.63); font-size: 11px; text-align: right; cursor: pointer; }
.footer-grid a:hover, .footer-grid button:hover { color: white; }
.footer-bottom { padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; color: rgba(255,255,255,.66); font-size: 9px; }

.modal { position: fixed; z-index: 100; inset: 0; display: grid; place-items: center; padding: 20px; visibility: hidden; opacity: 0; transition: .2s; }
.modal.open { visibility: visible; opacity: 1; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(4,28,29,.68); backdrop-filter: blur(8px); }
.modal-card { position: relative; width: min(100%, 470px); max-height: calc(100vh - 40px); overflow: auto; padding: 35px; border-radius: 24px; background: var(--white); box-shadow: 0 35px 100px rgba(0,0,0,.28); transform: translateY(14px) scale(.98); transition: .22s; }
.modal.open .modal-card { transform: translateY(0) scale(1); }
.modal-close { position: absolute; z-index: 2; top: 15px; left: 15px; width: 34px; height: 34px; border: 0; border-radius: 50%; background: #eef1ed; color: var(--muted); font-size: 23px; cursor: pointer; }
.auth-brand { display: flex; align-items: center; gap: 8px; color: var(--teal); font-size: 10px; font-weight: 700; }
.modal-card h2 { margin: 19px 0 5px; font-family: var(--font); font-size: 27px; font-weight: 800; }.modal-card > p { margin: 0 0 22px; color: var(--muted); font-size: 12px; }
.auth-tabs { display: grid; grid-template-columns: 1fr 1fr; gap: 5px; padding: 4px; margin-bottom: 20px; border-radius: 12px; background: #edf1ed; }
.auth-tabs button { border: 0; padding: 9px; border-radius: 9px; background: transparent; font-size: 11px; font-weight: 700; cursor: pointer; }.auth-tabs button.active { background: white; box-shadow: 0 3px 10px rgba(0,0,0,.06); }
label { display: grid; gap: 7px; margin-bottom: 14px; color: var(--ink-2); font-size: 11px; font-weight: 700; }
label small { color: var(--muted); font-weight: 400; }
input, textarea, select { width: 100%; border: 1px solid var(--line); border-radius: 11px; padding: 12px 14px; outline: none; background: #fbfcfa; color: var(--ink); transition: border .2s, box-shadow .2s; }
textarea { resize: vertical; }
input:focus, textarea:focus, select:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(11,91,89,.1); }
.register-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 0 12px; }.register-fields label:first-child { grid-column: 1 / -1; }
.auth-legal { display: block; margin-top: 15px; color: var(--muted); text-align: center; font-size: 8px; }
.form-message { min-height: 20px; margin-top: 7px; color: var(--danger); font-size: 10px; text-align: center; }
.request-card { width: min(100%, 850px); padding: 35px 40px; }
.wizard-head { display: flex; align-items: end; justify-content: space-between; gap: 30px; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.wizard-head h2 { margin-bottom: 0; }.wizard-progress { display: flex; align-items: center; direction: rtl; }.wizard-progress span { width: 30px; height: 30px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--muted); font-size: 10px; font-weight: 800; }.wizard-progress span.active { border-color: var(--teal); background: var(--teal); color: white; }.wizard-progress i { width: 35px; height: 1px; background: var(--line); }
.wizard-step { display: none; padding-top: 23px; }.wizard-step.active { display: block; }.step-intro { color: var(--muted); font-size: 12px; }
.wizard-services { display: grid; grid-template-columns: repeat(4, 1fr); gap: 9px; margin-top: 17px; }
.wizard-service { min-height: 125px; border: 1px solid var(--line); border-radius: 13px; padding: 13px; background: white; text-align: right; cursor: pointer; transition: .18s; }.wizard-service:hover, .wizard-service.selected { border-color: var(--teal); background: var(--mint-soft); }.wizard-service span { display: block; font-size: 21px; }.wizard-service b { display: block; margin-top: 9px; font-size: 10px; line-height: 1.6; }
.wizard-actions { display: flex; justify-content: space-between; gap: 10px; margin-top: 26px; padding-top: 18px; border-top: 1px solid var(--line); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 16px; }.form-grid .full { grid-column: 1 / -1; }
.request-review { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; padding: 18px; border: 1px solid var(--line); border-radius: 14px; background: #f6f8f4; }.review-row { padding: 8px; }.review-row small, .review-row b { display: block; }.review-row small { color: var(--muted); font-size: 9px; }.review-row b { margin-top: 3px; font-size: 12px; }.review-row.full { grid-column: 1 / -1; }
.consent { display: flex; grid-template-columns: none; align-items: flex-start; gap: 9px; margin-top: 17px; font-weight: 500; }.consent input { width: 17px; height: 17px; accent-color: var(--teal); }
.request-success { padding: 45px 10px 20px; text-align: center; }.success-mark { width: 64px; height: 64px; margin: auto; display: grid; place-items: center; border-radius: 50%; background: var(--mint); color: var(--teal-dark); font-size: 28px; font-weight: 800; }.request-success h2 { margin-top: 20px; }.request-success p { max-width: 470px; margin: 0 auto 14px; color: var(--muted); }.request-success b { display: block; margin-bottom: 20px; color: var(--teal); direction: ltr; }

.app-shell { position: fixed; z-index: 80; inset: 0; display: grid; grid-template-columns: 245px 1fr; background: #f2f4f0; direction: rtl; }
.app-sidebar { padding: 25px 18px; display: flex; flex-direction: column; background: var(--teal-dark); color: white; overflow-y: auto; }
.app-sidebar .brand { padding-inline: 8px; color: white; }.app-sidebar .brand-mark span { background: white; }.app-sidebar .brand-mark span:last-child { background: var(--mint); }.app-sidebar .brand-copy small { color: rgba(255,255,255,.45); }
.workspace-label { margin: 30px 7px 16px; padding: 13px; border: 1px solid rgba(255,255,255,.1); border-radius: 12px; background: rgba(255,255,255,.05); }.workspace-label small, .workspace-label strong { display: block; }.workspace-label small { color: rgba(255,255,255,.45); font-size: 8px; }.workspace-label strong { margin-top: 3px; max-width: 170px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 11px; }
.app-sidebar nav { display: grid; gap: 3px; }.app-sidebar nav button { width: 100%; border: 0; border-radius: 10px; padding: 11px 13px; display: flex; align-items: center; gap: 11px; background: transparent; color: rgba(255,255,255,.64); font-size: 11px; text-align: right; cursor: pointer; }.app-sidebar nav button:hover, .app-sidebar nav button.active { background: rgba(255,255,255,.1); color: white; }.app-sidebar nav button.active span { color: var(--mint); }.app-sidebar nav button i { margin-inline-start: auto; min-width: 18px; height: 18px; display: grid; place-items: center; border-radius: 9px; background: var(--mint); color: var(--teal-dark); font-size: 8px; font-style: normal; }.admin-nav { margin-top: 20px; padding-top: 15px; border-top: 1px solid rgba(255,255,255,.1); }.admin-nav small { margin: 0 13px 7px; color: rgba(255,255,255,.35); font-size: 8px; }
.sidebar-help { margin-top: auto; padding: 14px 10px; display: flex; align-items: center; gap: 10px; border: 1px solid rgba(255,255,255,.1); border-radius: 12px; background: rgba(255,255,255,.05); }.sidebar-help > span { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 9px; background: var(--mint); color: var(--teal-dark); font-weight: 800; }.sidebar-help b, .sidebar-help small { display: block; }.sidebar-help b { font-size: 9px; }.sidebar-help small { color: rgba(255,255,255,.5); font-size: 7px; }
.logout-button { border: 0; padding: 15px 12px 3px; background: none; color: rgba(255,255,255,.58); font-size: 10px; text-align: right; cursor: pointer; }
.app-main { min-width: 0; overflow: auto; }.app-header { position: sticky; z-index: 10; top: 0; height: 87px; padding: 0 34px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); background: rgba(242,244,240,.9); backdrop-filter: blur(15px); }.app-header > div:first-of-type small { color: var(--muted); font-size: 8px; }.app-header h1 { margin: 0; font-size: 19px; }.app-header-actions { display: flex; align-items: center; gap: 9px; }.notification-button { width: 39px; height: 39px; border: 1px solid var(--line); border-radius: 11px; background: white; cursor: pointer; position: relative; }.notification-button i { position: absolute; top: 8px; right: 8px; width: 7px; height: 7px; border-radius: 50%; background: #e95858; border: 1px solid white; }.user-chip { border: 0; padding: 4px 5px 4px 12px; display: flex; align-items: center; gap: 9px; border-radius: 12px; background: white; text-align: right; cursor: pointer; }.user-chip > span { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 9px; background: var(--teal); color: white; font-weight: 800; }.user-chip b, .user-chip small { display: block; }.user-chip b { max-width: 125px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 9px; }.user-chip small { color: var(--muted); font-size: 7px; }.app-menu { display: none; border: 0; background: none; font-size: 22px; cursor: pointer; }
.app-content { padding: 30px 34px 70px; }
.dashboard-hero { min-height: 170px; padding: 28px; border-radius: 19px; display: flex; align-items: center; justify-content: space-between; gap: 25px; background: var(--teal); color: white; overflow: hidden; position: relative; }.dashboard-hero::after { content: ""; position: absolute; width: 300px; height: 300px; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; left: -70px; top: -150px; box-shadow: 0 0 0 50px rgba(255,255,255,.03); }.dashboard-hero h2 { margin: 0 0 5px; font-size: 23px; }.dashboard-hero p { margin: 0; color: rgba(255,255,255,.65); font-size: 10px; }.dashboard-hero .btn { position: relative; z-index: 1; }
.kpi-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 16px; }.kpi-card { padding: 19px; border: 1px solid var(--line); border-radius: 15px; background: white; }.kpi-card small { color: var(--muted); font-size: 9px; }.kpi-card strong { display: block; margin-top: 8px; font-size: 25px; }.kpi-card i { color: var(--teal); font-size: 8px; font-style: normal; }
.dashboard-grid { margin-top: 16px; display: grid; grid-template-columns: 1.5fr .8fr; gap: 14px; }.panel { border: 1px solid var(--line); border-radius: 16px; background: white; overflow: hidden; }.panel-head { min-height: 58px; padding: 15px 18px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); }.panel-head h2 { margin: 0; font-size: 13px; }.panel-head button { border: 0; background: none; color: var(--teal); font-size: 9px; font-weight: 700; cursor: pointer; }.panel-body { padding: 16px 18px; }
.request-list, .notification-list, .document-list, .payment-list { display: grid; gap: 9px; }.request-row, .notification-row, .document-row, .payment-row { padding: 13px; display: grid; align-items: center; gap: 12px; border: 1px solid var(--line); border-radius: 12px; background: white; }.request-row { grid-template-columns: 43px 1fr auto; }.row-icon { width: 43px; height: 43px; display: grid; place-items: center; border-radius: 11px; background: var(--mint-soft); color: var(--teal); font-size: 20px; }.row-copy b, .row-copy small { display: block; }.row-copy b { font-size: 10px; }.row-copy small { margin-top: 3px; color: var(--muted); font-size: 8px; }.status { display: inline-flex; align-items: center; gap: 5px; padding: 5px 8px; border-radius: 15px; font-size: 8px; font-weight: 700; white-space: nowrap; }.status::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: currentColor; }.status-new { background: #edf0ff; color: #5367b6; }.status-review { background: #fff1d9; color: #9d681a; }.status-progress { background: #e0f2ed; color: #167157; }.status-waiting { background: #f8e7e7; color: #a44848; }.status-completed, .status-paid { background: #e3f4dc; color: #397b29; }.status-cancelled { background: #ececec; color: #777; }
.quick-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }.quick-action { min-height: 100px; padding: 14px; border: 1px solid var(--line); border-radius: 12px; background: #f8faf7; text-align: right; cursor: pointer; }.quick-action span { font-size: 20px; }.quick-action b { display: block; margin-top: 12px; font-size: 9px; }
.empty-state { padding: 45px 20px; text-align: center; color: var(--muted); }.empty-state span { width: 55px; height: 55px; margin: auto; display: grid; place-items: center; border-radius: 17px; background: var(--mint-soft); color: var(--teal); font-size: 25px; }.empty-state h3 { margin: 14px 0 4px; color: var(--ink); font-size: 13px; }.empty-state p { margin: 0 0 15px; font-size: 9px; }
.page-toolbar { margin-bottom: 14px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }.page-toolbar p { margin: 0; color: var(--muted); font-size: 10px; }.search-box { min-width: 230px; position: relative; }.search-box input { padding-inline-start: 36px; background: white; }.search-box span { position: absolute; inset-inline-start: 13px; top: 12px; color: var(--muted); }
.data-table-wrap { border: 1px solid var(--line); border-radius: 15px; background: white; overflow: auto; }.data-table { width: 100%; border-collapse: collapse; min-width: 760px; }.data-table th { padding: 13px 15px; background: #f6f8f4; color: var(--muted); font-size: 8px; font-weight: 700; text-align: right; }.data-table td { padding: 14px 15px; border-top: 1px solid var(--line); font-size: 9px; }.data-table td strong, .data-table td small { display: block; }.data-table td small { color: var(--muted); }.table-action { border: 1px solid var(--line); border-radius: 8px; padding: 6px 9px; background: white; color: var(--teal); font-size: 8px; font-weight: 700; cursor: pointer; }.table-select { min-width: 115px; padding: 6px 8px; border-radius: 8px; font-size: 8px; }
.document-row { grid-template-columns: 42px 1fr auto auto; }.document-row .file-size { color: var(--muted); font-size: 8px; }.upload-zone { padding: 35px; border: 1.5px dashed #afbfba; border-radius: 16px; background: rgba(255,255,255,.55); text-align: center; cursor: pointer; }.upload-zone.dragover { border-color: var(--teal); background: var(--mint-soft); }.upload-zone span { font-size: 32px; }.upload-zone h3 { margin: 8px 0 2px; font-size: 12px; }.upload-zone p { margin: 0; color: var(--muted); font-size: 9px; }.upload-progress { height: 5px; margin-top: 9px; border-radius: 9px; background: var(--line); overflow: hidden; }.upload-progress i { display: block; height: 100%; background: var(--teal); transition: width .2s; }
.notification-row { grid-template-columns: 37px 1fr auto; }.notification-row.unread { background: #f4faea; border-color: #d5e9ae; }.notification-row > span { width: 37px; height: 37px; display: grid; place-items: center; border-radius: 10px; background: #edf1ed; }.notification-row button { border: 0; background: none; color: var(--teal); font-size: 8px; cursor: pointer; }
.payment-row { grid-template-columns: 1fr auto auto; }.payment-amount { font-weight: 800; direction: ltr; }
.profile-form { max-width: 760px; padding: 25px; border: 1px solid var(--line); border-radius: 16px; background: white; }.profile-form h2 { margin: 0 0 20px; font-size: 15px; }
.admin-tabs { display: flex; gap: 5px; margin-bottom: 16px; padding: 4px; overflow-x: auto; border-radius: 12px; background: #e6ebe6; }.admin-tabs button { border: 0; padding: 9px 14px; border-radius: 9px; background: transparent; font-size: 9px; font-weight: 700; white-space: nowrap; cursor: pointer; }.admin-tabs button.active { background: white; box-shadow: 0 3px 10px rgba(0,0,0,.06); }
.admin-summary { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; margin-bottom: 16px; }.admin-summary .kpi-card strong { font-size: 20px; }
.inline-form { display: flex; flex-wrap: wrap; gap: 8px; padding: 14px; border-bottom: 1px solid var(--line); }.inline-form input, .inline-form select { width: auto; min-width: 150px; flex: 1; padding: 9px 11px; font-size: 9px; }.inline-form .btn { padding: 9px 13px; font-size: 9px; }
.loading-state { min-height: 220px; display: grid; place-items: center; color: var(--muted); font-size: 10px; }.spinner { width: 30px; height: 30px; border: 3px solid var(--line); border-top-color: var(--teal); border-radius: 50%; animation: spin .7s linear infinite; } @keyframes spin { to { transform: rotate(360deg); } }
.toast-region { position: fixed; z-index: 200; left: 22px; bottom: 22px; display: grid; gap: 8px; }.toast { min-width: 260px; max-width: 390px; padding: 13px 15px; border-radius: 12px; background: var(--ink); color: white; box-shadow: 0 14px 40px rgba(0,0,0,.2); font-size: 10px; animation: toastIn .25s ease; }.toast.error { background: #8d3232; }.toast.success { background: var(--teal); } @keyframes toastIn { from { opacity: 0; transform: translateY(10px); } }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }.reveal.visible { opacity: 1; transform: none; }

html[dir="ltr"] .footer-grid a, html[dir="ltr"] .footer-grid button, html[dir="ltr"] .footer-grid span { text-align: left; }
html[dir="ltr"] .app-shell { direction: ltr; }
html[dir="ltr"] .app-sidebar nav button, html[dir="ltr"] .logout-button, html[dir="ltr"] .data-table th, html[dir="ltr"] .service-card button, html[dir="ltr"] .wizard-service { text-align: left; }
html[dir="ltr"] .mini-content, html[dir="ltr"] .product-window { direction: ltr; }

@media (max-width: 980px) {
  .main-nav { position: fixed; top: 70px; right: 18px; left: 18px; padding: 18px; display: none; flex-direction: column; align-items: stretch; gap: 5px; border: 1px solid var(--line); border-radius: 15px; background: white; box-shadow: var(--shadow); }.main-nav.open { display: flex; }.main-nav a { padding: 9px; }
  .menu-button { display: block; }.header-actions > .btn-ghost { display: none; }
  .hero { padding-top: 125px; }.hero-grid { grid-template-columns: 1fr; gap: 20px; }.hero-copy { text-align: center; }.hero-copy > p { margin-inline: auto; }.hero-actions, .trust-row { justify-content: center; }.hero-product { min-height: 475px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .section-heading { gap: 40px; }
  .how-grid { grid-template-columns: 1fr 1.2fr; gap: 50px; }
  .footer-grid { grid-template-columns: 1.3fr repeat(3, 1fr); gap: 35px; }
  .app-shell { grid-template-columns: 220px 1fr; }.app-content { padding-inline: 22px; }.app-header { padding-inline: 22px; }.kpi-grid { grid-template-columns: repeat(2, 1fr); }.admin-summary { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 700px) {
  .container { width: min(100% - 28px, 1180px); }.site-header { height: 68px; }.site-header .brand-copy { display: none; }.header-actions .btn-primary { padding: 10px 12px; font-size: 10px; }
  .hero { min-height: auto; padding-top: 105px; }.hero-grid { min-height: 0; }.hero h1 { font-size: 44px; }.hero-copy > p { font-size: 14px; }.hero-actions { display: grid; grid-template-columns: 1fr 1fr; }.hero-actions .btn { padding-inline: 9px; font-size: 10px; }.trust-row { gap: 9px 16px; }.hero-product { min-height: 365px; }.product-window { transform: none; }.window-body { min-height: 280px; grid-template-columns: 42px 1fr; }.mini-content { padding: 17px; }.mini-stats article { padding: 8px; }.mini-stats strong { font-size: 13px; }.floating-card { display: none; }.hero-ticker { margin-top: 30px; }.hero-ticker > div { height: 52px; }
  html[lang="en"] .hero h1 { font-size: 38px; line-height: 1.35; overflow-wrap: anywhere; }
  html[lang="en"] .header-actions > .btn-primary { max-width: 88px; padding-inline: 10px; white-space: nowrap; overflow: hidden; }
  .section { padding: 75px 0; }.section-heading { grid-template-columns: 1fr; gap: 18px; margin-bottom: 30px; }.section-heading h2, .how-copy h2, .cta-box h2 { font-size: 31px; }.services-grid { grid-template-columns: 1fr; }.service-card { min-height: 205px; }.service-card h3 { font-size: 15px; }
  .how-grid { grid-template-columns: 1fr; gap: 35px; padding-block: 70px; }.steps-list article { min-height: 0; }.value-grid { grid-template-columns: 1fr; }.value-main { grid-column: auto; min-height: 380px !important; }.folders-visual { left: 15px; bottom: 10px; }
  .cta-section { padding: 55px 0; }.cta-box { padding: 35px 24px; display: grid; gap: 30px; }.cta-actions { justify-items: start; }.footer-grid { grid-template-columns: 1fr 1fr; gap: 35px; }.footer-grid > div:first-child { grid-column: 1 / -1; }.footer-bottom { display: grid; gap: 5px; text-align: center; }
  .modal { padding: 0; align-items: end; }.modal-card { width: 100%; max-height: 94vh; padding: 29px 20px; border-radius: 22px 22px 0 0; }.request-card { padding: 28px 18px; }.wizard-head { align-items: start; }.wizard-head h2 { font-size: 21px; }.wizard-services { grid-template-columns: repeat(2, 1fr); }.form-grid, .request-review { grid-template-columns: 1fr; }.review-row.full { grid-column: auto; }.register-fields { grid-template-columns: 1fr; }.register-fields label:first-child { grid-column: auto; }
  .app-shell { grid-template-columns: 1fr; }.app-sidebar { position: fixed; z-index: 20; top: 0; right: 0; bottom: 0; width: 245px; transform: translateX(105%); transition: transform .25s; }.app-sidebar.open { transform: none; }.drawer-overlay { position: fixed; z-index: 19; inset: 0; background: rgba(0,0,0,.38); }.app-menu { display: block; }.app-header { height: 74px; padding-inline: 14px; }.app-header > div:first-of-type { margin-inline-end: auto; }.app-header-actions .user-chip div { display: none; }.app-content { padding: 18px 14px 55px; }.dashboard-hero { align-items: start; flex-direction: column; }.kpi-grid, .admin-summary { grid-template-columns: repeat(2, 1fr); }.dashboard-grid { grid-template-columns: 1fr; }.page-toolbar { align-items: stretch; flex-direction: column; }.search-box { min-width: 0; }.document-row { grid-template-columns: 40px 1fr auto; }.document-row .file-size { display: none; }.toast-region { right: 12px; left: 12px; bottom: 12px; }.toast { min-width: 0; max-width: none; }
}

@media (prefers-reduced-motion: reduce) { *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; transition-duration: .01ms !important; } .reveal { opacity: 1; transform: none; } }
