/* =============================================

   BACKWAY  PREMIUM VISUAL DESIGN v2.0

   Senior UI/UX Refinement Pass

   ============================================= */



/* â”€â”€ 1. DESIGN TOKENS */

:root {

  /* Brand palette (from logo) */

  --red:           #F06D3A;

  --red-dark:      #D4561F;

  --red-hover:     #E05A28;

  --red-light:     #FFF4EF;

  --red-glow:      rgba(240, 109, 58, 0.20);



  /* Dark surfaces (from logo background) */

  --dark:          #1B3150;

  --dark-2:        #223C60;

  --dark-3:        #2C4A72;

  --dark-card:     rgba(255,255,255,0.042);

  --dark-border:   rgba(255,255,255,0.08);



  /* Light surfaces */

  --white:         #FFFFFF;

  --off-white:     #F8FAFB;

  --gray-100:      #F1F4F6;

  --gray-200:      #E2E7EB;

  --gray-300:      #CED4DB;



  /* Text */

  --title:         #0F2137;

  --body:          #3D4F65;

  --muted:         #6B7A8D;

  --subtle:        #94A3B3;



  /* Fonts */

  --f-head: 'Poppins', system-ui, sans-serif;

  --f-body: 'Inter', system-ui, sans-serif;



  /* Layout */

  --py:     96px;

  --wrap:   1220px;

  --nav-h:  72px;



  /* Radii */

  --r-sm:   6px;

  --r-md:   12px;

  --r-lg:   18px;

  --r-xl:   28px;

  --r-2xl:  40px;

  --r-pill: 9999px;



  /* Shadows */

  --sh-xs:  0 1px 3px rgba(0,0,0,0.06);

  --sh-sm:  0 2px 8px rgba(0,0,0,0.07);

  --sh-md:  0 8px 24px rgba(0,0,0,0.09), 0 2px 6px rgba(0,0,0,0.04);

  --sh-lg:  0 24px 56px rgba(0,0,0,0.13), 0 8px 20px rgba(0,0,0,0.06);

  --sh-xl:  0 40px 80px rgba(0,0,0,0.18), 0 12px 28px rgba(0,0,0,0.08);

  --sh-red: 0 8px 28px rgba(240,109,58,0.30);

  --sh-red-lg: 0 16px 48px rgba(240,109,58,0.38);



  /* Transitions */

  --t-fast:   0.18s cubic-bezier(0.4,0,0.2,1);

  --t:        0.28s cubic-bezier(0.4,0,0.2,1);

  --t-slow:   0.5s  cubic-bezier(0.4,0,0.2,1);

}



/* â”€â”€ 2. RESET â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

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

html { scroll-behavior:smooth; font-size:16px; scroll-padding-top:84px; }
section[id] { scroll-margin-top:84px; }

body {

  font-family: var(--f-body); color: var(--body);

  background: var(--white); line-height: 1.65;

  -webkit-font-smoothing: antialiased; overflow-x: hidden;

}

img    { max-width:100%; height:auto; display:block; }

/* Global responsive images fix */
img, video, canvas, svg { max-width:100%; height:auto; }

/* Prevent overflow from fixed-width elements */
iframe, embed, object { max-width:100%; }

a      { text-decoration:none; color:inherit; }

ul     { list-style:none; }

button { cursor:pointer; border:none; background:none; font-family:inherit; }

input,select,textarea { font-family:inherit; }



/* â”€â”€ 3. TYPOGRAPHY â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

h1,h2,h3,h4,h5,h6 {

  font-family: var(--f-head); font-weight:700;

  line-height:1.15;

}

/* --- Bilingual Typography System (EN/AR) --- */
body.lang-en {
  --f-head: 'Inter', system-ui, sans-serif;
  --f-body: 'Inter', system-ui, sans-serif;
}

body.lang-fr {
  --f-head: 'Inter', system-ui, sans-serif;
  --f-body: 'Inter', system-ui, sans-serif;
}

body.lang-ar {
  --f-head: 'Cairo', 'Tajawal', system-ui, sans-serif;
  --f-body: 'Cairo', 'Tajawal', system-ui, sans-serif;
  line-height: 1.9;
  text-rendering: optimizeLegibility;
}

body.lang-ar h1,
body.lang-ar h2,
body.lang-ar h3,
body.lang-ar h4,
body.lang-ar h5,
body.lang-ar h6 {
  line-height: 1.25;
  letter-spacing: 0;
}

body.lang-ar .section-title {
  letter-spacing: 0;
}

body.lang-ar .section-desc {
  line-height: 1.9;
}

body.lang-ar .section-label {
  text-transform: none;
  letter-spacing: 0;
  font-size: 12px;
}



/* Section label pill */

.section-label {

  display: inline-flex; align-items:center; gap:8px;

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

  text-transform:uppercase; color: var(--red); margin-bottom:14px;

  padding: 5px 14px; border-radius: var(--r-pill);

  background: var(--red-light); border:1px solid rgba(240,109,58,0.15);

}

.section-label::before { display:none; }



.section-title {

  font-size: clamp(28px, 3.4vw, 44px); font-weight:800;

  line-height:1.12; color: var(--title);

  margin-bottom:18px; letter-spacing:0;

}

.section-title span { color: var(--red); }



/* Force white title in dark sections */

.section--dark .section-title,

.process-section .section-title { color:var(--white); }

.section--dark .section-label,

.process-section .section-label {

  background: rgba(240,109,58,0.12);

  border-color: rgba(240,109,58,0.22);

  color: #FFB088;

}



.section-desc {

  font-size:16px; color: var(--muted);

  line-height:1.78; max-width:580px;

}



/* â”€â”€ 4. LAYOUT â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

.container { width:100%; max-width:var(--wrap); margin:0 auto; padding:0 24px; }

.section   { padding: var(--py) 0; }

.section--gray { background: var(--off-white); }

.section--dark { background: var(--dark); }

.text-primary { color: var(--red) !important; }



.section-header { margin-bottom:56px; }

.section-header--center { text-align:center; }

.section-header--center .section-desc { margin:0 auto; }



/* Consistent grid system */

.grid  { display:grid; gap:28px; }

.grid--2 { grid-template-columns:repeat(2,1fr); }

.grid--3 { grid-template-columns:repeat(3,1fr); }

.grid--4 { grid-template-columns:repeat(4,1fr); }


/* —— 5. BUTTONS —— */
.btn { display:inline-flex; align-items:center; gap:9px; padding:14px 28px; font-size:14px; font-weight:600; border-radius:var(--r-pill); transition:var(--t); font-family:var(--f-head); cursor:pointer; border:2px solid transparent; white-space:nowrap; line-height:1.1; letter-spacing:0.01em; position:relative; overflow:hidden; }
.btn::before { content:''; position:absolute; top:0; left:-75%; width:50%; height:100%; background:linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent); transform:skewX(-20deg); transition:left 0.55s cubic-bezier(0.4,0,0.2,1); z-index:1; }
.btn:hover::before { left:125%; }
.btn::after { content:''; position:absolute; inset:0; background:linear-gradient(135deg,rgba(255,255,255,0.14) 0%,transparent 60%); opacity:0; transition:opacity var(--t); }
.btn:hover::after { opacity:1; }
.btn:hover i { transform:translateX(2px); }
.btn i { font-size:13px; flex-shrink:0; transition:transform var(--t-fast); }
.btn:active { transform:translateY(1px) scale(0.98); transition-duration:0.08s; }
.btn--primary { background:var(--red); color:var(--white); box-shadow:var(--sh-red); }
.btn--primary:hover { background:var(--red-hover); transform:translateY(-2px); box-shadow:var(--sh-red-lg); }
.btn--outline { border-color:rgba(255,255,255,0.30); color:var(--white); background:rgba(255,255,255,0.06); backdrop-filter:blur(8px); }
.btn--outline:hover { background:var(--white); color:var(--title); border-color:var(--white); transform:translateY(-2px); box-shadow:var(--sh-md); }
.btn--outline-dark { border-color:var(--red); color:var(--red); background:transparent; }
.btn--outline-dark:hover { background:var(--red); color:var(--white); transform:translateY(-2px); box-shadow:var(--sh-red); }
.btn--ghost { border-color:var(--gray-200); color:var(--body); background:var(--white); }
.btn--ghost:hover { border-color:var(--red); color:var(--red); transform:translateY(-1px); }
.btn--lg { padding:17px 36px; font-size:15px; }
.btn--sm { padding:9px 20px; font-size:12px; letter-spacing:0.02em; }
.btn--block { width:100%; justify-content:center; }
.btn--success { background:#16A34A; box-shadow:0 8px 28px rgba(22,163,74,0.30); }
.breadcrumb-sep { font-size:10px; }

/* —— 6. SCROLL PROGRESS BAR —— */
.scroll-progress { position:fixed; top:0; left:0; width:0%; height:3px; background:linear-gradient(90deg, var(--red), #FFa070); z-index:1001; transition:none; box-shadow:0 0 8px rgba(240,109,58,0.40); }

/* —— 7. REVEAL ANIMATIONS —— */
.reveal { opacity:0; transform:translateY(30px); transition:opacity 0.65s cubic-bezier(0.22,1,0.36,1), transform 0.65s cubic-bezier(0.22,1,0.36,1); }
.reveal.is-visible { opacity:1; transform:translateY(0); }
.reveal-delay-1 { transition-delay:0.10s; }
.reveal-delay-2 { transition-delay:0.20s; }
.reveal-delay-3 { transition-delay:0.30s; }
.reveal-delay-4 { transition-delay:0.40s; }
.reveal--left { transform:translateX(-30px); }
.reveal--right { transform:translateX(30px); }
.reveal--scale { transform:scale(0.92); }
.reveal--left.is-visible, .reveal--right.is-visible, .reveal--scale.is-visible { transform:translate(0) scale(1); }

/* ======= NAVBAR - Professional Glassmorphism Design ======= */
.navbar { 
  position:fixed; top:0; left:0; right:0; z-index:1000; height:var(--nav-h); display:flex; align-items:center; 
  background:linear-gradient(180deg, rgba(27,49,80,0.85) 0%, rgba(27,49,80,0.65) 100%); 
  backdrop-filter:blur(24px) saturate(200%); -webkit-backdrop-filter:blur(24px) saturate(200%);
  border-bottom:1px solid rgba(255,255,255,0.08);
  box-shadow:0 4px 30px rgba(0,0,0,0.15), inset 0 1px 0 rgba(255,255,255,0.1);
  transition:all 0.5s cubic-bezier(0.4,0,0.2,1);
  animation:navbarSlideDown 0.8s cubic-bezier(0.4,0,0.2,1) backwards;
}
.navbar::before {
  content:''; position:absolute; inset:0; 
  background:radial-gradient(ellipse 80% 50% at 50% -20%, rgba(240,109,58,0.15), transparent);
  pointer-events:none;
}
@keyframes navbarSlideDown {
  from { transform:translateY(-100%); opacity:0; }
  to { transform:translateY(0); opacity:1; }
}
.navbar.is-scrolled { 
  background:rgba(255,255,255,0.98); 
  backdrop-filter:blur(32px) saturate(220%); -webkit-backdrop-filter:blur(32px) saturate(220%); 
  border-bottom:1px solid rgba(15,33,55,0.06);
  box-shadow:0 8px 48px rgba(15,33,55,0.12), 0 2px 0 rgba(240,109,58,0.1);
}
.navbar.is-scrolled::before { display:none; }

.navbar__inner { display:flex; align-items:center; justify-content:space-between; width:100%; gap:24px; }

/* Logo - Enhanced Glass Effect */
.navbar__logo { 
  display:flex; align-items:center; gap:10px; padding:8px 14px; border-radius:var(--r-pill); 
  background:rgba(255,255,255,0.1); border:1px solid rgba(255,255,255,0.15); 
  backdrop-filter:blur(12px) saturate(150%); -webkit-backdrop-filter:blur(12px) saturate(150%); 
  box-shadow:0 4px 20px rgba(0,0,0,0.1), inset 0 1px 0 rgba(255,255,255,0.2);
  transition:all 0.4s cubic-bezier(0.4,0,0.2,1); flex-shrink:0; position:relative; overflow:hidden;
}
.navbar__logo::before {
  content:''; position:absolute; inset:0;
  background:linear-gradient(135deg, rgba(240,109,58,0.2) 0%, transparent 50%, rgba(59,158,255,0.15) 100%);
  opacity:0; transition:opacity 0.4s ease;
}
.navbar__logo:hover { 
  background:rgba(255,255,255,0.18); border-color:rgba(255,255,255,0.3); 
  transform:translateY(-2px) scale(1.02); 
  box-shadow:0 12px 40px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.3);
}
.navbar__logo:hover::before { opacity:1; }
.navbar__logo-img { height:42px; width:auto; display:block; object-fit:contain; border-radius:12px; filter:drop-shadow(0 2px 4px rgba(0,0,0,0.2)); }
.navbar.is-scrolled .navbar__logo { background:rgba(255,255,255,0.95); border-color:rgba(15,33,55,0.1); box-shadow:0 4px 20px rgba(0,0,0,0.08); }
.navbar.is-scrolled .navbar__logo:hover { background:var(--white); border-color:rgba(240,109,58,0.3); box-shadow:0 8px 32px rgba(240,109,58,0.15); }

/* Navigation Links - Premium Hover Effects */
.navbar__nav { display:flex; align-items:center; gap:4px; }
.navbar__link { 
  position:relative; padding:10px 18px; font-size:14px; font-weight:500; 
  color:rgba(255,255,255,0.85); border-radius:var(--r-pill); 
  transition:all 0.35s cubic-bezier(0.4,0,0.2,1); letter-spacing:0.02em; white-space:nowrap;
  overflow:hidden;
}
.navbar__link::after { 
  content:''; position:absolute; bottom:6px; left:18px; right:18px; height:2px; 
  background:linear-gradient(90deg, var(--red), #ff8a65); border-radius:2px; 
  transform:scaleX(0); transform-origin:center; transition:transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.navbar__link::before { 
  content:''; position:absolute; inset:0; border-radius:var(--r-pill); 
  background:linear-gradient(135deg, rgba(240,109,58,0.15) 0%, rgba(59,158,255,0.1) 100%); 
  opacity:0; transform:scale(0.9); transition:all 0.35s cubic-bezier(0.4,0,0.2,1); z-index:-1;
}
.navbar__link:hover, .navbar__link.is-active { 
  color:var(--white); text-shadow:0 0 20px rgba(240,109,58,0.5);
}
.navbar__link:hover::after, .navbar__link.is-active::after { 
  transform:scaleX(1); 
}
.navbar__link:hover::before, .navbar__link.is-active::before { 
  opacity:1; transform:scale(1); 
}
.navbar__link.is-active { font-weight:600; }
.navbar.is-scrolled .navbar__link { color:var(--muted); }
.navbar.is-scrolled .navbar__link:hover, .navbar.is-scrolled .navbar__link.is-active { color:var(--red); text-shadow:none; }

/* Actions Container */
.navbar__actions { display:flex; align-items:center; gap:12px; flex-shrink:0; }

/* Language Switcher - Glass Button */
.navbar__lang { 
  display:inline-flex; align-items:center; gap:8px; padding:9px 18px; font-size:13px; 
  font-weight:600; font-family:var(--f-head); color:rgba(255,255,255,0.9); 
  border:1.5px solid rgba(255,255,255,0.2); border-radius:var(--r-pill); 
  background:rgba(255,255,255,0.08); backdrop-filter:blur(8px);
  cursor:pointer; transition:all 0.4s cubic-bezier(0.4,0,0.2,1); letter-spacing:0.02em; white-space:nowrap;
  box-shadow:0 4px 15px rgba(0,0,0,0.1), inset 0 1px 0 rgba(255,255,255,0.15);
}
.navbar__lang:hover { 
  background:rgba(255,255,255,0.95); color:var(--title); border-color:var(--white); 
  transform:translateY(-2px); box-shadow:0 8px 28px rgba(0,0,0,0.18);
}
.navbar__lang i { font-size:14px; }
.navbar.is-scrolled .navbar__lang { color:var(--title); border-color:var(--gray-200); background:var(--white); box-shadow:0 4px 15px rgba(0,0,0,0.08); }
.navbar.is-scrolled .navbar__lang:hover { background:var(--red); color:var(--white); border-color:var(--red); box-shadow:var(--sh-red); }

.navbar__lang-wrap {
  position:relative;
  flex-shrink:0;
}

.navbar__lang-chevron {
  font-size:10px !important;
  transition:transform 0.25s ease;
}

.navbar__lang[aria-expanded="true"] .navbar__lang-chevron {
  transform:rotate(180deg);
}

.navbar__lang-menu {
  position:absolute;
  top:calc(100% + 10px);
  inset-inline-end:0;
  min-width:190px;
  padding:8px;
  border:1px solid rgba(255,255,255,0.16);
  border-radius:16px;
  background:rgba(255,255,255,0.96);
  box-shadow:0 18px 45px rgba(0,0,0,0.18);
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
  opacity:0;
  visibility:hidden;
  transform:translateY(-6px) scale(0.98);
  transform-origin:top right;
  transition:opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  z-index:1100;
}

.navbar__lang-wrap.is-open .navbar__lang-menu {
  opacity:1;
  visibility:visible;
  transform:translateY(0) scale(1);
}

.navbar__lang-option {
  width:100%;
  min-height:42px;
  display:grid;
  grid-template-columns:36px 1fr 16px;
  align-items:center;
  gap:10px;
  padding:8px 10px;
  border:0;
  border-radius:11px;
  background:transparent;
  color:var(--title);
  cursor:pointer;
  text-align:start;
  font-family:var(--f-head);
  transition:background 0.2s ease, color 0.2s ease;
}

.navbar__lang-option:hover,
.navbar__lang-option.is-active {
  background:var(--red-light);
  color:var(--red);
}

.navbar__lang-code {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:32px;
  height:26px;
  border-radius:8px;
  background:rgba(15,33,55,0.06);
  font-size:11px;
  font-weight:800;
}

.navbar__lang-name {
  font-size:13px;
  font-weight:700;
  white-space:nowrap;
}

/* CTA Button - Premium Gradient Design */
.navbar__cta { 
  display:inline-flex; align-items:center; gap:8px; padding:11px 26px; font-size:13px; 
  font-weight:600; font-family:var(--f-head); color:var(--white); 
  background:linear-gradient(135deg, var(--red) 0%, #ff6b4a 50%, #ff8a65 100%); 
  background-size:200% 100%;
  border-radius:var(--r-pill); 
  transition:all 0.4s cubic-bezier(0.4,0,0.2,1); 
  box-shadow:0 4px 20px rgba(240,109,58,0.35), 0 0 0 1px rgba(255,255,255,0.1) inset;
  white-space:nowrap; position:relative; overflow:hidden;
}
.navbar__cta::before {
  content:''; position:absolute; inset:0;
  background:linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transform:translateX(-100%); transition:transform 0.6s ease;
}
.navbar__cta:hover { 
  background-position:100% 0;
  transform:translateY(-3px); 
  box-shadow:0 12px 40px rgba(240,109,58,0.45), 0 0 0 1px rgba(255,255,255,0.2) inset;
}
.navbar__cta:hover::before { transform:translateX(100%); }
.navbar__cta i { font-size:13px; transition:transform 0.3s ease; }
.navbar__cta:hover i { transform:translateY(-2px); }

/* Mobile Toggle - Animated Hamburger */
.navbar__toggle { display:none; flex-direction:column; justify-content:center; align-items:center; gap:5px; width:48px; height:48px; padding:0; cursor:pointer; -webkit-tap-highlight-color:transparent; border-radius:12px; background:rgba(255,255,255,0.08); border:1px solid rgba(255,255,255,0.15); transition:all 0.3s ease; }
.navbar__toggle:hover { background:rgba(255,255,255,0.15); }
.navbar__toggle-bar { display:block; width:24px; height:2.5px; background:var(--white); border-radius:3px; transition:all 0.4s cubic-bezier(0.4,0,0.2,1); }
.navbar.is-scrolled .navbar__toggle { background:rgba(15,33,55,0.05); border-color:rgba(15,33,55,0.1); }
.navbar.is-scrolled .navbar__toggle-bar { background:var(--title); }
.navbar__toggle[aria-expanded="true"] { background:rgba(240,109,58,0.15); border-color:rgba(240,109,58,0.3); }
.navbar__toggle[aria-expanded="true"] .navbar__toggle-bar { background:var(--red); }
.navbar__toggle[aria-expanded="true"] .navbar__toggle-bar:nth-child(1) { transform:translateY(7.5px) rotate(45deg); width:26px; }
.navbar__toggle[aria-expanded="true"] .navbar__toggle-bar:nth-child(2) { opacity:0; transform:scaleX(0); }
.navbar__toggle[aria-expanded="true"] .navbar__toggle-bar:nth-child(3) { transform:translateY(-7.5px) rotate(-45deg); width:26px; }

/* Scroll Progress Bar - Enhanced */
.scroll-progress { 
  position:fixed; top:0; left:0; height:3px; 
  background:linear-gradient(90deg, var(--red), #ff8a65, var(--red)); 
  background-size:200% 100%;
  z-index:1001; width:0%; 
  transition:width 0.1s linear;
  box-shadow:0 0 10px rgba(240,109,58,0.5);
  animation:progressShine 2s linear infinite;
}
@keyframes progressShine {
  0% { background-position:200% 0; }
  100% { background-position:-200% 0; }
}
.mobile-overlay { position:fixed; inset:0; z-index:1999; background:rgba(0,0,0,0.50); backdrop-filter:blur(4px); -webkit-backdrop-filter:blur(4px); opacity:0; pointer-events:none; transition:opacity 0.35s ease; }
.mobile-overlay.is-visible { opacity:1; pointer-events:all; }
.mobile-drawer { position:fixed; top:0; right:-100%; width:min(360px, 90vw); height:100vh; height:100dvh; z-index:2000; background:var(--white); display:flex; flex-direction:column; overflow-y:auto; overscroll-behavior:contain; box-shadow:-16px 0 64px rgba(0,0,0,0.18); transition:right 0.4s cubic-bezier(0.4,0,0.2,1); padding:24px; padding-bottom:calc(env(safe-area-inset-bottom, 16px) + 16px); }
.mobile-drawer.is-open { right:0; }
.mobile-drawer__head { display:flex; align-items:center; justify-content:space-between; padding-bottom:20px; margin-bottom:8px; border-bottom:1px solid var(--gray-200); }
.mobile-drawer__logo img { height:34px; width:auto; border-radius:10px; }
.mobile-drawer__close { display:flex; align-items:center; justify-content:center; width:44px; height:44px; border-radius:var(--r-md); background:var(--gray-100); font-size:18px; color:var(--body); cursor:pointer; transition:var(--t); -webkit-tap-highlight-color:transparent; }
.mobile-drawer__close:hover { background:var(--red); color:var(--white); }
.mobile-drawer__body { display:flex; flex-direction:column; gap:2px; flex:1; padding:12px 0; }
.mobile-drawer__link { display:flex; align-items:center; gap:14px; padding:14px 16px; min-height:48px; border-radius:var(--r-md); font-size:15px; font-weight:500; color:var(--body); transition:var(--t); -webkit-tap-highlight-color:transparent; }
.mobile-drawer__link i { width:20px; text-align:center; font-size:15px; color:var(--red); flex-shrink:0; opacity:0.75; transition:opacity var(--t); }
.mobile-drawer__link:hover, .mobile-drawer__link.is-active { background:var(--red-light); color:var(--red); }
.mobile-drawer__link:hover i, .mobile-drawer__link.is-active i { opacity:1; }
.mobile-drawer__foot { margin-top:auto; padding-top:20px; border-top:1px solid var(--gray-200); }
/* RTL: drawer slides from left */
[lang="ar"] .mobile-drawer { right:auto; left:-100%; box-shadow:16px 0 64px rgba(0,0,0,0.18); transition:left 0.4s cubic-bezier(0.4,0,0.2,1); }
[lang="ar"] .mobile-drawer.is-open { left:0; }
[lang="ar"] .mobile-drawer__body { text-align:right; }
[lang="ar"] .mobile-drawer__link { flex-direction:row-reverse; }



.hero {

  position:relative; min-height:100vh;

  display:flex; align-items:center; overflow:hidden;

  background: var(--dark);

}



/* Background layers */

.hero__bg { position:absolute; inset:0; z-index:0; overflow:hidden; }


/* hero-bg.png removed — not available on server; hero uses gradient overlay instead */


.hero__container { position:relative; z-index:1; }



.hero__bg-overlay {

  position:absolute; inset:0;

  background:

    radial-gradient(ellipse 80% 80% at 70% 20%, rgba(240,109,58,0.14) 0%, transparent 60%),

    radial-gradient(ellipse 60% 60% at 20% 80%, rgba(59,130,246,0.05) 0%, transparent 60%),

    linear-gradient(170deg, var(--dark-2) 0%, var(--dark) 55%, #030608 100%);

}



/* subtle dot grid */

.hero__bg-grid {

  position:absolute; inset:0; opacity:0.032;

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

  background-size: 44px 44px;

}



.hero__shape {

  position:absolute; border-radius:50%; pointer-events:none; filter:blur(0);

}

.hero__shape--1 {

  width:860px; height:860px;

  background:radial-gradient(circle, rgba(240,109,58,0.12) 0%, transparent 65%);

  top:-300px; right:-200px; animation: drift-1 18s ease-in-out infinite alternate;

}

.hero__shape--2 {

  width:500px; height:500px;

  background:radial-gradient(circle, rgba(59,130,246,0.05) 0%, transparent 70%);

  bottom:-200px; left:-100px; animation: drift-2 22s ease-in-out infinite alternate;

}

.hero__shape--3 {

  width:300px; height:300px;

  background:rgba(240,109,58,0.04);

  top:35%; left:40%; border-radius:30% 70% 70% 30% / 30% 30% 70% 70%;

  animation: morph 14s ease-in-out infinite;

}

@keyframes drift-1 { from { transform:translate(0,0); } to { transform:translate(-40px,30px); } }

@keyframes drift-2 { from { transform:translate(0,0); } to { transform:translate(30px,-20px); } }

@keyframes morph {

  0%,100% { border-radius:30% 70% 70% 30% / 30% 30% 70% 70%; }

  50%      { border-radius:60% 40% 40% 60% / 60% 70% 30% 40%; }

}

/* Mobile: contain large shapes to prevent overflow */
@media (max-width:768px) {
  .hero__shape--1 { width:300px; height:300px; top:-100px; right:-100px; opacity:0.4; }
  .hero__shape--2 { width:200px; height:200px; bottom:-80px; left:-50px; opacity:0.3; }
  .hero__shape--3 { width:120px; height:120px; opacity:0.2; }
}



/* Hero content grid */

.hero__content {

  position:relative; z-index:1; width:100%;

  padding: calc(var(--nav-h) + 60px) 0 90px;

  display:grid; grid-template-columns:1.05fr 0.95fr; gap:60px; align-items:center;

}



/* Left: text */

.hero__badge {

  display:inline-flex; align-items:center; gap:8px;

  padding:7px 16px 7px 8px;

  background:rgba(240,109,58,0.10); border:1px solid rgba(240,109,58,0.22);

  border-radius:var(--r-pill); font-size:12px; font-weight:600;

  color:#FF8A9A; margin-bottom:26px; letter-spacing:0.06em;

}

.hero__badge-dot {

  width:7px; height:7px; border-radius:50%; background:#FF5E6C;

  box-shadow:0 0 8px rgba(255,94,108,0.7);

  animation:pulse-dot 2.2s infinite;

}

@keyframes pulse-dot {

  0%,100% { box-shadow:0 0 8px rgba(255,94,108,0.6); }

  50%      { box-shadow:0 0 16px rgba(255,94,108,1); }

}



.hero__title {

  font-size: clamp(38px, 5.8vw, 76px); font-weight:900;

  line-height:1.12; color:var(--white);

  margin-bottom:24px; letter-spacing:-0.02em;

}

.hero__title br {
  display: block;
  content: "";
  margin-bottom: 0.35em;
}

.hero__title em {

  font-style:normal;

  background:linear-gradient(135deg, #FFa070 0%, var(--red) 60%);

  -webkit-background-clip:text; -webkit-text-fill-color:transparent;

  background-clip:text;

}



.hero__desc {

  font-size:17px; color:rgba(255,255,255,0.62);

  line-height:1.8; margin-bottom:36px; max-width:500px; font-weight:400;

}

.hero__actions { display:flex; gap:14px; flex-wrap:wrap; margin-bottom:52px; }



/* Trust strip below CTAs */

.hero__trust {

  display:flex; align-items:stretch;

  padding-top:32px; border-top:1px solid rgba(255,255,255,0.09);

}

.hero__trust-item {

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

  padding:0 18px;

  flex:1;

}

.hero__trust-item:first-child { padding-left:0; }

.hero__trust-num {

  font-size:clamp(24px,2.6vw,34px); font-weight:900; line-height:1.05;

  color:var(--red);

  font-family:var(--f-head);

  text-shadow:0 10px 34px rgba(0,0,0,0.25);

}

.hero__trust-label {

  font-size:12px; font-weight:700; line-height:1.2; color:rgba(255,255,255,0.60);

  letter-spacing:0.02em;

  text-transform:uppercase;

}

.hero__trust-divider {

  width:1px; background:rgba(255,255,255,0.10); flex-shrink:0; align-self:stretch;

}

.hero-benefits {
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:16px;
  padding-top:28px;
  align-items:stretch;
}

.hero-benefit {
  display:grid;
  grid-template-rows:auto 1fr;
  justify-items:center;
  text-align:center;
  gap:12px;
  min-height:118px;
  padding:18px 14px 16px;
  border-radius:18px;
  background:linear-gradient(180deg, rgba(255,255,255,0.13) 0%, rgba(255,255,255,0.055) 100%);
  border:1px solid rgba(255,255,255,0.16);
  box-shadow:0 18px 42px rgba(0,0,0,0.20);
  backdrop-filter:blur(12px);
  position:relative;
  overflow:hidden;
  transition:transform 0.35s cubic-bezier(0.22,1,0.36,1), border-color 0.35s ease, background 0.35s ease;
}

.hero-benefit::before {
  content:'';
  position:absolute;
  inset:0;
  background:radial-gradient(circle at 50% 0%, rgba(240,109,58,0.18), transparent 58%);
  opacity:0;
  transition:opacity 0.35s ease;
  pointer-events:none;
}

.hero-benefit:hover {
  transform:translateY(-5px);
  border-color:rgba(240,109,58,0.34);
  background:linear-gradient(180deg, rgba(255,255,255,0.17) 0%, rgba(255,255,255,0.075) 100%);
}

.hero-benefit:hover::before {
  opacity:1;
}

.hero-benefit__icon {
  width:50px;
  height:50px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:rgba(240,109,58,0.14);
  color:var(--red);
  font-size:18px;
  box-shadow:0 10px 24px rgba(240,109,58,0.16);
  position:relative;
  z-index:1;
}

.hero-benefit--green .hero-benefit__icon {
  background:rgba(104,211,82,0.15);
  color:#78D957;
  box-shadow:0 10px 24px rgba(104,211,82,0.14);
}

.hero-benefit__body {
  min-width:0;
  position:relative;
  z-index:1;
}

.hero-benefit__title {
  margin:0;
  font-size:14px;
  line-height:1.3;
  font-weight:800;
  color:#fff;
  letter-spacing:0;
}

.hero-benefit--green .hero-benefit__title { color:#A9F28A; }



/* Right: phone mockups (match reference image) */

.hero__visual { position:relative; perspective:1200px; }

.hero__phones {

  position:relative;

  width:min(620px, 100%);

  height:560px;

  margin-left:auto;

}

[lang="ar"] .hero__phones {
  margin-left:0;
  margin-right:auto;
}

/* Hero phones responsive scaling */
@media (max-width:1200px) {
  .hero__phones { height:480px; }
  .hero__phone { width:250px; height:500px; }
}

@media (max-width:1024px) {
  .hero__phones { height:400px; transform:scale(0.85); transform-origin:right center; }
}

@media (max-width:1024px) {
  [lang="ar"] .hero__phones { transform-origin:left center; }
}

@media (max-width:900px) {
  .hero__phones { transform:scale(0.7); opacity:0.6; }
}

@media (max-width:768px) {
  .hero__visual { display:none; }
}



.hero__phone {

  position:absolute;

  width:290px;

  height:580px;

  transform-style:preserve-3d;

  will-change: transform;

  pointer-events:none;

  animation: hero-phone-float 4.8s ease-in-out infinite;

}



.hero__phone--right { animation-delay: 0.25s; }

.hero__phone--left  { animation-delay: 0s; }



@keyframes hero-phone-float {

  0%, 100% { transform: translateY(0); }

  50%      { transform: translateY(-12px); }

}



.hero__phone--right {

  right:6px;

  top:18px;

  transform: rotate(10deg) rotateY(-18deg) translateZ(-12px);

  opacity:0.92;

  z-index:1;

}



.hero__phone--left {

  left:140px;

  top:70px;

  transform: rotate(-12deg) rotateY(20deg) translateZ(20px);

  z-index:2;

}



/* Combine base transform (rotation) with float animation */

.hero__phone--right { animation-name: hero-phone-float-right; }

.hero__phone--left  { animation-name: hero-phone-float-left; }



@keyframes hero-phone-float-right {

  0%, 100% { transform: rotate(10deg) rotateY(-18deg) translateY(0) translateZ(-12px); }

  50%      { transform: rotate(10deg) rotateY(-18deg) translateY(-12px) translateZ(-12px); }

}



@keyframes hero-phone-float-left {

  0%, 100% { transform: rotate(-12deg) rotateY(20deg) translateY(0) translateZ(20px); }

  50%      { transform: rotate(-12deg) rotateY(20deg) translateY(-14px) translateZ(20px); }

}

[lang="ar"] .hero__phone--right {
  left:6px;
  right:auto;
  transform: rotate(10deg) rotateY(18deg) translateZ(-12px);
}

[lang="ar"] .hero__phone--left {
  right:140px;
  left:auto;
  transform: rotate(-12deg) rotateY(-20deg) translateZ(20px);
}

[lang="ar"] .hero__phone--right { animation-name: hero-phone-float-right-rtl; }
[lang="ar"] .hero__phone--left  { animation-name: hero-phone-float-left-rtl; }

@keyframes hero-phone-float-right-rtl {
  0%, 100% { transform: rotate(10deg) rotateY(18deg) translateY(0) translateZ(-12px); }
  50%      { transform: rotate(10deg) rotateY(18deg) translateY(-12px) translateZ(-12px); }
}

@keyframes hero-phone-float-left-rtl {
  0%, 100% { transform: rotate(-12deg) rotateY(-20deg) translateY(0) translateZ(20px); }
  50%      { transform: rotate(-12deg) rotateY(-20deg) translateY(-14px) translateZ(20px); }
}

/* Premium first-load hero intro.
   Uses opacity/transform/filter only, so it stays GPU-friendly. */
.hero::before {
  content:'';
  position:absolute;
  inset:-25%;
  z-index:1;
  pointer-events:none;
  background:
    radial-gradient(circle at 34% 48%, rgba(255,255,255,0.28), transparent 12%),
    linear-gradient(110deg, transparent 0%, rgba(255,255,255,0.16) 42%, rgba(240,109,58,0.18) 50%, transparent 62%);
  opacity:0;
  transform:translateX(-34%) rotate(8deg);
}

.hero::after {
  content:'';
  position:absolute;
  inset:0;
  z-index:0;
  pointer-events:none;
  background:
    radial-gradient(circle at 70% 28%, rgba(59,158,255,0.20), transparent 28%),
    radial-gradient(circle at 35% 72%, rgba(240,109,58,0.12), transparent 28%);
  opacity:0;
}

.hero .hero__title,
.hero .hero__desc,
.hero .hero__actions,
.hero .hero__trust,
.hero .hero__visual,
.hero .hero__scroll-cue {
  will-change:transform, opacity, filter;
}

.hero-intro-ready .hero::before {
  animation:hero-intro-sweep 1.05s cubic-bezier(0.22,1,0.36,1) 0.05s both;
}

.hero-intro-ready .hero::after {
  animation:hero-intro-ambient 1.25s ease-out both;
}

.hero-intro-ready .hero__bg-image {
  animation:hero-bg-wake 1.5s ease-out both;
}

.hero-intro-ready .hero__bg-grid {
  animation:hero-grid-wake 1.4s ease-out both, hero-grid-breathe 16s linear 1.4s infinite;
}

.hero-intro-ready .hero__shape--1 {
  animation:hero-shape-pop-1 1.45s cubic-bezier(0.22,1,0.36,1) both, drift-1 18s ease-in-out 1.45s infinite alternate;
}

.hero-intro-ready .hero__shape--2 {
  animation:hero-shape-pop-2 1.55s cubic-bezier(0.22,1,0.36,1) 0.05s both, drift-2 22s ease-in-out 1.55s infinite alternate;
}

.hero-intro-ready .hero__shape--3 {
  animation:hero-shape-pop-3 1.35s cubic-bezier(0.22,1,0.36,1) 0.12s both, morph 14s ease-in-out 1.35s infinite;
}

.hero-intro-ready .hero__title {
  animation:hero-copy-in 0.82s cubic-bezier(0.16,1,0.3,1) 0.10s both;
}

.hero-intro-ready .hero__desc {
  animation:hero-copy-in 0.82s cubic-bezier(0.16,1,0.3,1) 0.22s both;
}

.hero-intro-ready .hero__actions {
  animation:hero-copy-in 0.82s cubic-bezier(0.16,1,0.3,1) 0.34s both;
}

.hero-intro-ready .hero__trust {
  animation:hero-trust-in 0.86s cubic-bezier(0.16,1,0.3,1) 0.48s both;
}

.hero-intro-ready .hero__trust-item {
  animation:hero-stat-in 0.72s cubic-bezier(0.16,1,0.3,1) both;
}

.hero-intro-ready .hero__trust-item:nth-child(1) { animation-delay:0.58s; }
.hero-intro-ready .hero__trust-item:nth-child(2) { animation-delay:0.66s; }
.hero-intro-ready .hero__trust-item:nth-child(3) { animation-delay:0.74s; }
.hero-intro-ready .hero__trust-item:nth-child(4) { animation-delay:0.82s; }

.hero-intro-ready .hero-benefit {
  animation:hero-benefit-in 0.78s cubic-bezier(0.16,1,0.3,1) both;
}

.hero-intro-ready .hero-benefit:nth-child(1) { animation-delay:0.58s; }
.hero-intro-ready .hero-benefit:nth-child(2) { animation-delay:0.66s; }
.hero-intro-ready .hero-benefit:nth-child(3) { animation-delay:0.74s; }

@keyframes hero-benefit-in {
  0% {
    opacity:0;
    transform:translateY(22px) scale(0.94);
    filter:blur(8px);
  }
  70% {
    opacity:1;
    filter:blur(0);
  }
  100% {
    opacity:1;
    transform:translateY(0) scale(1);
    filter:blur(0);
  }
}

.hero-intro-ready .hero__visual {
  animation:hero-visual-in 1.05s cubic-bezier(0.16,1,0.3,1) 0.20s both;
}

.hero-intro-ready .hero__phone--right {
  animation:hero-phone-enter-right 1.10s cubic-bezier(0.16,1,0.3,1) 0.34s both, hero-phone-float-right 4.8s ease-in-out 1.44s infinite;
}

.hero-intro-ready .hero__phone--left {
  animation:hero-phone-enter-left 1.10s cubic-bezier(0.16,1,0.3,1) 0.44s both, hero-phone-float-left 4.8s ease-in-out 1.54s infinite;
}

[lang="ar"].hero-intro-ready .hero__phone--right {
  animation:hero-phone-enter-right-rtl 1.10s cubic-bezier(0.16,1,0.3,1) 0.34s both, hero-phone-float-right-rtl 4.8s ease-in-out 1.44s infinite;
}

[lang="ar"].hero-intro-ready .hero__phone--left {
  animation:hero-phone-enter-left-rtl 1.10s cubic-bezier(0.16,1,0.3,1) 0.44s both, hero-phone-float-left-rtl 4.8s ease-in-out 1.54s infinite;
}

.hero-intro-ready .hero__scroll-cue {
  animation:hero-cue-in 0.75s ease-out 1.08s both;
}

@keyframes hero-intro-sweep {
  0% { opacity:0; transform:translateX(-38%) rotate(8deg); }
  35% { opacity:0.95; }
  100% { opacity:0; transform:translateX(38%) rotate(8deg); }
}

@keyframes hero-intro-ambient {
  from { opacity:0; transform:scale(1.05); filter:blur(10px); }
  to { opacity:1; transform:scale(1); filter:blur(0); }
}

@keyframes hero-bg-wake {
  from { opacity:0; transform:scale(1.08); filter:blur(8px); }
  to { opacity:0.12; transform:scale(1); filter:blur(0); }
}

@keyframes hero-grid-wake {
  from { opacity:0; transform:translateY(14px); }
  to { opacity:0.032; transform:translateY(0); }
}

@keyframes hero-grid-breathe {
  from { background-position:0 0; }
  to { background-position:44px 44px; }
}

@keyframes hero-shape-pop-1 {
  from { opacity:0; transform:translate(80px,-36px) scale(0.72); }
  to { opacity:1; transform:translate(0,0) scale(1); }
}

@keyframes hero-shape-pop-2 {
  from { opacity:0; transform:translate(-60px,42px) scale(0.70); }
  to { opacity:1; transform:translate(0,0) scale(1); }
}

@keyframes hero-shape-pop-3 {
  from { opacity:0; transform:scale(0.55) rotate(-18deg); }
  to { opacity:1; transform:scale(1) rotate(0); }
}

@keyframes hero-copy-in {
  from { opacity:0; transform:translateY(34px); filter:blur(10px); }
  to { opacity:1; transform:translateY(0); filter:blur(0); }
}

@keyframes hero-trust-in {
  from { opacity:0; transform:translateY(22px) scale(0.98); filter:blur(8px); }
  to { opacity:1; transform:translateY(0) scale(1); filter:blur(0); }
}

@keyframes hero-stat-in {
  from { opacity:0; transform:translateY(18px); }
  to { opacity:1; transform:translateY(0); }
}

@keyframes hero-visual-in {
  from { opacity:0; transform:translateX(54px) scale(0.94) rotateY(-10deg); filter:blur(12px); }
  to { opacity:1; transform:translateX(0) scale(1) rotateY(0); filter:blur(0); }
}

@keyframes hero-phone-enter-right {
  from { opacity:0; transform:rotate(24deg) rotateY(-38deg) translate(130px,-24px) translateZ(-80px) scale(0.82); filter:blur(10px); }
  to { opacity:0.92; transform:rotate(10deg) rotateY(-18deg) translateY(0) translateZ(-12px) scale(1); filter:blur(0); }
}

@keyframes hero-phone-enter-left {
  from { opacity:0; transform:rotate(-26deg) rotateY(42deg) translate(92px,46px) translateZ(-50px) scale(0.82); filter:blur(10px); }
  to { opacity:1; transform:rotate(-12deg) rotateY(20deg) translateY(0) translateZ(20px) scale(1); filter:blur(0); }
}

@keyframes hero-phone-enter-right-rtl {
  from { opacity:0; transform:rotate(24deg) rotateY(38deg) translate(-130px,-24px) translateZ(-80px) scale(0.82); filter:blur(10px); }
  to { opacity:0.92; transform:rotate(10deg) rotateY(18deg) translateY(0) translateZ(-12px) scale(1); filter:blur(0); }
}

@keyframes hero-phone-enter-left-rtl {
  from { opacity:0; transform:rotate(-26deg) rotateY(-42deg) translate(-92px,46px) translateZ(-50px) scale(0.82); filter:blur(10px); }
  to { opacity:1; transform:rotate(-12deg) rotateY(-20deg) translateY(0) translateZ(20px) scale(1); filter:blur(0); }
}

@keyframes hero-cue-in {
  from { opacity:0; transform:translateY(14px); }
  to { opacity:1; transform:translateY(0); }
}

.hero-intro-reduced .hero::before,
.hero-intro-reduced .hero::after {
  animation:none;
}

@media (prefers-reduced-motion: reduce) {
  .hero::before,
  .hero::after,
  .hero__bg-image,
  .hero__bg-grid,
  .hero__shape,
  .hero__title,
  .hero__desc,
  .hero__actions,
  .hero__trust,
  .hero__trust-item,
  .hero__visual,
  .hero__scroll-cue {
    animation:none !important;
    opacity:1;
    transform:none;
    filter:none;
  }

  .hero__phone {
    animation:none !important;
    opacity:1;
    filter:none;
  }

  .hero__phone--right {
    transform:rotate(10deg) rotateY(-18deg) translateZ(-12px);
  }

  .hero__phone--left {
    transform:rotate(-12deg) rotateY(20deg) translateZ(20px);
  }
}



/* 3D Phone Mockup (scoped to hero only) */

.phone {

  width:100%;

  height:100%;

  position:relative;

  transform-style:preserve-3d;

  filter: drop-shadow(0 26px 34px rgba(0,0,0,0.34));

}

/* ===================================================
   SITE-WIDE PREMIUM MOTION & DEPTH PASS
   Subtle 3D, light, and interaction system layered on top of existing UI.
   =================================================== */

body {
  background:
    radial-gradient(circle at 12% 8%, rgba(59,158,255,0.06), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(240,109,58,0.05), transparent 30%),
    #fff;
}

.site-main {
  overflow:clip;
}

.site-main > .section,
.stats-bar,
.counter-offer,
.page-hero {
  position:relative;
  isolation:isolate;
}

.site-main > .section > .container,
.stats-bar > .container,
.counter-offer > .container,
.page-hero > .container {
  position:relative;
  z-index:1;
}

.site-main > .section:not(.shipment-lifecycle):not(.ai-pricing)::before,
.stats-bar::before,
.counter-offer::before,
.page-hero::before {
  content:'';
  position:absolute;
  inset:0;
  z-index:0;
  pointer-events:none;
  background:
    radial-gradient(circle at 18% 16%, rgba(59,158,255,0.055), transparent 28%),
    radial-gradient(circle at 82% 22%, rgba(240,109,58,0.060), transparent 28%),
    linear-gradient(rgba(15,33,55,0.030) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,33,55,0.026) 1px, transparent 1px);
  background-size:auto, auto, 54px 54px, 54px 54px;
  mask-image:linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
  opacity:0.72;
}

.section--gray {
  background:
    radial-gradient(circle at 16% 18%, rgba(59,158,255,0.075), transparent 34%),
    radial-gradient(circle at 88% 30%, rgba(240,109,58,0.070), transparent 30%),
    linear-gradient(180deg, #f8fafc 0%, #f3f6fa 100%);
}

.section--dark:not(.ai-pricing),
.process-section {
  background:
    radial-gradient(circle at 18% 12%, rgba(59,158,255,0.16), transparent 32%),
    radial-gradient(circle at 86% 24%, rgba(240,109,58,0.15), transparent 30%),
    linear-gradient(145deg, #1a2a45 0%, #0f1a2c 52%, #08101d 100%);
}

.hero__visual::before,
.about-preview__visual::before,
.counter-offer__visual::before,
.ai-pricing__visual::before {
  content:'';
  position:absolute;
  inset:8% 0 auto 8%;
  width:72%;
  aspect-ratio:1;
  border-radius:50%;
  border:1px solid rgba(255,255,255,0.12);
  background:
    radial-gradient(circle at 50% 50%, rgba(59,158,255,0.14), transparent 56%),
    conic-gradient(from 120deg, rgba(240,109,58,0.30), rgba(59,158,255,0.18), transparent 58%, rgba(240,109,58,0.24));
  filter:blur(0.2px);
  opacity:0.36;
  transform:rotateX(66deg) rotateZ(-18deg);
  pointer-events:none;
  animation:premium-orbit-drift 12s ease-in-out infinite;
}

.counter-offer__visual::before,
.about-preview__visual::before {
  border-color:rgba(15,33,55,0.10);
  opacity:0.26;
}

.btn {
  transform-style:preserve-3d;
  will-change:transform;
}

.btn:hover {
  filter:saturate(1.04);
}

.btn:focus-visible,
.navbar__link:focus-visible,
.download-cta__store:focus-visible,
.lc-ctab:focus-visible,
.lc-pnbtn:focus-visible {
  outline:3px solid rgba(59,158,255,0.35);
  outline-offset:3px;
}

.navbar {
  transition:background 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}

.navbar--solid {
  box-shadow:0 16px 50px rgba(15,33,55,0.09), inset 0 -1px 0 rgba(15,33,55,0.06);
}

.navbar__link {
  position:relative;
}

.nav-link::before {
  content:'';
  position:absolute;
  inset:6px 7px;
  border-radius:999px;
  background:rgba(240,109,58,0.08);
  opacity:0;
  transform:scale(0.88);
  transition:opacity var(--t), transform var(--t);
  z-index:-1;
}

.navbar__link:hover::before,
.navbar__link.is-active::before {
  opacity:1;
  transform:scale(1);
}

.stat-item,
.service-card,
.feature-card,
.process-step,
.about-feature,
.about-mv-card,
.team-card,
.testimonial-card,
.faq-item,
.contact-info__item,
.download-cta__store,
.lc-ccard {
  transform-style:preserve-3d;
  will-change:transform;
}

.service-card,
.feature-card,
.about-mv-card,
.team-card,
.testimonial-card,
.faq-item,
.contact-form,
.download-cta__store {
  box-shadow:0 16px 46px rgba(15,33,55,0.055), inset 0 1px 0 rgba(255,255,255,0.55);
}

.service-card,
.feature-card {
  background:linear-gradient(145deg, rgba(255,255,255,0.98), rgba(248,250,252,0.92));
  backdrop-filter:blur(10px);
}

.feature-card::before,
.about-mv-card::before,
.team-card::before,
.faq-item::before,
.download-cta__store::before {
  content:'';
  position:absolute;
  inset:0;
  border-radius:inherit;
  background:radial-gradient(circle at var(--mx, 50%) var(--my, 0%), rgba(59,158,255,0.18), transparent 42%);
  opacity:0;
  transition:opacity 0.28s ease;
  pointer-events:none;
}

.feature-card:hover::before,
.about-mv-card:hover::before,
.team-card:hover::before,
.faq-item:hover::before,
.download-cta__store:hover::before {
  opacity:1;
}

.service-card:hover,
.feature-card:hover,
.about-mv-card:hover,
.team-card:hover,
.faq-item:hover {
  box-shadow:0 28px 76px rgba(15,33,55,0.13), 0 0 0 1px rgba(240,109,58,0.08);
}

.stat-item:hover,
.contact-info__item:hover {
  transform:translateY(-6px);
}

.stat-item {
  border-radius:18px;
}

.stat-item::before {
  content:'';
  position:absolute;
  inset:0;
  border-radius:inherit;
  background:linear-gradient(135deg, rgba(255,255,255,0.12), transparent 62%);
  opacity:0;
  transition:opacity var(--t);
  pointer-events:none;
}

.stat-item:hover::before {
  opacity:1;
}

.process-section {
  position:relative;
  overflow:hidden;
}

.process-section::before {
  content:'';
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(circle at 20% 18%, rgba(240,109,58,0.18), transparent 32%),
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size:auto, 52px 52px, 52px 52px;
  opacity:0.52;
  animation:premium-grid-shift 16s linear infinite;
}

.process-step__num {
  box-shadow:0 12px 36px rgba(0,0,0,0.16), inset 0 1px 0 rgba(255,255,255,0.12);
}

.about-visual,
.contact-form,
.download-cta,
.ai-glass-card,
.phone {
  will-change:transform;
}

.contact-form:hover {
  transform:translateY(-6px);
  box-shadow:0 28px 80px rgba(15,33,55,0.14);
}

.faq-item {
  background:rgba(255,255,255,0.92);
}

.faq-item.is-open {
  box-shadow:0 18px 54px rgba(240,109,58,0.12), 0 0 0 3px rgba(240,109,58,0.07);
}

.form-control {
  transition:border-color var(--t), box-shadow var(--t), transform var(--t), background var(--t);
}

.form-control:focus {
  transform:translateY(-1px);
  box-shadow:0 0 0 4px rgba(240,109,58,0.10), 0 12px 30px rgba(15,33,55,0.07);
}

.download-cta {
  box-shadow:0 34px 110px rgba(15,33,55,0.28);
}

.download-cta::after {
  content:'';
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    linear-gradient(115deg, rgba(255,255,255,0.20), transparent 35%, transparent 72%, rgba(255,255,255,0.10)),
    radial-gradient(circle at 15% 15%, rgba(59,158,255,0.18), transparent 30%);
  opacity:0.72;
}

.download-cta__inner {
  position:relative;
  z-index:2;
}

.footer__social a,
.back-to-top,
.contact-info__icon,
.feature-card__icon,
.service-card__icon,
.process-step__num {
  transform-style:preserve-3d;
}

.footer__social a:hover,
.back-to-top:hover,
.contact-info__item:hover .contact-info__icon {
  transform:translateY(-4px) translateZ(12px);
}

@keyframes premium-orbit-drift {
  0%,100% { transform:rotateX(66deg) rotateZ(-18deg) translateY(0); }
  50% { transform:rotateX(66deg) rotateZ(14deg) translateY(-14px); }
}

@keyframes premium-grid-shift {
  from { background-position:0 0, 0 0, 0 0; }
  to { background-position:0 0, 52px 52px, 52px 52px; }
}

@media (max-width: 768px) {
  .site-main > .section:not(.shipment-lifecycle):not(.ai-pricing)::before,
  .stats-bar::before,
  .counter-offer::before,
  .page-hero::before {
    opacity:0.38;
    background-size:auto, auto, 72px 72px, 72px 72px;
  }

  .hero__visual::before,
  .about-preview__visual::before,
  .counter-offer__visual::before,
  .ai-pricing__visual::before {
    display:none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-main > .section:not(.shipment-lifecycle):not(.ai-pricing)::before,
  .process-section::before,
  .hero__visual::before,
  .about-preview__visual::before,
  .counter-offer__visual::before,
  .ai-pricing__visual::before {
    animation:none !important;
  }

  .stat-item,
  .service-card,
  .feature-card,
  .process-step,
  .about-feature,
  .about-mv-card,
  .team-card,
  .testimonial-card,
  .faq-item,
  .contact-info__item,
  .download-cta__store,
  .lc-ccard,
  .about-visual,
  .contact-form {
    transform:none !important;
  }
}

.phone::before {
  content:'';
  position:absolute;
  inset:-10px;
  border-radius:54px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.28), rgba(255,255,255,0) 28%),
    linear-gradient(315deg, rgba(240,109,58,0.24), rgba(59,130,246,0.10) 44%, transparent 72%);
  opacity:0.48;
  filter:blur(14px);
  transform:translateZ(-2px);
  pointer-events:none;
}



.phone-frame {

  position:absolute;

  inset:0;

  border-radius:46px;

  background:
    linear-gradient(145deg, #3a3d46 0%, #20232b 28%, #11131a 64%, #05060a 100%);

  box-shadow:

    0 0 0 1px rgba(255,255,255,0.16),

    0 0 0 4px rgba(4,6,12,0.95),

    0 0 40px rgba(240,109,58,0.14),

    0 0 80px rgba(59,130,246,0.08),

    28px 54px 92px rgba(0,0,0,0.64),

    12px 26px 44px rgba(0,0,0,0.48),

    inset 0 2px 2px rgba(255,255,255,0.18),

    inset 6px 0 12px rgba(255,255,255,0.06),

    inset 0 -1px 0 rgba(0,0,0,0.5);

}

.phone-frame::before {
  content:'';
  position:absolute;
  inset:7px;
  border-radius:39px;
  border:1px solid rgba(255,255,255,0.10);
  box-shadow:inset 0 0 0 1px rgba(0,0,0,0.34);
  pointer-events:none;
}



.hero__phones .btn-side, .co-phone-wrap .btn-side {

  position:absolute;

  background: linear-gradient(to bottom, #2e3038, #1c1e24);

  border-radius: 3px;

  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);

}

.hero__phones .btn-power, .co-phone-wrap .btn-power  { width: 4px; height: 56px; right: -4px; top: 140px; border-radius: 0 3px 3px 0; }

.hero__phones .btn-vol-up, .co-phone-wrap .btn-vol-up { width: 4px; height: 40px; left: -4px; top: 120px; border-radius: 3px 0 0 3px; }

.hero__phones .btn-vol-dn, .co-phone-wrap .btn-vol-dn { width: 4px; height: 40px; left: -4px; top: 172px; border-radius: 3px 0 0 3px; }

[lang="ar"] .hero__phones .btn-power,
[lang="ar"] .co-phone-wrap .btn-power {
  left: -4px;
  right: auto;
  border-radius: 3px 0 0 3px;
}

[lang="ar"] .hero__phones .btn-vol-up,
[lang="ar"] .hero__phones .btn-vol-dn,
[lang="ar"] .co-phone-wrap .btn-vol-up,
[lang="ar"] .co-phone-wrap .btn-vol-dn {
  left: auto;
  right: -4px;
  border-radius: 0 3px 3px 0;
}



.phone-screen {

  position:absolute;

  top:13px;

  left:13px;

  right:13px;

  bottom:13px;

  border-radius:36px;

  overflow:hidden;

  background:#f8fafc;

  box-shadow:
    0 0 0 1px rgba(255,255,255,0.07),
    inset 0 0 0 1px rgba(0,0,0,0.22),
    inset 0 0 22px rgba(0,0,0,0.16);

}



.phone-screen::after {

  content:'';

  position:absolute;

  inset:0;

  pointer-events:none;

  background:
    linear-gradient(115deg, rgba(255,255,255,0.16) 0%, rgba(255,255,255,0.02) 28%, transparent 58%, rgba(255,255,255,0.07) 100%),
    linear-gradient(180deg, rgba(255,255,255,0.18), transparent 15%, transparent 82%, rgba(0,0,0,0.10));

  opacity:0.44;

  z-index:30;

}



.hero__phones .screen-content, .co-phone-wrap .screen-content {

  position:absolute;

  inset:0;

  overflow:hidden;

}



.hero__phones .wallpaper, .co-phone-wrap .wallpaper {

  position:absolute;

  inset:0;

  background: linear-gradient(160deg, #0d1117 0%, #0f1923 50%, #110d1e 100%);

}

.hero__phones .wallpaper::before, .co-phone-wrap .wallpaper::before {

  content:'';

  position:absolute;

  inset:0;

  background:

    radial-gradient(ellipse 60% 40% at 30% 30%, rgba(240,109,58,0.22) 0%, transparent 60%),

    radial-gradient(ellipse 50% 50% at 80% 70%, rgba(59,130,246,0.16) 0%, transparent 60%);

}



.hero__phones .wallpaper--light, .co-phone-wrap .wallpaper--light {

  background: linear-gradient(180deg, #ffffff 0%, #ffffff 100%);

}



.hero__phones .wallpaper--light::before, .co-phone-wrap .wallpaper--light::before {

  background: radial-gradient(ellipse 70% 40% at 20% 10%, rgba(240,109,58,0.07) 0%, transparent 60%);

}



.hero__phones .dynamic-island, .co-phone-wrap .dynamic-island {

  position:absolute;

  top:14px;

  left:50%;

  transform:translateX(-50%);

  width:90px;

  height:28px;

  background:#000;

  border-radius:20px;

  z-index:99;

  display:flex;

  align-items:center;

  justify-content:center;

  gap:8px;

}



.hero__phones .island-cam {

  width:10px;

  height:10px;

  border-radius:50%;

  background: radial-gradient(circle at 35% 35%, #222, #000);

  border: 1px solid #1a1a1a;

  position:relative;

}



.hero__phones .island-cam::after {

  content:'';

  position:absolute;

  width:3px;

  height:3px;

  border-radius:50%;

  background:#4facfe;

  top:2px;

  left:2px;

  box-shadow:0 0 4px #4facfe;

}

.co-phone-wrap .island-cam {

  width:10px;

  height:10px;

  border-radius:50%;

  background: radial-gradient(circle at 35% 35%, #222, #000);

  border: 1px solid #1a1a1a;

  position:relative;

}

.co-phone-wrap .island-cam::after {

  content:'';

  position:absolute;

  width:3px;

  height:3px;

  border-radius:50%;

  background:#4facfe;

  top:2px;

  left:2px;

  box-shadow:0 0 4px #4facfe;

}



.hero__phones .island-led {

  width:6px;

  height:6px;

  border-radius:50%;

  background:var(--red);

  box-shadow:0 0 6px rgba(240,109,58,0.9);

  animation: ledPulse 2s ease-in-out infinite;

}



@keyframes ledPulse { 0%,100%{opacity:1} 50%{opacity:0.4} }



.hero__phones .status-bar, .co-phone-wrap .status-bar {

  position:absolute;

  top:0;

  left:0;

  right:0;

  height:52px;

  display:flex;

  align-items:flex-end;

  justify-content:space-between;

  padding:0 20px 8px;

  z-index:10;

  font-size:11px;

  font-weight:600;

  color:#fff;

  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New', monospace;

}



.hero__phones .status-time, .co-phone-wrap .status-time { font-size:14px; font-weight:700; letter-spacing:0; }

.hero__phones .status-icons, .co-phone-wrap .status-icons { display:flex; gap:5px; align-items:center; }

.hero__phones .icon-bar, .co-phone-wrap .icon-bar { display:flex; gap:2px; align-items:flex-end; }

.hero__phones .bar, .co-phone-wrap .bar { width:3px; background:#fff; border-radius:1px; }

.hero__phones .b1{height:4px} .hero__phones .b2{height:7px} .hero__phones .b3{height:10px} .hero__phones .b4{height:13px}
.co-phone-wrap .b1{height:4px} .co-phone-wrap .b2{height:7px} .co-phone-wrap .b3{height:10px} .co-phone-wrap .b4{height:13px}

.hero__phones .wifi-icon, .co-phone-wrap .wifi-icon { font-size:12px; }



.hero__phones .battery, .co-phone-wrap .battery {

  width:22px;

  height:11px;

  border:1.5px solid #fff;

  border-radius:3px;

  position:relative;

  display:flex;

  align-items:center;

  padding:2px;

}



.hero__phones .battery::after, .co-phone-wrap .battery::after {

  content:'';

  position:absolute;

  right:-5px;

  top:50%;

  transform:translateY(-50%);

  width:3px;

  height:6px;

  background:#fff;

  border-radius:0 1px 1px 0;

}



.hero__phones .battery-fill, .co-phone-wrap .battery-fill { height:100%; width:75%; background:#34d399; border-radius:1px; }



/* Light UI overrides (front phone) */

.hero__phones .wallpaper--light ~ .status-bar, .co-phone-wrap .wallpaper--light ~ .status-bar,

.hero__phones .wallpaper--light ~ .status-bar .bar, .co-phone-wrap .wallpaper--light ~ .status-bar .bar,

.hero__phones .wallpaper--light ~ .status-bar .battery, .co-phone-wrap .wallpaper--light ~ .status-bar .battery,

.hero__phones .wallpaper--light ~ .status-bar .battery::after, .co-phone-wrap .wallpaper--light ~ .status-bar .battery::after {

  color: rgba(15,33,55,0.92);

  border-color: rgba(15,33,55,0.72);

}



.hero__phones .wallpaper--light ~ .status-bar .bar, .co-phone-wrap .wallpaper--light ~ .status-bar .bar,

.hero__phones .wallpaper--light ~ .status-bar .battery::after, .co-phone-wrap .wallpaper--light ~ .status-bar .battery::after {

  background: rgba(15,33,55,0.92);

}



.hero__phones .wallpaper--light ~ .status-bar .battery, .co-phone-wrap .wallpaper--light ~ .status-bar .battery {

  border-color: rgba(15,33,55,0.72);

}



.hero__phones .wallpaper--light ~ .status-bar .wifi-icon, .co-phone-wrap .wallpaper--light ~ .status-bar .wifi-icon { color: rgba(15,33,55,0.92); }



.hero__phones .wallpaper--light ~ .status-bar .battery-fill, .co-phone-wrap .wallpaper--light ~ .status-bar .battery-fill { background:#22C55E; }



.hero__phones .wallpaper--light ~ .dynamic-island, .co-phone-wrap .wallpaper--light ~ .dynamic-island {

  background: rgba(15,33,55,0.92);

  border: 1px solid rgba(255,255,255,0.10);

}



.hero__phones .main-scroll, .co-phone-wrap .main-scroll {

  position:absolute;

  inset:52px 0 70px;

  overflow-y:auto;

  padding:12px 14px;

  scrollbar-width:none;

}

.hero__phones .main-scroll::-webkit-scrollbar { display:none; }



.hero__phones .main-scroll, .co-phone-wrap .main-scroll { overflow:hidden; }

.hero__phones .main-scroll--media,
.co-phone-wrap .main-scroll--media {
  inset:0;
  padding:0;
  overflow:hidden;
  background:#fff;
}

.screen-content--media .wallpaper {
  display:none;
}

.screen-content--media .status-bar {
  height:54px;
  align-items:flex-start;
  padding:18px 22px 0;
  text-shadow:0 1px 8px rgba(0,0,0,0.28);
}

.screen-content--media .dynamic-island {
  top:13px;
  width:86px;
  height:28px;
  background:linear-gradient(180deg, #121821 0%, #07101b 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 8px 18px rgba(4,8,16,0.18);
}

.screen-content--media.screen-content--on-orange .status-bar,
.screen-content--media.screen-content--on-orange .wifi-icon {
  color:#fff;
}

.screen-content--media.screen-content--on-orange .bar,
.screen-content--media.screen-content--on-orange .battery::after {
  background:#fff;
}

.screen-content--media.screen-content--on-orange .battery {
  border-color:rgba(255,255,255,0.88);
}

.screen-content--media.screen-content--on-light .status-bar,
.screen-content--media.screen-content--on-light .wifi-icon {
  color:rgba(15,33,55,0.92);
  text-shadow:none;
}

.screen-content--media.screen-content--on-light .bar,
.screen-content--media.screen-content--on-light .battery::after {
  background:rgba(15,33,55,0.92);
}

.screen-content--media.screen-content--on-light .battery {
  border-color:rgba(15,33,55,0.70);
}

.screen-content--media.screen-content--on-light .battery-fill {
  background:#22C55E;
}



.hero__phones .greeting { margin-bottom:16px; }

.hero__phones .greeting-sub {

  font-size:11px;

  color: rgba(240,244,255,0.45);

  font-weight:600;

  letter-spacing:0.06em;

  text-transform:uppercase;

  margin-bottom:2px;

}



.hero__phones .greeting-name {

  font-size:20px;

  font-weight:900;

  color:#f0f4ff;

  letter-spacing:0;

}



.hero__phones .greeting-name span { color: var(--red); }



/* Light phone: Find Drivers */

.hero__phones .hp-light { color: var(--title); }



.hero__phones .hp-light-header {

  background: linear-gradient(135deg, #FF8655 0%, var(--red) 68%, var(--red-dark) 100%);

  border-radius: 22px;

  padding: 16px;

  color:#fff;

  box-shadow: 0 12px 32px rgba(240,109,58,0.22);

  margin-bottom: 14px;

}



.hero__phones .hp-light-header-title {

  font-size: 14px;

  font-weight: 900;

  letter-spacing: 0;

  margin-bottom: 10px;

}



.hero__phones .hp-light-route {

  display:flex;

  align-items:center;

  gap:10px;

  background: rgba(255,255,255,0.22);

  border: 1px solid rgba(255,255,255,0.24);

  padding: 10px 12px;

  border-radius: 14px;

  font-size: 12px;

  font-weight: 700;

}



.hero__phones .hp-light-route i { opacity:0.95; }



.hero__phones .hp-light-list {

  display:flex;

  flex-direction:column;

  gap:12px;

}



.hero__phones .hp-light-driver {

  display:flex;

  align-items:center;

  gap:12px;

  padding: 14px 14px;

  border-radius: 18px;

  background: rgba(255,255,255,0.92);

  border: 1px solid rgba(15,33,55,0.08);

  box-shadow: 0 10px 22px rgba(0,0,0,0.06);

}



.hero__phones .hp-light-avatar {

  width:42px;

  height:42px;

  border-radius:50%;

  background: #E5E7EB;

  flex-shrink:0;

}



.hero__phones .hp-light-name {

  font-size: 13px;

  font-weight: 900;

  color: var(--title);

  line-height:1.2;

}



.hero__phones .hp-light-status {

  font-size: 12px;

  color: #64748B;

  margin-top: 3px;

}



/* Dark phone: Active Trip */

.hero__phones .hp-dark {

  padding: 8px 4px;

  color:#fff;

}



.hero__phones .hp-dark-title {

  font-size: 12px;

  font-weight: 900;

  letter-spacing: 0.08em;

  text-transform: uppercase;

  color: rgba(255,255,255,0.74);

  margin-bottom: 12px;

}



.hero__phones .hp-dark-city {

  font-size: 26px;

  font-weight: 900;

  letter-spacing: 0;

  margin-bottom: 6px;

}



.hero__phones .hp-dark-route {

  font-size: 12.5px;

  color: rgba(255,255,255,0.56);

  margin-bottom: 18px;

}



.hero__phones .hp-dark-card {

  background: rgba(255,255,255,0.08);

  border: 1px solid rgba(255,255,255,0.10);

  border-radius: 20px;

  padding: 16px;

  box-shadow: 0 18px 44px rgba(0,0,0,0.35);

}



.hero__phones .hp-dark-card-label {

  font-size: 11px;

  font-weight: 800;

  letter-spacing: 0.08em;

  text-transform: uppercase;

  color: rgba(255,255,255,0.62);

  margin-bottom: 10px;

}



.hero__phones .hp-dark-card-val {

  font-size: 18px;

  font-weight: 900;

  margin-bottom: 14px;

}



.hero__phones .hp-dark-btn {

  width:100%;

  padding: 11px 12px;

  border-radius: 16px;

  border: none;

  background: linear-gradient(135deg, #FF8655 0%, var(--red) 68%, var(--red-dark) 100%);

  color:#fff;

  font-weight: 900;

  font-size: 12px;

  box-shadow: 0 14px 28px rgba(240,109,58,0.22);

}



.hero__phones .hero-card {

  background: linear-gradient(135deg, var(--red) 0%, #ff9a5c 50%, #ffb347 100%);

  border-radius:20px;

  padding:18px;

  margin-bottom:14px;

  position:relative;

  overflow:hidden;

  box-shadow: 0 8px 32px rgba(240,109,58,0.30);

}



.hero__phones .hero-card::before {

  content:'';

  position:absolute;

  top:-30px;

  right:-30px;

  width:120px;

  height:120px;

  border-radius:50%;

  background: rgba(255,255,255,0.12);

}



.hero__phones .hero-card::after {

  content:'';

  position:absolute;

  bottom:-20px;

  right:20px;

  width:80px;

  height:80px;

  border-radius:50%;

  background: rgba(255,255,255,0.08);

}



.hero__phones .card-label {

  font-size:10px;

  font-weight:800;

  color: rgba(255,255,255,0.74);

  text-transform:uppercase;

  letter-spacing:0.08em;

  margin-bottom:6px;

}



.hero__phones .card-amount {

  font-size:28px;

  font-weight:900;

  color:#fff;

  letter-spacing:0;

  line-height:1;

  margin-bottom:4px;

}



.hero__phones .card-sub {

  font-size:11px;

  color: rgba(255,255,255,0.78);

  margin-bottom:12px;

}



.hero__phones .card-actions { display:flex; gap:8px; }



.hero__phones .card-btn {

  flex:1;

  padding:7px 0;

  background: rgba(255,255,255,0.20);

  border:none;

  border-radius:10px;

  color:#fff;

  font-size:11px;

  font-weight:700;

  cursor:pointer;

  text-align:center;

  backdrop-filter: blur(4px);

  transition: background 0.2s;

}



.hero__phones .card-btn:hover { background: rgba(255,255,255,0.30); }



.hero__phones .sec-title {

  display:flex;

  justify-content:space-between;

  align-items:center;

  margin-bottom:10px;

}



.hero__phones .sec-title h3 { font-size:13px; font-weight:800; color:#f0f4ff; }

.hero__phones .sec-title span { font-size:11px; color: #ff9a5c; font-weight:700; }



.hero__phones .quick-grid {

  display:grid;

  grid-template-columns: repeat(4, 1fr);

  gap:8px;

  margin-bottom:16px;

}



.hero__phones .quick-item {

  display:flex;

  flex-direction:column;

  align-items:center;

  gap:5px;

}



.hero__phones .quick-icon {

  width:44px;

  height:44px;

  border-radius:14px;

  display:flex;

  align-items:center;

  justify-content:center;

  font-size:18px;

}



.hero__phones .qi-1 { background: linear-gradient(135deg, var(--red), #ff9a5c); box-shadow: 0 4px 16px rgba(240,109,58,0.35); }

.hero__phones .qi-2 { background: linear-gradient(135deg, #4facfe, #00f2fe); box-shadow: 0 4px 16px rgba(79,172,254,0.35); }

.hero__phones .qi-3 { background: linear-gradient(135deg, #a78bfa, #c4b5fd); box-shadow: 0 4px 16px rgba(167,139,250,0.35); }

.hero__phones .qi-4 { background: linear-gradient(135deg, #34d399, #6ee7b7); box-shadow: 0 4px 16px rgba(52,211,153,0.35); }



.hero__phones .quick-label { font-size:9px; color: rgba(240,244,255,0.45); font-weight:700; text-align:center; }



.hero__phones .bottom-nav {

  position:absolute;

  bottom:0;

  left:0;

  right:0;

  height:70px;

  background: rgba(13,17,23,0.85);

  backdrop-filter: blur(20px);

  border-top: 1px solid rgba(255,255,255,0.08);

  display:flex;

  align-items:center;

  justify-content:space-around;

  padding:0 10px 8px;

  z-index:20;

}



.hero__phones .nav-item {

  display:flex;

  flex-direction:column;

  align-items:center;

  gap:3px;

  padding:6px 14px;

  border-radius:12px;

}



.hero__phones .nav-item.active { background: rgba(240,109,58,0.12); }

.hero__phones .nav-icon { font-size:18px; filter: grayscale(1) brightness(0.5); }

.hero__phones .nav-item.active .nav-icon { filter:none; }

.hero__phones .nav-label { font-size:9px; font-weight:700; color: rgba(240,244,255,0.45); }

.hero__phones .nav-item.active .nav-label { color: #ff9a5c; }



/* Partner logos strip */

.hero__partners {

  position:relative; z-index:1;

  padding-top:20px; padding-bottom:32px;

}

.hero__partners-label {

  font-size:12px; color:rgba(255,255,255,0.35);

  letter-spacing:0.08em; text-transform:uppercase;

  margin-bottom:16px; display:block;

}

.hero__partners-logos {

  display:flex; align-items:center; gap:32px; flex-wrap:wrap;

}

.hero__partners-logos span {

  font-size:13px; font-weight:700; letter-spacing:0.05em;

  color:rgba(255,255,255,0.28); text-transform:uppercase;

  transition:var(--t); cursor:default;

}

.hero__partners-logos span:hover { color:rgba(255,255,255,0.55); }



/* Scroll cue */

.hero__scroll-cue {

  position:absolute; bottom:28px; left:50%; transform:translateX(-50%);

  color:rgba(255,255,255,0.28); font-size:13px;

  animation:bounce-y 2.4s ease-in-out infinite;

}

@keyframes bounce-y {

  0%,100% { transform:translateX(-50%) translateY(0); }

  50%      { transform:translateX(-50%) translateY(9px); }

}



/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•

   STATS BAR â€” White, premium large numbers

â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

.stats-bar {

  background:transparent;

  position:relative; z-index:2;

  margin-top:26px;

  padding:0 0 22px;

}

.stats-bar__inner {

  display:grid;

  grid-template-columns:repeat(4, 1fr);

  gap:22px;

  padding:0;

  border-radius:var(--r-xl);

  background:transparent;

  border:none;

  box-shadow:none;

  backdrop-filter:none;

}

.stat-item {

  display:flex;

  flex-direction:column;

  align-items:center;

  justify-content:center;

  text-align:center;

  padding:22px 16px;

  border-radius:18px;

  background:rgba(255,255,255,0.82);

  border:none;

  box-shadow:0 10px 28px rgba(2,6,23,0.10);

  transition:transform 0.35s cubic-bezier(0.22,1,0.36,1), box-shadow 0.35s ease, background 0.35s ease;

}

.stat-item:hover {

  transform:translateY(-6px);

  box-shadow:0 18px 46px rgba(2,6,23,0.16);

  background:rgba(255,255,255,0.90);

}

.stat-item__icon {

  width:42px; height:42px;

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

  border-radius:14px;

  background:rgba(240,109,58,0.10);

  color:rgba(240,109,58,0.75);

  margin-bottom:12px;

}

.stat-item__icon i { font-size:18px; }

.stat-item__num  {

  font-size:clamp(40px,4.5vw,60px); font-weight:900;

  color:var(--red); font-family:var(--f-head);

  line-height:1; margin-bottom:8px; letter-spacing:0;

}

.stat-item__label {

  font-size:12px; color:var(--muted);

  letter-spacing:0.08em; text-transform:uppercase; font-weight:600;

}

.stat-item__desc {

  margin-top:6px; font-size:13px; line-height:1.45;

  color:rgba(37, 45, 59, 0.66); font-weight:500;

}



/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•

   SERVICES

â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

.service-card {

  background:var(--white); border-radius:var(--r-lg);

  padding:36px 28px; border:1.5px solid var(--gray-200);

  transition:transform 0.35s cubic-bezier(0.22,1,0.36,1), box-shadow 0.35s ease, border-color 0.35s ease;

  position:relative; overflow:hidden;

}

/* Top bar slide-in */

.service-card::before {

  content:''; position:absolute; top:0; left:0; right:0;

  height:3px; background: linear-gradient(90deg, var(--red), #FFa070);

  transform:scaleX(0); transform-origin:left;

  transition:transform 0.4s cubic-bezier(0.22,1,0.36,1); border-radius:0 0 3px 3px;

}

/* Light sweep on hover */

.service-card::after {

  content:''; position:absolute; top:0; left:-80%;

  width:60%; height:100%;

  background:linear-gradient(90deg, transparent, rgba(240,109,58,0.03), transparent);

  transform:skewX(-15deg); transition:left 0.6s ease;

  pointer-events:none;

}

.service-card:hover {

  transform:translateY(-10px); box-shadow:var(--sh-lg);

  border-color:transparent;

}

.service-card:hover::before { transform:scaleX(1); }

.service-card:hover::after  { left:120%; }



.service-card__icon {

  width:64px; height:64px; display:flex; align-items:center;

  justify-content:center; border-radius:var(--r-md); margin-bottom:24px;

  font-size:24px; transition:all 0.35s cubic-bezier(0.22,1,0.36,1);

  background:linear-gradient(135deg, var(--red-light) 0%, rgba(240,109,58,0.08) 100%);

  color:var(--red);

}

.service-card:hover .service-card__icon {

  background:linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);

  color:white; transform:scale(1.10) rotate(-3deg);

  box-shadow:0 8px 20px rgba(240,109,58,0.25);

}

.service-card__title { font-size:17px; font-weight:700; margin-bottom:10px; color:var(--title); transition:color var(--t); }

.service-card:hover .service-card__title { color:var(--red); }

.service-card__desc  { font-size:14px; color:var(--muted); line-height:1.75; margin-bottom:22px; }

.service-card__link  {

  display:inline-flex; align-items:center; gap:7px;

  font-size:13px; font-weight:700; color:var(--red); transition:gap var(--t);

}

.service-card__link:hover { gap:12px; }

.service-card__link i { transition:transform var(--t); }

.service-card__link:hover i { transform:translateX(3px); }



/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•

   FEATURES / WHY US

â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

.feature-card {

  background:var(--white); border-radius:var(--r-lg);

  padding:36px 28px; border:1.5px solid var(--gray-200);

  text-align:center;

  transition:transform 0.35s cubic-bezier(0.22,1,0.36,1), box-shadow 0.35s ease, border-color 0.35s ease;

}

.feature-card:hover {

  transform:translateY(-8px);

  box-shadow:var(--sh-lg); border-color:transparent;

}

.feature-card__icon {

  width:64px; height:64px; display:flex; align-items:center;

  justify-content:center; border-radius:50%; margin:0 auto 22px;

  font-size:24px; transition:all 0.35s cubic-bezier(0.22,1,0.36,1);

  background:linear-gradient(135deg, var(--red-light) 0%, rgba(240,109,58,0.08) 100%);

  color:var(--red);

}

.feature-card:hover .feature-card__icon {

  background:linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);

  color:white; transform:scale(1.10);

  box-shadow:0 8px 20px rgba(240,109,58,0.25);

}

.feature-card__title {

  font-size:17px; font-weight:700; margin-bottom:10px; color:var(--title);

  transition:color var(--t);

}

.feature-card:hover .feature-card__title { color:var(--red); }

.feature-card__desc  { font-size:14px; color:var(--muted); line-height:1.78; }

.feature-card--green .feature-card__icon {
  background:linear-gradient(135deg, rgba(104, 211, 82, 0.14) 0%, rgba(104, 211, 82, 0.07) 100%);
  color:#63C957;
}

.feature-card--green:hover .feature-card__icon {
  background:linear-gradient(135deg, #78D957 0%, #3FAE45 100%);
  color:#fff;
  box-shadow:0 8px 20px rgba(104, 211, 82, 0.24);
}

.feature-card--green:hover .feature-card__title { color:#3FAE45; }

.return-flow {
  margin-top:34px;
  display:grid;
  grid-template-columns:minmax(0, 1fr) minmax(70px, 0.35fr) minmax(0, 1fr) minmax(70px, 0.35fr) minmax(0, 1.25fr);
  align-items:center;
  gap:18px;
  padding:24px 28px;
  border-radius:var(--r-lg);
  background:rgba(255,255,255,0.9);
  border:1.5px solid var(--gray-200);
  box-shadow:var(--sh-sm);
}

.return-flow__step {
  display:flex;
  align-items:center;
  gap:14px;
  min-width:0;
}

.return-flow__icon {
  width:58px;
  height:58px;
  flex:0 0 58px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:rgba(27, 49, 80, 0.06);
  border:1px solid rgba(27, 49, 80, 0.10);
  color:var(--dark);
  font-size:22px;
}

.return-flow__step--result .return-flow__icon {
  background:rgba(104, 211, 82, 0.13);
  border-color:rgba(104, 211, 82, 0.24);
  color:#3FAE45;
}

.return-flow__title {
  font-size:18px;
  line-height:1.35;
  font-weight:800;
  color:var(--title);
  font-family:var(--f-head);
}

.return-flow__step--result .return-flow__title { color:#3FAE45; }

.return-flow__arrow {
  position:relative;
  height:2px;
  border-top:2px dashed rgba(240, 109, 58, 0.55);
}

.return-flow__arrow::after {
  content:'';
  position:absolute;
  right:-1px;
  top:-6px;
  width:10px;
  height:10px;
  border-top:2px solid rgba(240, 109, 58, 0.8);
  border-right:2px solid rgba(240, 109, 58, 0.8);
  transform:rotate(45deg);
}

.return-flow__arrow--green {
  border-color:rgba(104, 211, 82, 0.6);
}

.return-flow__arrow--green::after {
  border-color:rgba(104, 211, 82, 0.86);
}

@media (max-width:900px) {
  .return-flow {
    grid-template-columns:1fr;
    justify-items:stretch;
    gap:14px;
  }

  .return-flow__arrow {
    width:2px;
    height:34px;
    justify-self:center;
    border-top:0;
    border-left:2px dashed rgba(240, 109, 58, 0.55);
  }

  .return-flow__arrow::after {
    right:auto;
    left:-6px;
    top:auto;
    bottom:0;
    transform:rotate(135deg);
  }

  .return-flow__arrow--green {
    border-left-color:rgba(104, 211, 82, 0.6);
  }
}

@media (max-width:560px) {
  .return-flow {
    margin-top:24px;
    padding:20px 16px;
  }

  .return-flow__icon {
    width:50px;
    height:50px;
    flex-basis:50px;
    font-size:19px;
  }

  .return-flow__title {
    font-size:16px;
  }
}



/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•

   PROCESS â€” dark section

â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

.process-section {

  background: var(--dark); position:relative; overflow:hidden;

}

.process-section::before {

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

  background:

    radial-gradient(ellipse at 15% 50%, rgba(240,109,58,0.07) 0%, transparent 55%),

    radial-gradient(ellipse at 85% 30%, rgba(59,130,246,0.04) 0%, transparent 55%);

}

.process-section::after {

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

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

  background-size:44px 44px;

}

.process-section .lc-3d-bg { position:absolute; inset:0; z-index:0; }
.process-section .container { position:relative; z-index:1; }

@media (max-width: 768px) {
  .process-section .lc-3d-bg { opacity:0.45; }
  .process-section .lc-3d-grid { width:760px; height:520px; bottom:-22%; }
  .process-section .lc-3d-orbit--one { width:260px; height:260px; right:-18%; }
  .process-section .lc-3d-orbit--two,
  .process-section .lc-3d-cube--two,
  .process-section .lc-3d-beam--two { display:none; }
}



.process-steps {

  display:grid; grid-template-columns:repeat(5,1fr);

  gap:24px; position:relative;

}

[lang="ar"] .process-steps { direction: rtl; }

/* Process steps responsive improvements */
@media (max-width:1024px) {
  .process-steps { grid-template-columns:repeat(3,1fr); gap:20px; }
  .process-steps::before { display:none; }
}

@media (max-width:768px) {
  .process-steps { grid-template-columns:repeat(2,1fr); gap:16px; }
  .process-step__num { width:64px; height:64px; font-size:18px; margin-bottom:18px; }
  .process-step__title { font-size:15px; }
  .process-step__desc { font-size:12px; max-width:100%; }
}

/* connector line */

.process-steps::before {

  content:''; position:absolute;

  top:39px; left:calc(10% + 40px); right:calc(10% + 40px);

  height:1px;

  background:linear-gradient(to right,

    rgba(240,109,58,0.5), rgba(240,109,58,0.2), rgba(240,109,58,0.05), transparent);

}

[lang="ar"] .process-steps::before {
  background:linear-gradient(to left,
    rgba(240,109,58,0.5), rgba(240,109,58,0.2), rgba(240,109,58,0.05), transparent);
}



.process-step { display:flex; flex-direction:column; align-items:center; text-align:center; }

.process-step__num {

  width:80px; height:80px; display:flex; align-items:center; justify-content:center;

  border-radius:50%; border:1.5px solid rgba(240,109,58,0.25);

  background:rgba(240,109,58,0.07);

  font-size:22px; font-weight:900; color:var(--red);

  margin-bottom:26px; font-family:var(--f-head); letter-spacing:0;

  position:relative; z-index:1; transition:var(--t);

}

.process-step:hover .process-step__num {

  background:var(--red); color:white; border-color:var(--red);

  box-shadow:var(--sh-red); transform:scale(1.10);

}

.process-step__icon-wrap { margin-bottom:18px; color:rgba(240,109,58,0.45); font-size:20px; }

.process-step__title { font-size:16px; font-weight:700; color:var(--white); margin-bottom:10px; }

.process-step__desc  { font-size:13px; color:rgba(255,255,255,0.50); line-height:1.78; max-width:220px; }



.process-cta { text-align:center; margin-top:56px; position:relative; z-index:1; }

@media (max-width: 768px) {
  .process-cta { margin-top:40px; }
}

@media (max-width: 480px) {
  .process-cta { margin-top:32px; }
  .process-cta .btn--lg { width:100%; justify-content:center; }
}



/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•

   ABOUT PREVIEW

â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

.about-preview {

  display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center;

}

.about-preview__img-wrap { position:relative; }



/* About visual image card */

.about-visual {

  aspect-ratio:4/5;

  border-radius:var(--r-xl);

  overflow:hidden;

  border:1px solid var(--gray-200);

  background:var(--off-white);

  background-size: cover;

  background-position: center;

  background-repeat: no-repeat;

  box-shadow:var(--sh-xl);

  position:relative;

}



.about-visual::after {

  content:'';

  position:absolute;

  inset:0;

  background: linear-gradient(180deg, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0.00) 35%, rgba(15,33,55,0.10) 100%);

  pointer-events:none;

}



.about-visual__img {

  width:100%;

  height:100%;

  display:block;

  object-fit:cover;

  object-position:center;

  transform: scale(1.01);

  position:relative;

  z-index:1;

}



/* About flow mock (matches reference) */

.about-flow {

  position:relative;

  aspect-ratio:4/5;

  border-radius:var(--r-xl);

  background: #f7f9fc;

  border:1px solid var(--gray-200);

  overflow:hidden;

  padding:34px;

  display:flex;

  flex-direction:column;

  justify-content:center;

  gap:26px;

  box-shadow:var(--sh-xl);

}



.about-flow::before {

  content:'';

  position:absolute;

  inset:0;

  background-image: radial-gradient(rgba(15,33,55,0.08) 1px, transparent 1px);

  background-size: 16px 16px;

  opacity: 0.65;

  pointer-events:none;

}



.about-flow::after {

  content:'';

  position:absolute;

  inset:0;

  background-image:

    linear-gradient(180deg, rgba(247,249,252,0.86) 0%, rgba(247,249,252,0.82) 55%, rgba(247,249,252,0.90) 100%),

    var(--about-flow-bg);

  background-size: cover;

  background-position: center;

  opacity: 1;

  pointer-events:none;

}



.about-flow {

  background-image: var(--about-flow-accent);

  background-size: 220px auto;

  background-position: right -24px bottom -18px;

  background-repeat: no-repeat;

}



.about-flow__card {

  position:relative;

  z-index:2;

  display:flex;

  align-items:center;

  gap:14px;

  background:var(--white);

  border:1px solid var(--gray-200);

  border-radius:14px;

  padding:16px 18px;

  box-shadow:0 16px 34px rgba(15,33,55,0.10);

  transform: translateY(0);

  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), box-shadow 0.35s ease, border-color 0.35s ease;

}



.about-flow__card:hover {

  transform: translateY(-4px);

  box-shadow:0 24px 50px rgba(15,33,55,0.14);

  border-color: rgba(240,109,58,0.25);

}



.about-flow__icon {

  width:44px;

  height:44px;

  border-radius:999px;

  display:flex;

  align-items:center;

  justify-content:center;

  font-size:16px;

  flex-shrink:0;

}



.about-flow__icon--navy {

  background: rgba(15,33,55,0.10);

  color: #0F2137;

}



.about-flow__icon--orange {

  background: rgba(240,109,58,0.14);

  color: var(--red);

}



.about-flow__title {

  font-weight:800;

  color: var(--title);

  font-size:14px;

  line-height:1.2;

}



.about-flow__sub {

  color: var(--muted);

  font-size:12.5px;

  margin-top:2px;

}



.about-flow__connector {

  position:relative;

  z-index:2;

  height:22px;

  width:100%;

  display:flex;

  align-items:center;

  justify-content:center;

}



.about-flow__connector::before {

  content:'';

  width:2px;

  height:22px;

  background: rgba(15,33,55,0.18);

  border-radius:2px;

}



.about-flow__card--secure {

  background: #0F2137;

  border-color: rgba(255,255,255,0.08);

}



.about-flow__card--secure .about-flow__title,

.about-flow__card--secure .about-flow__sub {

  color: rgba(255,255,255,0.92);

}



.about-flow__card--secure .about-flow__sub { color: rgba(255,255,255,0.72); }



.about-flow__card--secure .about-flow__icon--navy {

  background: rgba(255,255,255,0.10);

  color: rgba(255,255,255,0.92);

}



@media (prefers-reduced-motion: no-preference) {

  .about-flow__card { animation: aboutFlowFloat 5.5s ease-in-out infinite; }

  .about-flow__card--driver { animation-delay: 0s; }

  .about-flow__card--user   { animation-delay: 0.25s; }

  .about-flow__card--secure { animation-delay: 0.5s; }

  @keyframes aboutFlowFloat {

    0%,100% { transform: translateY(0); }

    50% { transform: translateY(-6px); }

  }

}



.about-preview__features { margin:28px 0; display:grid; grid-template-columns:1fr 1fr; gap:12px; }

.about-feature {

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

  font-size:13.5px; font-weight:500; color:var(--body);

}

.about-feature i {

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

  background:var(--red-light); color:var(--red);

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

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

}



/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•

   TESTIMONIALS

â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

.testimonials-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:28px; }

.testimonial-card {

  background:var(--white); border-radius:var(--r-lg);

  padding:32px 28px; border:1.5px solid var(--gray-200);

  transition:transform 0.35s cubic-bezier(0.22,1,0.36,1), box-shadow 0.35s ease, border-color 0.35s ease;

  display:flex; flex-direction:column;

}

.testimonial-card:hover {

  transform:translateY(-6px); box-shadow:var(--sh-lg);

  border-color:transparent;

}

.testimonial-card__stars { display:flex; gap:3px; margin-bottom:18px; }

.testimonial-card__stars i { color:#F59E0B; font-size:14px; }

.testimonial-card__quote {

  font-size:14.5px; line-height:1.82; color:var(--muted);

  margin-bottom:24px; flex:1; position:relative; padding-top:12px;

}

.testimonial-card__quote::before {

  content:'\201C'; font-size:72px; line-height:1;

  color:var(--red); opacity:0.10; position:absolute;

  top:-18px; left:-8px; font-family:Georgia,serif;

}

.testimonial-card__author {

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

  padding-top:20px; border-top:1px solid var(--gray-200);

}

.testimonial-card__avatar {

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

  background:linear-gradient(135deg, var(--gray-100), var(--gray-200));

  color:var(--muted); display:flex; align-items:center; justify-content:center;

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

}

.testimonial-card__name { font-size:14px; font-weight:700; color:var(--title); }

.testimonial-card__role { font-size:12px; color:var(--muted); margin-top:2px; }



/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•

   CTA BANNER

â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

.cta-banner {

  position:relative; overflow:hidden;

  background:linear-gradient(140deg, var(--red) 0%, #8B3D10 100%);

}

.cta-banner::before {

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

  background-image:url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");

}

.cta-banner::after {

  content:''; position:absolute; right:-120px; top:-120px;

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

  background:rgba(255,255,255,0.04); pointer-events:none;

}

.cta-banner__inner {

  position:relative; z-index:1;

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

  gap:48px; padding:80px 0;

}

.cta-banner__label {

  display:inline-flex; align-items:center; gap:8px;

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

  text-transform:uppercase; color:rgba(255,255,255,0.60); margin-bottom:16px;

}

.cta-banner__title {

  font-size:clamp(26px,3.4vw,44px); font-weight:800;

  color:white; line-height:1.12; margin-bottom:14px; letter-spacing:0;

}

.cta-banner__desc  { font-size:15px; color:rgba(255,255,255,0.70); max-width:500px; line-height:1.75; }

.cta-banner__actions { display:flex; flex-direction:column; gap:16px; align-items:flex-start; flex-shrink:0; }

.cta-banner__phone {

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

  color:rgba(255,255,255,0.80); font-size:14px; transition:var(--t);

}

.cta-banner__phone:hover { color:white; }

.cta-banner__phone i     { font-size:19px; color:rgba(255,255,255,0.55); }

.cta-banner__phone small { display:block; font-size:11px; opacity:0.60; letter-spacing:0.06em; }

.cta-banner__phone span  { font-size:17px; font-weight:700; font-family:var(--f-head); }



/* ════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════ */
.site-footer { background:var(--dark); color:white; }

.footer-main { padding:80px 0 52px; }

.footer-grid { display:grid; grid-template-columns:1.7fr 1fr 1fr 1.45fr 1.2fr; gap:44px; }



.footer-brand__logo      { margin-bottom:16px; }

.footer-brand__logo-link { display:inline-block; }

.footer-brand__logo-text { font-family:var(--f-head); font-size:22px; font-weight:900; color:white; }

.footer-brand__logo-text span { color:var(--red); }

.footer-logo-img { height:44px; width:auto; display:block; object-fit:contain; border-radius:var(--r-sm); }

.footer-brand__desc      { font-size:14px; color:rgba(255,255,255,0.45); line-height:1.82; margin-bottom:26px; }

.footer-support {
  display:flex;
  flex-direction:column;
  gap:14px;
  margin:0 0 24px;
}

.footer-support__item {
  display:flex;
  align-items:flex-start;
  gap:11px;
}

.footer-support__item i {
  color:var(--red);
  width:15px;
  margin-top:2px;
  flex-shrink:0;
  font-size:13px;
}

.footer-support__title {
  font-size:11px;
  font-weight:800;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:rgba(255,255,255,0.72);
  margin-bottom:4px;
}

.footer-support__item p {
  margin:0;
  font-size:13px;
  line-height:1.55;
  color:rgba(255,255,255,0.48);
}

.footer-support__item span {
  color:var(--red);
  font-weight:800;
}



.footer-social      { display:flex; gap:10px; flex-wrap:wrap; }

.footer-social__link {

  width:40px; height:40px; display:flex; align-items:center; justify-content:center;

  border-radius:var(--r-md); background:rgba(255,255,255,0.055);

  color:rgba(255,255,255,0.50); font-size:14px;

  transition:transform 0.35s cubic-bezier(0.22,1,0.36,1), background var(--t), color var(--t), border-color var(--t);

  border:1px solid rgba(255,255,255,0.07);

}

.footer-social__link:hover {

  background:var(--red); color:white;

  transform:translateY(-3px); border-color:var(--red);

  box-shadow:0 6px 16px rgba(240,109,58,0.30);

}



.footer-col__title {

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

  text-transform:uppercase; color:rgba(255,255,255,0.30); margin-bottom:20px;

}

.footer-links { display:flex; flex-direction:column; gap:10px; }

.footer-link {

  font-size:14px; color:rgba(255,255,255,0.52);

  transition:var(--t); display:inline-flex; align-items:center; gap:6px;

}

.footer-link:hover { color:white; }



.footer-contact-item { display:flex; align-items:flex-start; gap:12px; margin-bottom:14px; }

.footer-contact-item i { color:var(--red); width:16px; margin-top:2px; flex-shrink:0; font-size:13px; }

.footer-contact-item span { font-size:14px; color:rgba(255,255,255,0.52); line-height:1.5; }

.footer-contact-item a:hover { color:white; }

.footer-contact-link { color:rgba(255,255,255,0.52); transition:color var(--t); }

.footer-contact-link:hover { color:white; }

.footer-app__desc {
  margin:0 0 16px;
  font-size:14px;
  line-height:1.6;
  color:rgba(255,255,255,0.52);
}

.footer-app__stores {
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:10px;
}

.footer-app__store {
  min-width:178px;
  padding:9px 12px;
  border-radius:12px;
  box-shadow:none;
}

.footer-app__store .download-cta__store-icon {
  width:28px;
  height:28px;
  border-radius:8px;
}

.footer-app__store .download-cta__store-kicker { font-size:8px; }

.footer-app__store .download-cta__store-name { font-size:14px; }

.footer-app__social {
  margin-top:22px;
}

.footer-app__social-title {
  margin:0 0 12px;
  font-size:11px;
  font-weight:800;
  letter-spacing:0.12em;
  text-transform:uppercase;
  color:rgba(255,255,255,0.42);
}



.footer-bottom { border-top:1px solid rgba(255,255,255,0.07); }

.footer-bottom .container { padding-top:24px; padding-bottom:24px; }

.footer-bottom__inner {

  display:flex; align-items:center; justify-content:space-between; gap:16px; flex-wrap:wrap;

}

.footer-bottom__copy { font-size:13px; color:rgba(255,255,255,0.30); }

.footer-bottom__copy a { color:var(--red); }

.footer-bottom__links { display:flex; gap:20px; }

.footer-bottom__link  { font-size:13px; color:rgba(255,255,255,0.30); transition:var(--t); }

.footer-bottom__link:hover { color:var(--red); }

/* Back to Top */
.back-to-top {
  position:fixed; bottom:24px; right:24px; z-index:900;
  width:46px; height:46px; border-radius:50%;
  background:var(--red); color:var(--white);
  display:flex; align-items:center; justify-content:center;
  font-size:16px; border:none; cursor:pointer;
  box-shadow:var(--sh-red);
  opacity:0; pointer-events:none;
  transition:opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  -webkit-tap-highlight-color:transparent;
}
.back-to-top.is-visible { opacity:1; pointer-events:all; }
.back-to-top:hover { transform:translateY(-4px); box-shadow:var(--sh-red-lg); }


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•

   PAGE HERO â€” inner pages

â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

.page-hero {

  padding:calc(var(--nav-h) + 60px) 0 60px;

  background:linear-gradient(160deg, var(--dark-2) 0%, var(--dark) 100%);

  position:relative; overflow:hidden;

}

.page-hero::before {

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

  background:radial-gradient(ellipse at 80% 40%, rgba(240,109,58,0.08) 0%, transparent 55%);

}

.page-hero::after {

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

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

  background-size:44px 44px;

}

.page-hero__inner { position:relative; z-index:1; }

.page-hero__breadcrumb {

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

  font-size:12px; color:rgba(255,255,255,0.38); margin-bottom:20px;

}

.page-hero__breadcrumb a { color:rgba(255,255,255,0.38); transition:var(--t); }

.page-hero__breadcrumb a:hover { color:var(--red); }

.page-hero__breadcrumb span { color:var(--red); }

.page-hero__title {

  font-size:clamp(32px,5vw,58px); font-weight:900;

  color:white; margin-bottom:16px; line-height:1.08; letter-spacing:0;

}

.page-hero__title em { color:var(--red); font-style:normal; }

.page-hero__desc { font-size:16px; color:rgba(255,255,255,0.58); max-width:600px; line-height:1.82; }



/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•

   FAQ

â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

.faq-category { margin-bottom:48px; }

.faq-category:last-of-type { margin-bottom:0; }

.faq-category__title {

  font-size:20px; font-weight:800; color:var(--title);

  margin-bottom:20px; padding-bottom:14px;

  border-bottom:2px solid var(--gray-200); letter-spacing:0;

}

.faq-list { display:flex; flex-direction:column; gap:12px; }

.faq-item {

  border:1.5px solid var(--gray-200); border-radius:var(--r-md);

  overflow:hidden; transition:border-color var(--t);

}

.faq-item.is-open { border-color:var(--red); box-shadow:0 0 0 3px rgba(240,109,58,0.07); }

.faq-item__trigger {

  width:100%; display:flex; align-items:center; justify-content:space-between;

  gap:16px; padding:19px 22px; font-size:15px; font-weight:600;

  color:var(--title); background:none; border:none; cursor:pointer;

  text-align:left; transition:color var(--t), background var(--t); font-family:var(--f-head);

}

.faq-item__trigger:hover { color:var(--red); background:rgba(240,109,58,0.02); }

.faq-item.is-open .faq-item__trigger { color:var(--red); }

.faq-item__icon {

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

  border:1.5px solid var(--gray-300); display:flex;

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

  font-size:12px; color:var(--muted);

  transition:transform 0.35s cubic-bezier(0.22,1,0.36,1), background var(--t), border-color var(--t), color var(--t);

  flex-shrink:0;

}

.faq-item.is-open .faq-item__icon {

  background:var(--red); border-color:var(--red); color:white;

  transform:rotate(45deg);

}

.faq-item__body {

  max-height:0; overflow:hidden;

  transition:max-height 0.42s cubic-bezier(0.22,1,0.36,1), opacity 0.3s ease;

  opacity:0;

}

.faq-item.is-open .faq-item__body { max-height:400px; opacity:1; }

.faq-item__answer { padding:0 22px 22px; font-size:14px; line-height:1.85; color:var(--muted); }



/* Download CTA (replaces “Still Have Questions?”) */

.download-cta {

  margin-top: 56px;

  border-radius: var(--r-2xl);

  overflow: hidden;

  background: linear-gradient(180deg, #F47A41 0%, var(--red) 100%);

  box-shadow: 0 28px 70px rgba(240, 109, 58, 0.24);

  position: relative;

  border: 1px solid rgba(255,255,255,0.16);

}

.download-cta::before {

  content: '';

  position: absolute;

  inset: 0;

  background:

    radial-gradient(ellipse 70% 60% at 20% 15%, rgba(255,255,255,0.18) 0%, transparent 55%),

    radial-gradient(ellipse 60% 55% at 80% 70%, rgba(0,0,0,0.12) 0%, transparent 60%);

  opacity: 0.9;

  pointer-events: none;

}

.download-cta__inner {

  position: relative;

  z-index: 1;

  padding: clamp(40px, 5vw, 64px);

  text-align: center;

  display: grid;

  justify-items: center;

  gap: 18px;

}

.download-cta__title {

  font-family: var(--f-head);

  font-size: clamp(26px, 3.6vw, 44px);

  font-weight: 900;

  letter-spacing: 0;

  line-height: 1.08;

  color: #fff;

  margin: 0;

  max-width: 18ch;

}

.download-cta__desc {

  margin: 0;

  max-width: 64ch;

  color: rgba(255,255,255,0.92);

  font-size: 14px;

  line-height: 1.7;

}

.download-cta__actions {

  margin-top: 10px;

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 14px;

  flex-wrap: wrap;

}

.download-cta__store {

  display: inline-flex;

  align-items: center;

  gap: 12px;

  padding: 12px 16px;

  border-radius: var(--r-pill);

  text-decoration: none;

  border: 1px solid rgba(255,255,255,0.22);

  box-shadow: 0 10px 26px rgba(0,0,0,0.12);

  transition: transform var(--t), box-shadow var(--t), background var(--t), border-color var(--t);

  min-width: 200px;

  justify-content: center;

}

.download-cta__store:focus-visible {

  outline: 3px solid rgba(255,255,255,0.55);

  outline-offset: 3px;

}

.download-cta__store-icon {

  width: 34px;

  height: 34px;

  border-radius: 10px;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  flex-shrink: 0;

  font-size: 16px;

}

.download-cta__store-text { display: inline-flex; flex-direction: column; line-height: 1.1; }

.download-cta__store-kicker {

  font-size: 10px;

  font-weight: 700;

  letter-spacing: 0.08em;

  text-transform: uppercase;

  opacity: 0.86;

}

.download-cta__store-name {

  font-size: 15px;

  font-weight: 800;

  letter-spacing: 0;

}

.download-cta__store--google {

  background: rgba(15,33,55,0.92);

  color: #fff;

  border-color: rgba(255,255,255,0.14);

}

.download-cta__store--google .download-cta__store-icon {

  background: rgba(255,255,255,0.10);

}

.download-cta__store--apple {

  background: rgba(255,255,255,0.94);

  color: rgba(15,33,55,0.95);

  border-color: rgba(15,33,55,0.10);

}

.download-cta__store--apple .download-cta__store-icon {

  background: rgba(15,33,55,0.06);

}

.download-cta__store:hover {

  transform: translateY(-2px);

  box-shadow: 0 18px 40px rgba(0,0,0,0.18);

}

.download-cta__store:active { transform: translateY(0); }

.download-cta__qr {

  margin-top: 10px;

}

.download-cta__qr-card {

  width: 128px;

  height: 128px;

  border-radius: 20px;

  background: rgba(255,255,255,0.92);

  border: 1px solid rgba(15,33,55,0.10);

  box-shadow: 0 18px 40px rgba(0,0,0,0.14);

  display: grid;

  place-items: center;

  position: relative;

}

.download-cta__qr-card::before {

  content: '';

  position: absolute;

  inset: 12px;

  border-radius: 14px;

  border: 1.5px dashed rgba(15,33,55,0.18);

}

.download-cta__qr-text {

  position: relative;

  z-index: 1;

  font-size: 11px;

  font-weight: 800;

  color: rgba(15,33,55,0.62);

}

@media (max-width: 768px) {
  .download-cta { margin-top: 32px; border-radius: var(--r-xl); }
  .download-cta__inner { padding: 28px 16px; gap: 14px; }
  .download-cta__title { font-size:clamp(18px, 5vw, 24px); }
  .download-cta__desc { font-size:14px; line-height:1.7; }
  .download-cta__actions { flex-direction: column; width: 100%; gap: 12px; margin-top:8px; }
  .download-cta__store { width: 100%; max-width: 100%; min-height:52px; padding:12px 16px; }
  .download-cta__store-icon { width:32px; height:32px; font-size:18px; }
  .download-cta__store-kicker { font-size:9px; }
  .download-cta__store-name { font-size:14px; }
  .download-cta__qr { margin-top:8px; }
  .download-cta__qr-card { width: 100px; height: 100px; }
  .download-cta__qr-text { font-size:10px; }
}



/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•

   CONTACT

â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

.contact-layout { display:grid; grid-template-columns:1fr 1.6fr; gap:56px; align-items:start; }

.contact-info__item { display:flex; gap:16px; margin-bottom:24px; align-items:center; }

.contact-info__icon {

  width:52px; height:52px;

  background:linear-gradient(135deg,var(--red-light),rgba(240,109,58,0.10));

  color:var(--red); border-radius:var(--r-md);

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

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

  transition:var(--t);

}

.contact-info__item:hover .contact-info__icon {

  background:var(--red); color:white;

  box-shadow:0 6px 16px rgba(240,109,58,0.20);

}

.contact-info__label { font-size:11px; font-weight:700; letter-spacing:0.09em; text-transform:uppercase; color:var(--muted); margin-bottom:4px; }

.contact-info__value { font-size:15px; font-weight:600; color:var(--title); }

.contact-info__value a { color:var(--red); transition:color var(--t); }

.contact-info__value a:hover { color:var(--red-dark); }

.contact-info__line {
  margin:0;
  line-height:1.65;
}

.contact-info__accent { color:var(--red); font-weight:800; }

.contact-trust       { display:flex; gap:24px; flex-wrap:wrap; }

.contact-trust__item {

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

  font-size:12px; font-weight:600; color:var(--muted);

  padding:8px 14px; background:var(--off-white);

  border-radius:var(--r-pill); border:1px solid var(--gray-200);

}

.contact-trust__item i { color:var(--red); font-size:13px; }



.contact-form {

  background:var(--off-white); border-radius:var(--r-xl);

  padding:44px; border:1.5px solid var(--gray-200);

}

.contact-form__title    { font-size:22px; font-weight:800; margin-bottom:6px; letter-spacing:0; }

.contact-form__subtitle { font-size:14px; color:var(--muted); margin-bottom:30px; }



.form-group { margin-bottom:18px; }

.form-label {

  display:block; font-size:13px; font-weight:600;

  color:var(--title); margin-bottom:7px;

}

.form-label .required { color:var(--red); }

.form-control {

  width:100%; padding:13px 16px; font-size:14px;

  color:var(--body); background:var(--white);

  border:1.5px solid var(--gray-200); border-radius:var(--r-md);

  transition:border-color 0.25s ease, box-shadow 0.25s ease, transform 0.15s ease;

  outline:none; resize:vertical;

}

.form-control:focus {

  border-color:var(--red);

  box-shadow:0 0 0 3px rgba(240,109,58,0.09), 0 2px 8px rgba(240,109,58,0.06);

  transform:translateY(-1px);

}

.form-control:hover:not(:focus) { border-color:var(--gray-300); }

.form-control::placeholder { color:var(--subtle); transition:opacity var(--t); }

.form-control:focus::placeholder { opacity:0.5; }

.form-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }

.form-notice {

  margin-top:12px; font-size:13px; font-weight:600; text-align:center; min-height:20px;

  transition:opacity var(--t); animation:notice-in 0.3s ease;

}

@keyframes notice-in { from { opacity:0; transform:translateY(-4px); } to { opacity:1; transform:translateY(0); } }

.form-notice--success { color:#16A34A; }

.form-notice--error   { color:var(--red); }



/* ---------------------------------------------------------------
   Custom Select (Service Needed dropdown)
   --------------------------------------------------------------- */

.custom-select {
  position:relative;
  width:100%;
  font-family:var(--f-head);
}

.custom-select__trigger {
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:13px 16px;
  font-size:14px;
  color:var(--body);
  background:var(--white);
  border:1.5px solid var(--gray-200);
  border-radius:var(--r-md);
  cursor:pointer;
  transition:border-color 0.25s ease, box-shadow 0.25s ease, transform 0.15s ease;
  outline:none;
  text-align:left;
}

.custom-select__trigger:hover {
  border-color:var(--gray-300);
}

.custom-select__trigger:focus,
.custom-select.is-open .custom-select__trigger {
  border-color:var(--red);
  box-shadow:0 0 0 3px rgba(240,109,58,0.09), 0 2px 8px rgba(240,109,58,0.06);
  transform:translateY(-1px);
}

.custom-select__trigger i {
  font-size:12px;
  color:var(--muted);
  transition:transform 0.3s ease;
  flex-shrink:0;
}

.custom-select.is-open .custom-select__trigger i {
  transform:rotate(180deg);
}

.custom-select__label {
  color:var(--subtle);
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.custom-select__label.is-selected {
  color:var(--body);
}

.custom-select__options {
  position:absolute;
  top:calc(100% + 8px);
  left:0;
  right:0;
  z-index:100;
  background:var(--white);
  border:1.5px solid var(--gray-200);
  border-radius:var(--r-md);
  box-shadow:0 20px 50px rgba(15,33,55,0.12);
  list-style:none;
  margin:0;
  padding:8px;
  opacity:0;
  visibility:hidden;
  transform:translateY(-6px);
  transition:opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  max-height:320px;
  overflow-y:auto;
}

.custom-select.is-open .custom-select__options {
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

.custom-select__option {
  display:flex;
  align-items:center;
  gap:12px;
  padding:12px;
  border-radius:var(--r-sm);
  cursor:pointer;
  transition:background 0.2s ease;
}

.custom-select__option:hover,
.custom-select__option.is-selected {
  background:var(--off-white);
}

.custom-select__option::after {
  content:'';
  width:18px;
  height:18px;
  border-radius:50%;
  border:2px solid var(--gray-300);
  flex-shrink:0;
  margin-left:auto;
  transition:border-color 0.2s ease, background 0.2s ease;
}

.custom-select__option.is-selected::after {
  border-color:var(--red);
  background:var(--red);
  box-shadow:inset 0 0 0 3px var(--white);
}

[lang="ar"] .custom-select__option::after {
  margin-left:0;
  margin-right:auto;
}

.custom-select__icon {
  width:40px;
  height:40px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:var(--gray-100);
  color:var(--red);
  font-size:16px;
  flex-shrink:0;
}

.custom-select__text {
  display:flex;
  flex-direction:column;
  gap:2px;
  min-width:0;
}

.custom-select__title {
  font-size:14px;
  font-weight:700;
  color:var(--title);
}

.custom-select__desc {
  font-size:12px;
  color:var(--muted);
}

/* RTL support */
[lang="ar"] .custom-select__trigger {
  text-align:right;
}

[lang="ar"] .custom-select__option {
  flex-direction:row-reverse;
  text-align:right;
}

[lang="ar"] .custom-select__text {
  align-items:flex-end;
}

/* Mobile adjustments */
@media (max-width:768px) {
  .custom-select__options {
    max-height:260px;
  }
  .custom-select__option {
    padding:10px;
  }
  .custom-select__icon {
    width:36px;
    height:36px;
    font-size:14px;
  }
}



/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•

   ABOUT PAGE EXTRAS

â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

.about-mv-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:28px; }

.about-mv-card{

  border-radius:var(--r-lg); padding:36px 28px;

  border:1.5px solid var(--gray-200); background:var(--white);

  transition:transform 0.35s cubic-bezier(0.22,1,0.36,1), box-shadow 0.35s ease, border-color 0.35s ease;

}

.about-mv-card:hover {

  transform:translateY(-8px); box-shadow:var(--sh-lg);

  border-color:transparent;

}

.about-mv-card__icon{

  width:64px; height:64px; display:flex; align-items:center;

  justify-content:center; border-radius:var(--r-md);

  background:var(--red); color:white; font-size:24px; margin-bottom:24px;

}

.about-mv-card__icon--outline { background:transparent; border:2px solid var(--red); color:var(--red); }

.about-mv-card__icon--green   { background:#15803D; }

.about-mv-card__title { font-size:18px; font-weight:800; margin-bottom:12px; letter-spacing:0; }

.about-mv-card__desc  { font-size:14px; color:var(--muted); line-height:1.78; }



.team-card{

  background:var(--white); border-radius:var(--r-lg);

  padding:32px 28px; text-align:center;

  border:1.5px solid var(--gray-200);

  transition:transform 0.35s cubic-bezier(0.22,1,0.36,1), box-shadow 0.35s ease, border-color 0.35s ease;

}

.team-card:hover {

  transform:translateY(-8px); box-shadow:var(--sh-lg);

  border-color:transparent;

}

.team-card__avatar{

  width:84px; height:84px; border-radius:50%; margin:0 auto 18px;

  background:linear-gradient(135deg,var(--red-light),var(--gray-100));

  color:var(--red); font-size:32px;

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

}

.team-card__name   { font-size:15px; font-weight:700; margin-bottom:4px; }

.team-card__role   { font-size:12px; color:var(--muted); margin-bottom:16px; }

.team-card__social { display:flex; gap:10px; justify-content:center; }

.team-card__social a{

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

  background:var(--gray-100); color:var(--muted);

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

  font-size:13px;

  transition:transform 0.35s cubic-bezier(0.22,1,0.36,1), background var(--t), color var(--t);

}

.team-card__social a:hover {

  background:var(--red); color:white;

  transform:translateY(-2px);

  box-shadow:0 4px 12px rgba(240,109,58,0.25);

}



/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•

   HOW IT WORKS â€” detail breakdown

â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

.process-detail-list { display:flex; flex-direction:column; }

.process-detail {

  display:grid; grid-template-columns:110px 1fr;

  gap:48px; align-items:start;

  padding:44px 0; border-bottom:1px solid var(--gray-200);

}

.process-detail:last-child { border-bottom:none; }

.process-detail--reverse { direction:rtl; }

.process-detail--reverse > * { direction:ltr; }

.process-detail__num {

  font-size:80px; font-weight:900; color:var(--gray-200);

  font-family:var(--f-head); line-height:1; letter-spacing:0;

  transition:var(--t);

}

.process-detail:hover .process-detail__num { color:var(--red-light); }

.process-detail__icon{

  width:48px; height:48px;

  background:linear-gradient(135deg,var(--red-light),rgba(240,109,58,0.10));

  color:var(--red); border-radius:var(--r-md);

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

  font-size:20px; margin-bottom:16px;

}

.process-detail__title { font-size:20px; font-weight:800; margin-bottom:16px; letter-spacing:0; }

.process-detail__list  { display:flex; flex-direction:column; gap:10px; }

.process-detail__list li {

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

  font-size:14px; color:var(--muted); line-height:1.65;

}

.process-detail__list li i { color:var(--red); margin-top:2px; flex-shrink:0; }



/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•

   LEGAL CONTENT

â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

.legal-content { max-width:800px; margin:0 auto; }

.legal-content h2 { font-size:20px; margin:44px 0 12px; letter-spacing:0; }

.legal-content h3 { font-size:16px; margin:26px 0 8px; }

.legal-content p  { font-size:15px; color:var(--muted); line-height:1.88; margin-bottom:14px; }

.legal-content ul { list-style:disc; padding-left:24px; margin-bottom:16px; }

.legal-content ul li { font-size:15px; color:var(--muted); line-height:1.7; margin-bottom:6px; }

.legal-content a  { color:var(--red); }

.legal-content strong { color:var(--title); font-weight:600; }



/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•

   404 PAGE

â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

.error-page {

  min-height:100vh; display:flex; align-items:center;

  justify-content:center; background:var(--dark);

  text-align:center; padding:40px 24px;

}

.error-page__inner { max-width:520px; }

.error-page__num {

  font-size:clamp(100px,20vw,180px); font-weight:900;

  font-family:var(--f-head); color:var(--red);

  line-height:0.9; margin-bottom:16px; opacity:0.13;

}

.error-page__title   { font-size:28px; font-weight:800; color:white; margin-bottom:14px; }

.error-page__desc    { font-size:15px; color:rgba(255,255,255,0.48); max-width:400px; margin:0 auto 32px; line-height:1.75; }

.error-page__actions { display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }



/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•

   BACK TO TOP

â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

.back-to-top {

  position:fixed; bottom:80px; right:1px;

  width:46px; height:46px; background:var(--red);

  color:white; border-radius:50%;

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

  font-size:15px; box-shadow:var(--sh-red);

  transition:var(--t); opacity:0; pointer-events:none;

  z-index:999; border:none;

}

.back-to-top.is-visible { opacity:1; pointer-events:all; }

.back-to-top:hover { transform:translateY(-4px); box-shadow:var(--sh-red-lg); }



/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•

   ABOUT STORY + TIMELINE

â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

.about-story {

  display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:start;

}

.about-story__content .section-desc { margin-bottom:16px; }



.about-story__timeline { position:relative; padding-left:32px; }

.about-story__timeline::before {

  content:''; position:absolute; top:0; bottom:0; left:10px;

  width:2px; background:linear-gradient(to bottom, var(--red), var(--gray-200));

  border-radius:2px;

}

.timeline-item {

  position:relative; padding-bottom:28px; padding-left:8px;

}

.timeline-item:last-child { padding-bottom:0; }

.timeline-item::before {

  content:''; position:absolute; left:-26px; top:4px;

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

  background:var(--white); border:3px solid var(--red);

  box-shadow:0 0 0 4px rgba(240,109,58,0.12);

}

.timeline-item__year {

  font-size:22px; font-weight:900; color:var(--red);

  font-family:var(--f-head); line-height:1; margin-bottom:4px; letter-spacing:0;

}

.timeline-item__text {

  font-size:14px; color:var(--muted); line-height:1.65;

}



/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•

   CONTACT MAP PLACEHOLDER

â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

.section--no-top-pad { padding-top:0; }

.contact-map {

  border-radius:var(--r-xl); overflow:hidden;

  border:1.5px solid var(--gray-200);

}

.contact-map__placeholder {

  height:320px; display:flex; flex-direction:column;

  align-items:center; justify-content:center; gap:12px;

  background:linear-gradient(145deg, var(--gray-100) 0%, var(--off-white) 100%);

}

.contact-map__placeholder i {

  font-size:52px; color:var(--red); opacity:0.35;

}

.contact-map__placeholder p {

  font-size:14px; color:var(--muted); margin:0;

}

.contact-map__address {

  font-size:13px; font-weight:600; color:var(--body);

  padding:8px 18px; border-radius:var(--r-pill);

  background:var(--white); border:1px solid var(--gray-200); box-shadow:var(--sh-xs);

}



/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•

   FAQ CONTACT CTA (bottom card)

â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

.faq-contact-cta {

  text-align:center; margin-top:64px; padding:48px;

  background:var(--off-white); border-radius:var(--r-xl);

  border:1.5px solid var(--gray-200);

}

.faq-contact-cta.download-cta {

  padding: 0;

  background: transparent;

  border: 1px solid rgba(255,255,255,0.16);

  border-radius: var(--r-2xl);

  box-shadow: 0 28px 70px rgba(240, 109, 58, 0.24);

}

.faq-contact-cta.download-cta .download-cta__inner {

  background: linear-gradient(180deg, #F47A41 0%, var(--red) 100%);

  border-radius: inherit;

}

.faq-contact-cta .section-header { margin-bottom:24px; }



/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•

   CONTACT FORM SUBMIT (full-width)

â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

.contact-form__submit { width:100%; justify-content:center; }

.contact-trust { margin-top:32px; }



/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•

   RESPONSIVE â€” TABLET (â‰¤1024px)

â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

@media (max-width:1024px) {

  :root { --py:72px; }



  /* Hero */

  .hero__content  { grid-template-columns:1fr; text-align:center; }

  .hero__visual   { display:none; }

  .hero__actions  { justify-content:center; }

  .hero__desc     { max-width:600px; margin:0 auto 36px; }

  .hero__trust    { justify-content:center; flex-wrap:wrap; }

  .hero__trust-item { padding:0 16px; }

  .hero-benefits {
    grid-template-columns:repeat(3, minmax(0, 1fr));
    max-width:100%;
  }

  .hero-benefit {
    text-align:center;
  }

  [lang="ar"] .hero-benefit {
    text-align:center;
  }

  .hero__partners-logos { justify-content:center; }



  /* Grids â†’ 2 columns */

  .grid--4  { grid-template-columns:repeat(2,1fr); }

  .grid--3  { grid-template-columns:repeat(2,1fr); }



  /* Footer */

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



  /* About */

  .about-preview { grid-template-columns:1fr; gap:44px; }

  .about-preview__exp-tag, .about-preview__badge { display:none; }

  .about-preview__features { grid-template-columns:1fr 1fr; }

  .about-story { grid-template-columns:1fr; gap:40px; }

  .about-mv-grid { grid-template-columns:1fr; }

  .about-flow__cards { grid-template-columns:repeat(2,1fr); }

  .about-flow__card { padding:20px; }

  /* Other grids */

  .testimonials-grid { grid-template-columns:repeat(2,1fr); }

  .stats-bar__inner  { grid-template-columns:repeat(2,1fr); }

  .stats-bar { margin-top:22px; }



  /* Contact */

  .contact-layout { grid-template-columns:1fr; gap:42px; }

}



/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•

   RESPONSIVE â€” MOBILE (â‰¤768px)

â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

@media (max-width:768px) {

  :root { --py:52px; --nav-h:64px; }



  /* Prevent horizontal overflow */

  html, body { overflow-x:hidden; }

  .container { padding:0 16px; }



  /* â”€â”€ Navbar: show hamburger â”€â”€ */

  .navbar__nav, .navbar__actions .navbar__cta { display:none; }
  .navbar__toggle { display:flex; }



  /* â”€â”€ Hero mobile â”€â”€ */

  .hero { min-height:auto; }

  .hero__content { padding-top:calc(var(--nav-h) + 40px); padding-bottom:60px; }

  .hero__title { font-size:clamp(30px, 8vw, 46px); letter-spacing:-0.02em; }

  .hero__desc  { font-size:15px; padding:0 8px; }

  .hero__badge { font-size:11px; margin-bottom:20px; }

  .hero__trust { gap:12px; padding-top:24px; }

  .hero__trust-item { padding:0 10px; }

  .hero-benefits {
    grid-template-columns:1fr;
    max-width:620px;
    margin:0 auto;
  }

  .hero-benefit {
    min-height:auto;
    grid-template-columns:46px minmax(0, 1fr);
    grid-template-rows:1fr;
    justify-items:start;
    text-align:left;
    align-items:center;
    padding:14px 16px;
  }

  [lang="ar"] .hero-benefit {
    justify-items:end;
    text-align:right;
  }

  .hero-benefit__icon {
    width:46px;
    height:46px;
  }

  .hero__trust-num { font-size:24px; }

  .hero__trust-label { font-size:11px; }

  .hero__trust-divider { display:none; }

  .hero__partners { padding-top:16px; padding-bottom:24px; }

  .hero__partners-logos { gap:20px; }

  .hero__partners-logos span { font-size:11px; }

  .hero__scroll-cue { display:none; }



  /* â”€â”€ All grids â†’ 1 column â”€â”€ */

  .grid--2, .grid--3, .grid--4 { grid-template-columns:1fr; }

  .about-mv-grid, .testimonials-grid { grid-template-columns:1fr; }

  .process-steps { grid-template-columns:1fr; }



  /* â”€â”€ Typography mobile â”€â”€ */

  .section-title { font-size:clamp(24px, 6vw, 34px); margin-bottom:14px; }

  .section-desc  { font-size:15px; line-height:1.75; }

  .section-header { margin-bottom:40px; }



  /* â”€â”€ Page hero mobile â”€â”€ */

  .page-hero { padding:calc(var(--nav-h) + 36px) 0 40px; }

  .page-hero__title { font-size:clamp(26px, 7vw, 42px); }

  .page-hero__desc  { font-size:15px; }



  /* â”€â”€ Cards: more breathing room â”€â”€ */
  .service-card  { padding:24px 18px; }
  .service-card__icon { width:56px; height:56px; font-size:24px; }
  .service-card__title { font-size:17px; }
  .service-card__desc { font-size:14px; line-height:1.7; }
  
  .feature-card  { padding:24px 18px; }
  .feature-card__icon { width:56px; height:56px; font-size:24px; }
  .feature-card__title { font-size:16px; }
  .feature-card__desc { font-size:14px; line-height:1.7; }
  
  .testimonial-card { padding:20px 16px; }



  /* â”€â”€ Stats bar â”€â”€ */
  .stats-bar__inner { grid-template-columns:1fr 1fr; gap:16px; }
  .stat-item { padding:24px 12px; }
  .stat-item__num { font-size:clamp(28px, 7vw, 40px); }
  .stat-item__label { font-size:12px; }
  .stats-bar { margin-top:18px; }



  /* â”€â”€ CTA Banner â”€â”€ */
  .cta-banner__inner { flex-direction:column; text-align:center; padding:40px 16px; gap:24px; }
  .cta-banner__desc { max-width:100%; font-size:14px; }
  .cta-banner__actions { align-items:center; width:100%; gap:12px; }
  .cta-banner__actions .btn { width:100%; min-height:48px; }
  .cta-banner__title { font-size:clamp(20px, 5vw, 30px); }



  /* â”€â”€ About â”€â”€ */

  .about-preview__features { grid-template-columns:1fr; }

  .about-story { grid-template-columns:1fr; gap:32px; }

  .about-flow__cards { grid-template-columns:1fr; }



  /* â”€â”€ Process detail â”€â”€ */

  .process-detail { grid-template-columns:1fr; gap:14px; }

  .process-detail__num { font-size:44px; }

  .process-detail--reverse { direction:ltr; }



  /* â”€â”€ FAQ â”€â”€ */
  .faq-item__trigger { padding:16px; font-size:14px; min-height:52px; }
  .faq-item__answer { padding:0 16px 16px; font-size:14px; line-height:1.7; }
  .faq-category__title { font-size:18px; margin-bottom:16px; }
  .faq-contact-cta { padding:28px 16px; margin-top:32px; }



  /* â”€â”€ Contact â”€â”€ */

  .contact-form { padding:28px 20px; border-radius:var(--r-lg); }

  .contact-form__title { font-size:18px; }

  .contact-map__placeholder { height:200px; }

  .contact-map__placeholder i { font-size:36px; }

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



  /* â”€â”€ Footer â”€â”€ */

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

  .footer-main { padding:52px 0 36px; }

  .footer-bottom__inner { flex-direction:column; text-align:center; gap:12px; }

  .footer-bottom__links { justify-content:center; }



  /* â”€â”€ Misc mobile â”€â”€ */

  .back-to-top { bottom:18px; right:18px; width:42px; height:42px; }

  .scroll-progress { height:2px; } /* thinner on mobile */



  /* Disable 3D hover tilt on touch */

  .service-card, .feature-card, .testimonial-card {

    transform:none !important;

  }

  .service-card:hover, .feature-card:hover, .testimonial-card:hover {

    transform:translateY(-4px) !important;

  }

  /* Premium mobile refinements */
  .section { padding:44px 0; }
  .section-header { margin-bottom:32px; }
  .section-label { font-size:11px; letter-spacing:0.08em; margin-bottom:10px; }
  
  /* Improved touch feedback */
  .btn, .faq-item__trigger, .mobile-drawer__link {
    transition:transform 0.15s ease, background-color 0.2s ease;
  }
  .btn:active, .faq-item__trigger:active, .mobile-drawer__link:active {
    transform:scale(0.98);
  }
  
  /* Better card spacing rhythm */
  .service-card, .feature-card { 
    margin-bottom:0; 
  }
  .services-grid, .features-grid {
    gap:16px;
  }
  
  /* Improved text readability */
  .section-desc {
    font-size:15px;
    line-height:1.8;
    max-width:100%;
  }
  
  /* Consistent vertical rhythm */
  .container > * + * {
    margin-top:0;
  }
  
  /* Smooth section transitions */
  .section + .section {
    padding-top:44px;
  }

}



/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

@media (max-width:480px) {
  .container { padding:0 16px; }
  
  /* Buttons: full-width stack */
  .hero__actions { flex-direction:column; gap:10px; }
  .btn--lg { width:100%; justify-content:center; padding:16px 28px; }
  .btn--sm { padding:12px 20px; font-size:13px; }
  .btn { min-height:48px; padding:14px 24px; font-size:15px; }
  
  /* Hero ultra-small */
  .hero__title { font-size:clamp(28px, 8vw, 36px); line-height:1.18; letter-spacing:-0.02em; }
  .hero__desc { font-size:15px; line-height:1.85; max-width:100%; }
  .hero__trust { flex-direction:column; align-items:center; gap:8px; }
  .hero__trust-item { padding:0; }
  
  /* Stats: compact */
  .stats-bar__inner { grid-template-columns:1fr 1fr; gap:12px; }
  .stat-item { padding:20px 10px; }
  .stat-item__num { font-size:clamp(22px, 6vw, 28px); }
  .stat-item__label { font-size:11px; }
  
  /* Error page */
  .error-page__actions { flex-direction:column; }
  
  /* Contact trust badges: stack */
  .contact-trust { flex-direction:column; gap:10px; }
  
  /* Team card smaller avatar */
  .team-card__avatar { width:64px; height:64px; font-size:24px; }
  
  /* Process step numbers */
  .process-step__num { width:64px; height:64px; font-size:18px; }
  
  /* Mobile nav full width on small screens */
  .mobile-drawer { width:100vw; right:-100vw; }
  .mobile-drawer.is-open { right:0; }
  [lang="ar"] .mobile-drawer { right:auto; left:-100vw; }
  [lang="ar"] .mobile-drawer.is-open { left:0; }
  
  /* FAQ trigger bigger tap area */
  .faq-item__trigger { min-height:52px; }
  
  /* CTA banner phone link */
  .cta-banner__phone { justify-content:center; }
  
  /* Section spacing */
  .section { padding:36px 0; }
  .section-header { margin-bottom:28px; }
  .section + .section { padding-top:36px; }
  
  /* Cards */
  .service-card, .feature-card { margin-bottom:0; padding:22px 16px; }
  .services-grid, .features-grid { gap:16px; }
  .service-card__title, .feature-card__title { margin-bottom:10px; }
  .service-card__desc, .feature-card__desc { font-size:14px; line-height:1.75; }
  
  /* Text readability */
  .section-desc { font-size:15px; line-height:1.8; max-width:100%; }
  
  /* Tap feedback */
  .btn, .faq-item__trigger, .mobile-drawer__link, .service-card, .feature-card {
    -webkit-tap-highlight-color:transparent;
  }
  
  /* Form elements */
  .form-control { min-height:48px; padding:14px 16px; font-size:16px; }
  select.form-control { padding-right:40px; }
  textarea.form-control { min-height:120px; }
  
  /* Stats clean */
  .stats-bar__inner { gap:10px; }
  .stat-item { padding:18px 8px; }
  .stat-item__num { font-size:clamp(24px, 7vw, 32px); }
  
  /* Full width buttons */
  .hero__actions .btn, .cta-banner__actions .btn, .download-cta__store {
    width:100%; justify-content:center;
  }
  
  /* Form polish - comfortable touch targets */
  .form-control {
    min-height:48px;
    padding:14px 16px; 
    font-size:16px; /* Prevents zoom on iOS */
  }
  
  select.form-control {
    padding-right:40px;
  }
  
  textarea.form-control {
    min-height:120px;
  }
  
  /* Cards - breathable, not cramped */
  .service-card,
  .feature-card {
    padding:26px 20px;
    border-radius:16px;
  }
  
  .service-card__icon,
  .feature-card__icon {
    width:56px;
    height:56px;
    margin-bottom:18px;
  }
  
  .service-card__icon i,
  .feature-card__icon i {
    font-size:22px;
  }
  
  .service-card__title,
  .feature-card__title {
    font-size:17px;
    margin-bottom:10px;
  }
  
  .service-card__desc,
  .feature-card__desc {
    font-size:14px;
    line-height:1.75;
  }
  
  /* Stats - clean presentation */
  .stats-bar__inner {
    gap:12px;
  }
  
  .stat-item {
    padding:20px 12px;
    border-radius:12px;
  }
  
  .stat-item__num {
    font-size:clamp(26px, 7vw, 34px);
    margin-bottom:6px;
  }
  
  .stat-item__label {
    font-size:11px;
    letter-spacing:0.05em;
  }
  
  /* Hero - refined typography */
  .hero__title {
    font-size:clamp(32px, 9vw, 48px);
    line-height:1.15;
    letter-spacing:0;
    margin-bottom:20px;
  }
  
  .hero__desc {
    font-size:16px;
    line-height:1.85;
    margin-bottom:28px;
  }
  
  .hero__badge {
    font-size:12px;
    padding:8px 14px;
    margin-bottom:20px;
  }
  
  .hero__actions {
    gap:12px;
    margin-bottom:32px;
  }
  
  .hero__trust {
    padding-top:24px;
    gap:16px;
  }
  
  .hero__trust-item {
    padding:0 12px;
  }
  
  .hero__trust-num {
    font-size:26px;
  }
  
  .hero__trust-label {
    font-size:11px;
  }
  
  /* Testimonials - readable cards */
  .testimonial-card {
    padding:24px 20px;
    border-radius:16px;
  }
  
  .testimonial-card__text {
    font-size:14px;
    line-height:1.8;
    margin-bottom:16px;
  }
  
  .testimonial-card__author {
    font-size:15px;
  }
  
  .testimonial-card__role {
    font-size:13px;
  }
  
  /* FAQ - comfortable reading */
  .faq-item {
    border-radius:12px;
    margin-bottom:10px;
  }
  
  .faq-item__trigger {
    padding:18px 16px;
    font-size:15px;
    line-height:1.5;
  }
  
  .faq-item__answer {
    padding:0 16px 18px;
    font-size:14px;
    line-height:1.85;
  }
  
  .faq-category__title {
    font-size:13px;
    text-transform:uppercase;
    letter-spacing:0.1em;
    margin-bottom:16px;
    opacity:0.7;
  }
  
  /* Footer - clean links */
  .footer-grid {
    gap:32px;
  }
  
  .footer-link {
    font-size:14px;
    padding:6px 0;
    line-height:1.6;
  }
  
  .footer-brand__desc {
    font-size:14px;
    line-height:1.85;
  }
  
  .footer-bottom {
    padding:20px 0;
  }
  
  /* Process steps - refined */
  .process-step__num {
    width:56px;
    height:56px;
    font-size:18px;
  }
  
  .process-step__title {
    font-size:14px;
  }
  
  .process-step__desc {
    font-size:13px;
    line-height:1.7;
  }
  
  /* Shipment lifecycle - touch friendly */
  .lc-step {
    min-width:44px;
  }
  
  .lc-circle {
    width:36px;
    height:36px;
    font-size:11px;
  }
  
  .lc-label {
    font-size:9px;
    max-width:50px;
  }
  
  .lc-ctab {
    min-height:36px;
    padding:8px 14px;
    font-size:12px;
  }
  
  .lc-pnbtn {
    min-height:44px;
    padding:10px 18px;
  }
  
  /* Subtle transitions for smooth experience */
  .btn,
  .service-card,
  .feature-card,
  .testimonial-card,
  .faq-item__trigger,
  .mobile-nav__link, .footer-link, .footer-grid, .footer-main, .footer-bottom,
  .lc-ctab,
  .lc-step {
    transition:all 0.2s ease;
  }
  
  .btn:active,
  .service-card:active,
  .feature-card:active,
  .faq-item__trigger:active,
  .lc-ctab:active {
    transform:scale(0.98);
  }
  
  /* Container consistency */
  .container {
    padding:0 20px;
  }
}


/* Tiny screens (≤360px) */
@media (max-width:360px) {
  .container {
    padding:0 14px;
  }
  
  .section {
    padding:36px 0;
  }
  
  .section-title {
    font-size:22px;
  }
  
  .btn {
    font-size:14px;
    padding:12px 20px;
    min-height:44px;
  }
  
  .service-card,
  .feature-card {
    padding:18px 14px;
  }
  
  .service-card__title,
  .feature-card__title {
    font-size:16px;
  }
  
  .service-card__desc,
  .feature-card__desc {
    font-size:13px;
  }
}

/* ═══════════════════════════════════════════
   AI PRICING SECTION - 3D INTERACTIVE
════════════════════════════════════════════ */
.ai-pricing {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  background-color: var(--dark);
}

/* Background Grids & Orbs */
.ai-pricing__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.ai-grid {
  position: absolute;
  inset: -50%;
  background-image: 
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  transform: perspective(500px) rotateX(45deg);
  animation: grid-move 20s linear infinite;
}

@keyframes grid-move {
  0% { transform: perspective(500px) rotateX(45deg) translateY(0); }
  100% { transform: perspective(500px) rotateX(45deg) translateY(40px); }
}

.ai-glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: orb-float 10s ease-in-out infinite alternate;
}

.orb-1 {
  width: 400px;
  height: 400px;
  background: var(--red);
  top: -100px;
  right: -100px;
}

.orb-2 {
  width: 300px;
  height: 300px;
  background: #3b82f6;
  bottom: -50px;
  left: 20%;
  animation-delay: -5s;
}

@keyframes orb-float {
  0% { transform: translate(0, 0); }
  100% { transform: translate(-30px, 30px); }
}

.ai-pricing__container {
  position: relative;
  z-index: 2;
}

.ai-pricing__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.ai-pricing__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(240, 109, 58, 0.15);
  color: var(--red);
  padding: 6px 16px;
  border-radius: 30px;
  border: 1px solid rgba(240, 109, 58, 0.3);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.ai-pricing__title {
  color: #fff;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 15px;
}

.ai-pricing__subtitle {
  color: var(--red);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 600;
  margin-bottom: 25px;
}

.ai-pricing__desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 25px;
}

.ai-pricing__note {
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
  font-style: italic;
}

/* 3D Visualizer */
.ai-pricing__visual {
  position: relative;
  perspective: 1200px;
}

.ai-3d-wrapper {
  position: relative;
  transform-style: preserve-3d;
  animation: float-3d 6s ease-in-out infinite;
}

@keyframes float-3d {
  0%, 100% { transform: translateY(0) rotateX(5deg) rotateY(-10deg); }
  50% { transform: translateY(-15px) rotateX(8deg) rotateY(-5deg); }
}

.ai-glass-card {
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  box-shadow: 
    0 30px 60px rgba(0,0,0,0.6),
    inset 0 1px 0 rgba(255,255,255,0.2),
    inset 0 0 20px rgba(240, 109, 58, 0.1);
  overflow: hidden;
  position: relative;
  transform: translateZ(20px);
}

.ai-scanner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--red);
  box-shadow: 0 0 20px 5px rgba(240, 109, 58, 0.5);
  animation: scan 3s linear infinite;
  z-index: 10;
  opacity: 0.6;
}

@keyframes scan {
  0% { top: 0; }
  50% { top: 100%; }
  100% { top: 0; }
}

.ai-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  background: rgba(0,0,0,0.4);
}

.ai-card__status {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #4ade80;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.typing-text {
  overflow: hidden;
  border-right: 2px solid #4ade80;
  white-space: nowrap;
  animation: typing 3s steps(30, end) infinite, blink-caret .75s step-end infinite;
}

@keyframes typing {
  0%, 10% { width: 0; }
  50%, 90% { width: 22ch; }
  100% { width: 0; }
}

@keyframes blink-caret {
  from, to { border-color: transparent }
  50% { border-color: #4ade80; }
}

.ai-card__dots { display: flex; gap: 6px; }
.ai-card__dots .dot { width: 10px; height: 10px; border-radius: 50%; }
.pulse-red { background: #ef4444; animation: pulse 1s infinite alternate; }
.pulse-yellow { background: #eab308; animation: pulse 1s infinite alternate 0.2s; }
.pulse-green { background: #22c55e; animation: pulse 1s infinite alternate 0.4s; }

@keyframes pulse {
  0% { opacity: 0.4; transform: scale(0.8); }
  100% { opacity: 1; transform: scale(1.1); }
}

/* Route Visualizer */
.ai-route-visualizer {
  padding: 30px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.route-point {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.point-pulse {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 15px var(--red);
  position: relative;
}

.point-pulse::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid var(--red);
  animation: ripple 1.5s linear infinite;
}

@keyframes ripple {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(2.5); opacity: 0; }
}

.route-line {
  flex: 1;
  height: 2px;
  background: rgba(255,255,255,0.1);
  margin: 0 20px;
  position: relative;
  top: -12px;
}

.route-progress {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background: var(--red);
  box-shadow: 0 0 10px var(--red);
  animation: line-progress 3s ease-in-out infinite;
}

@keyframes line-progress {
  0% { width: 0%; }
  50%, 100% { width: 100%; }
}

/* Metrics */
.ai-metrics {
  display: flex;
  justify-content: space-between;
  padding: 0 24px 30px;
}

.ai-metric {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.03);
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.05);
}

.ai-metric i {
  font-size: 18px;
  color: #94a3b8;
}

.ai-metric-data {
  display: flex;
  flex-direction: column;
}

.ai-metric-label {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.ai-metric-val {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

/* Footer & Price */
.ai-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 24px;
  background: rgba(0,0,0,0.3);
  border-top: 1px solid rgba(255,255,255,0.05);
}

.ai-result-block { display: flex; flex-direction: column; gap: 8px; }
.ai-result-block--right { align-items: flex-end; }
.ai-result-label { color: rgba(255,255,255,0.5); font-size: 12px; }

.ai-progress-bar {
  width: 150px;
  height: 6px;
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
  overflow: hidden;
}

.ai-progress-fill {
  width: 98.5%;
  height: 100%;
  background: #4ade80;
  box-shadow: 0 0 10px #4ade80;
}

.ai-price-header {
  display: flex;
  align-items: center;
  gap: 8px;
}

.text-yellow { color: #eab308; }

.ai-price-label {
  color: #eab308;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.ai-price-display {
  display: flex;
  align-items: flex-start;
  gap: 4px;
}

.ai-currency {
  font-size: 20px;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  margin-top: 6px;
}

.ai-price-value {
  color: #fff;
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
}

.glow-text {
  text-shadow: 0 0 30px rgba(255,255,255,0.4);
  animation: text-pulse 2s ease-in-out infinite alternate;
}

@keyframes text-pulse {
  0% { text-shadow: 0 0 20px rgba(255,255,255,0.2); }
  100% { text-shadow: 0 0 40px rgba(255,255,255,0.6); }
}

/* Floating Elements */
.floating-element {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  padding: 10px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.float-1 {
  top: -20px;
  right: -30px;
  transform: translateZ(40px);
  animation: bob 4s ease-in-out infinite alternate;
}

.float-1 i { color: #3b82f6; }

.float-2 {
  bottom: -20px;
  left: -20px;
  transform: translateZ(60px);
  animation: bob 3.5s ease-in-out infinite alternate-reverse;
}

.float-2 i { color: #eab308; }

@keyframes bob {
  0% { transform: translateY(0) translateZ(40px); }
  100% { transform: translateY(-20px) translateZ(40px); }
}

@media (max-width: 991px) {
  .ai-pricing__content { grid-template-columns: 1fr; gap: 60px; }
  .ai-3d-wrapper { animation: none; transform: none; }
  .ai-metrics { flex-direction: column; gap: 12px; }
  .floating-element { display: none; }
}

@media (max-width: 768px) {
  .ai-pricing { padding: 60px 0; }
  .ai-pricing__content { gap: 40px; }
  .ai-glass-card { border-radius: 16px; }
  .ai-card__header { padding: 12px 16px; }
  .ai-card__status { font-size: 10px; gap: 6px; }
  .typing-text { white-space: nowrap; max-width: 140px; overflow: hidden; text-overflow: ellipsis; animation: none; border: none; }
  .ai-route-visualizer { padding: 20px 16px; }
  .route-point { font-size: 12px; gap: 6px; }
  .point-pulse { width: 12px; height: 12px; }
  .route-line { margin: 0 10px; }
  .ai-metrics { padding: 0 16px 20px; gap: 8px; }
  .ai-metric { padding: 10px 12px; gap: 10px; }
  .ai-metric i { font-size: 16px; }
  .ai-metric-val { font-size: 13px; }
  .ai-card__footer { flex-direction: column; align-items: flex-start; gap: 16px; padding: 16px; }
  .ai-result-block--right { align-items: flex-start; }
  .ai-progress-bar { width: 100%; max-width: 200px; }
  .ai-price-value { font-size: 32px; }
  .ai-currency { font-size: 16px; margin-top: 4px; }
}

@media (max-width: 480px) {
  .ai-pricing__badge { font-size: 11px; padding: 4px 12px; }
  .ai-pricing__title { font-size: clamp(24px, 7vw, 32px); }
  .ai-pricing__subtitle { font-size: 16px; }
  .ai-pricing__desc { font-size: 14px; line-height: 1.7; }
  .ai-glass-card { border-radius: 12px; }
  .ai-card__header { padding: 10px 12px; }
  .ai-card__dots .dot { width: 8px; height: 8px; }
  .ai-route-visualizer { padding: 16px 12px; }
  .route-point { font-size: 11px; }
  .route-point span { max-width: 70px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .point-pulse { width: 10px; height: 10px; }
  .point-pulse::after { inset: -4px; }
  .route-line { margin: 0 8px; top: -10px; }
  .ai-metrics { padding: 0 12px 16px; }
  .ai-metric { padding: 8px 10px; gap: 8px; border-radius: 8px; }
  .ai-metric i { font-size: 14px; }
  .ai-metric-label { font-size: 10px; }
  .ai-metric-val { font-size: 12px; }
  .ai-card__footer { padding: 12px; gap: 12px; }
  .ai-result-label { font-size: 11px; }
  .ai-efficiency { font-size: 12px; }
  .ai-price-header { gap: 6px; }
  .ai-price-label { font-size: 11px; }
  .ai-price-value { font-size: 28px; }
  .ai-currency { font-size: 14px; margin-top: 3px; }
}

/* ═══════════════════════════════════════════
   COUNTER OFFER SECTION
════════════════════════════════════════════ */
.counter-offer {
  background-color: var(--off-white);
  padding: 80px 0;
  position: relative;
}

.counter-offer__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Phone Mockup Container */
.co-phone-wrap {
  position: relative;
  width: min(360px, 100%);
  aspect-ratio: 1 / 2;
  margin: 0 auto;
  perspective: 1000px;
}

.co-phone-wrap .phone {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.4s ease;
}

.co-phone-wrap:hover .phone {
  transform: translateY(-10px) rotateY(-2deg) rotateX(2deg);
}

[lang="ar"] .co-phone-wrap:hover .phone {
  transform: translateY(-10px) rotateY(2deg) rotateX(2deg);
}


/* ── Screenshot-based phone screens ── */
/* Screenshots fill the physical phone screen; chrome sits above them. */

.hero-phone-media,
.co-phone-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  border-radius: inherit;
  background:#fff;
}

.hero-phone-media__img,
.co-phone-media__img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top center;
  border-radius: inherit;
  transform:translateZ(0);
  backface-visibility:hidden;
}

.hero__phones .hero-phone-media__img {
  object-position: top center;
}

.co-phone-wrap .co-phone-media__img {
  object-position: top center;
}


.co-phone-wrap .island-led {
  background: #22C55E;
  box-shadow: 0 0 6px rgba(34, 197, 94, 0.9);
}

/* Light UI: ensure status bar/icons are readable on light screenshots */
.co-phone-wrap .wallpaper--light ~ .status-bar {
  color: rgba(15,33,55,0.92);
}

.co-phone-wrap .wallpaper--light ~ .status-bar .bar,
.co-phone-wrap .wallpaper--light ~ .status-bar .battery::after {
  background: rgba(15,33,55,0.92);
}

.co-phone-wrap .wallpaper--light ~ .status-bar .battery {
  border-color: rgba(15,33,55,0.72);
}

.co-phone-wrap .wallpaper--light ~ .status-bar .wifi-icon {
  color: rgba(15,33,55,0.92);
}

.co-phone-wrap .wallpaper--light ~ .status-bar .battery-fill {
  background: rgba(15,33,55,0.92);
}

/* Text Side */
.counter-offer__title {
  font-size: clamp(32px, 4vw, 42px);
  font-weight: 800;
  color: var(--title);
  margin-bottom: 16px;
  line-height: 1.1;
}

.counter-offer__desc {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 30px;
}

.co-statuses {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.co-status {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  padding: 18px 22px;
  border-radius: 14px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.co-status::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  border-radius: 14px 0 0 14px;
  transition: width .25s ease;
}

.co-status--yellow::before { background: #eab308; }
.co-status--orange::before { background: #f97316; }
.co-status--blue::before   { background: #3b82f6; }
.co-status--green::before  { background: #22c55e; }

.co-status:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(15,33,55,0.10), 0 0 0 1px rgba(240,109,58,0.06);
  border-color: rgba(240,109,58,0.18);
}

.co-status__icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.co-status--yellow .co-status__icon { background: rgba(234,179,8,0.10); color: #eab308; }
.co-status--orange .co-status__icon { background: rgba(249,115,22,0.10); color: #f97316; }
.co-status--blue .co-status__icon   { background: rgba(59,130,246,0.10); color: #3b82f6; }
.co-status--green .co-status__icon  { background: rgba(34,197,94,0.10); color: #22c55e; }

.co-status__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.co-status__text {
  font-size: 15px;
  font-weight: 600;
  color: var(--title);
  line-height: 1.45;
}

@media (max-width: 991px) {
  .counter-offer__content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

@media (max-width: 768px) {
  .counter-offer { padding: 60px 0; }
  .counter-offer__content { gap: 36px; }
  .counter-offer__title { font-size: clamp(24px, 6vw, 32px); }
  .counter-offer__desc { font-size: 15px; margin-bottom: 24px; }
  .co-statuses { gap: 12px; }
  .co-status { padding: 14px 18px; }
  .co-status__icon { width: 38px; height: 38px; font-size: 14px; }
  .co-status__text { font-size: 14px; }
  .co-phone-wrap { width: min(280px, 90%); }
}

@media (max-width: 480px) {
  .counter-offer { padding: 44px 0; }
  .counter-offer__content { gap: 28px; }
  .co-status { padding: 12px 14px; gap: 12px; }
  .co-status__icon { width: 34px; height: 34px; font-size: 13px; }
  .co-status__text { font-size: 13px; }
  .co-phone-wrap { width: min(240px, 88%); }
}


/* ═══════════════════════════════════════════

   SHIPMENT LIFECYCLE SECTION

════════════════════════════════════════════ */

/* Base Section Styling */
.shipment-lifecycle {
  padding: 112px 0;
  position: relative;
  isolation:isolate;
  background:
    radial-gradient(circle at 18% 12%, rgba(59,158,255,0.22), transparent 32%),
    radial-gradient(circle at 86% 24%, rgba(240,90,40,0.18), transparent 30%),
    linear-gradient(145deg, #192944 0%, #0f1a2c 48%, #09111f 100%);
  color: #fff;
  overflow: hidden;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.shipment-lifecycle::before,
.shipment-lifecycle::after {
  content:'';
  position:absolute;
  pointer-events:none;
  z-index:0;
}

.shipment-lifecycle::before {
  inset:0;
  background:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size:44px 44px;
  mask-image:linear-gradient(to bottom, rgba(0,0,0,0.9), rgba(0,0,0,0.18) 72%, transparent);
  animation:lc-grid-drift 18s linear infinite;
}

.shipment-lifecycle::after {
  inset:auto -20% -42% -20%;
  height:58%;
  background:radial-gradient(ellipse at center, rgba(59,158,255,0.22), transparent 62%);
  filter:blur(26px);
}

.shipment-lifecycle > .container,
.shipment-lifecycle .cancellation-cases {
  position:relative;
  z-index:2;
}

.lc-3d-bg {
  position:absolute;
  inset:0;
  z-index:1;
  pointer-events:none;
  overflow:hidden;
  perspective:1100px;
  transform-style:preserve-3d;
}

.lc-3d-grid {
  position:absolute;
  left:50%;
  bottom:-24%;
  width:1180px;
  height:720px;
  transform:translateX(-50%) rotateX(68deg) rotateZ(-10deg);
  transform-origin:center;
  background:
    linear-gradient(rgba(59,158,255,0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(240,109,58,0.13) 1px, transparent 1px);
  background-size:62px 62px;
  border-radius:50%;
  opacity:0.34;
  filter:drop-shadow(0 -18px 30px rgba(59,158,255,0.18));
  animation:lc-plane-float 11s ease-in-out infinite;
}

.lc-3d-grid::after {
  content:'';
  position:absolute;
  inset:12%;
  border-radius:50%;
  border:1px solid rgba(255,255,255,0.12);
  box-shadow:0 0 90px rgba(59,158,255,0.16);
}

.lc-3d-orbit {
  position:absolute;
  border:1px solid rgba(255,255,255,0.14);
  border-top-color:rgba(59,158,255,0.72);
  border-right-color:rgba(240,109,58,0.50);
  border-radius:50%;
  transform-style:preserve-3d;
  filter:drop-shadow(0 0 22px rgba(59,158,255,0.20));
}

.lc-3d-orbit::before {
  content:'';
  position:absolute;
  width:9px;
  height:9px;
  border-radius:50%;
  background:#f05a28;
  top:11%;
  left:18%;
  box-shadow:0 0 18px rgba(240,90,40,0.85);
}

.lc-3d-orbit--one {
  width:420px;
  height:420px;
  right:7%;
  top:34px;
  transform:rotateX(67deg) rotateZ(24deg);
  animation:lc-orbit-one 14s linear infinite;
}

.lc-3d-orbit--two {
  width:280px;
  height:280px;
  left:4%;
  top:230px;
  transform:rotateX(62deg) rotateZ(-18deg);
  animation:lc-orbit-two 16s linear infinite reverse;
  opacity:0.62;
}

.lc-3d-beam {
  position:absolute;
  height:2px;
  width:360px;
  background:linear-gradient(90deg, transparent, rgba(59,158,255,0.72), rgba(240,109,58,0.56), transparent);
  filter:blur(0.2px) drop-shadow(0 0 14px rgba(59,158,255,0.38));
  opacity:0.55;
  transform-origin:center;
}

.lc-3d-beam--one {
  right:10%;
  top:38%;
  transform:rotateZ(-24deg) rotateY(28deg);
  animation:lc-beam-sweep 7s ease-in-out infinite;
}

.lc-3d-beam--two {
  left:9%;
  top:70%;
  transform:rotateZ(16deg) rotateY(-20deg);
  animation:lc-beam-sweep 8s ease-in-out infinite reverse;
}

.lc-3d-node {
  position:absolute;
  width:14px;
  height:14px;
  border-radius:50%;
  background:radial-gradient(circle at 35% 35%, #fff, #3b9eff 46%, #0b62c4 100%);
  box-shadow:
    0 0 0 8px rgba(59,158,255,0.08),
    0 0 24px rgba(59,158,255,0.85);
  animation:lc-node-pulse 2.8s ease-in-out infinite;
}

.lc-3d-node--one { left:16%; top:30%; }
.lc-3d-node--two { right:18%; top:62%; animation-delay:0.6s; background:radial-gradient(circle at 35% 35%, #fff, #f05a28 46%, #9d2c12 100%); box-shadow:0 0 0 8px rgba(240,90,40,0.08), 0 0 24px rgba(240,90,40,0.76); }
.lc-3d-node--three { left:52%; top:18%; animation-delay:1.1s; }

.lc-3d-cube {
  --cube:54px;
  position:absolute;
  width:var(--cube);
  height:var(--cube);
  transform-style:preserve-3d;
  opacity:0.72;
  animation:lc-cube-spin 12s linear infinite;
}

.lc-3d-cube span {
  position:absolute;
  inset:0;
  border:1px solid rgba(255,255,255,0.16);
  background:linear-gradient(145deg, rgba(59,158,255,0.20), rgba(240,109,58,0.10));
  box-shadow:inset 0 0 24px rgba(255,255,255,0.05);
}

.lc-3d-cube span:nth-child(1) { transform:translateZ(calc(var(--cube) / 2)); }
.lc-3d-cube span:nth-child(2) { transform:rotateY(180deg) translateZ(calc(var(--cube) / 2)); }
.lc-3d-cube span:nth-child(3) { transform:rotateY(90deg) translateZ(calc(var(--cube) / 2)); }
.lc-3d-cube span:nth-child(4) { transform:rotateY(-90deg) translateZ(calc(var(--cube) / 2)); }
.lc-3d-cube span:nth-child(5) { transform:rotateX(90deg) translateZ(calc(var(--cube) / 2)); }
.lc-3d-cube span:nth-child(6) { transform:rotateX(-90deg) translateZ(calc(var(--cube) / 2)); }

.lc-3d-cube--one {
  right:18%;
  top:18%;
}

.lc-3d-cube--two {
  --cube:38px;
  left:11%;
  top:58%;
  animation-duration:15s;
  animation-direction:reverse;
}

@keyframes lc-grid-drift {
  from { background-position:0 0, 0 0; }
  to { background-position:44px 44px, 44px 44px; }
}

@keyframes lc-plane-float {
  0%,100% { transform:translateX(-50%) rotateX(68deg) rotateZ(-10deg) translateY(0); }
  50% { transform:translateX(-50%) rotateX(68deg) rotateZ(-10deg) translateY(-18px); }
}

@keyframes lc-orbit-one {
  from { transform:rotateX(67deg) rotateZ(24deg); }
  to { transform:rotateX(67deg) rotateZ(384deg); }
}

@keyframes lc-orbit-two {
  from { transform:rotateX(62deg) rotateZ(-18deg); }
  to { transform:rotateX(62deg) rotateZ(342deg); }
}

@keyframes lc-beam-sweep {
  0%,100% { opacity:0.20; translate:0 0; }
  50% { opacity:0.78; translate:24px -10px; }
}

@keyframes lc-node-pulse {
  0%,100% { transform:scale(1); opacity:0.70; }
  50% { transform:scale(1.35); opacity:1; }
}

@keyframes lc-cube-spin {
  from { transform:rotateX(-18deg) rotateY(0deg) rotateZ(12deg); }
  to { transform:rotateX(342deg) rotateY(360deg) rotateZ(12deg); }
}

.shipment-lifecycle__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 30px;
  padding:26px;
  border:1px solid rgba(255,255,255,0.08);
  border-radius:22px;
  background:linear-gradient(135deg, rgba(255,255,255,0.085), rgba(255,255,255,0.025));
  box-shadow:0 24px 80px rgba(0,0,0,0.24), inset 0 1px 0 rgba(255,255,255,0.08);
  backdrop-filter:blur(18px);
}

.shipment-lifecycle__title {
  color: #ffffff;
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: 0;
  margin: 0;
  text-shadow:0 10px 34px rgba(0,0,0,0.30);
}

/* Badge */
.lc-badge { display:inline-flex; align-items:center; gap:7px; background:rgba(240,109,58,0.13); border:1px solid rgba(240,109,58,0.28); border-radius:999px; padding:5px 13px; font-size:10px; letter-spacing:0.12em; color:#ff7a4d; text-transform:uppercase; margin-bottom:12px; font-family:var(--f-body); font-weight:700; box-shadow:0 0 22px rgba(240,90,40,0.12); }
.lc-badge-dot { width:6px; height:6px; background:#f05a28; border-radius:50%; box-shadow:0 0 5px #f05a28; animation:lc-blink 1.8s infinite; }
@keyframes lc-blink { 0%,100%{opacity:1} 50%{opacity:0.2} }
.lc-sub { font-size:14px; color:rgba(255,255,255,0.4); margin-top:6px; font-weight:300; }
.lc-step-counter { font-size:11px; color:rgba(255,255,255,0.4); letter-spacing:0.06em; font-family:monospace; padding-bottom:4px; }
.lc-step-counter span { color:#ff7a4d; font-weight:700; }

/* Progress Track */
.lc-track { display:flex; align-items:flex-start; gap:0; margin-bottom:24px; padding:24px 18px 18px; border:1px solid rgba(255,255,255,0.08); border-radius:20px; background:linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.018)); box-shadow:0 26px 70px rgba(0,0,0,0.20), inset 0 1px 0 rgba(255,255,255,0.07); backdrop-filter:blur(14px); transform-style:preserve-3d; }
.lc-step { flex:1; display:flex; flex-direction:column; align-items:center; gap:10px; cursor:pointer; position:relative; transform-style:preserve-3d; }
.lc-step::after { content:''; position:absolute; top:19px; left:calc(50% + 22px); right:calc(-50% + 22px); height:2px; background:linear-gradient(90deg, rgba(255,255,255,0.09), rgba(255,255,255,0.025)); transition:background 0.4s, box-shadow 0.4s; z-index:0; }
.lc-step:last-child::after { display:none; }
.lc-step.is-done::after { background:linear-gradient(90deg, #f05a28, rgba(59,158,255,0.42)); box-shadow:0 0 18px rgba(240,90,40,0.28); }

/* RTL fix for connector line */
html[dir="rtl"] .lc-step::after { left:calc(-50% + 22px); right:calc(50% + 22px); background:linear-gradient(270deg, rgba(255,255,255,0.09), rgba(255,255,255,0.025)); }
html[dir="rtl"] .lc-step.is-done::after { background:linear-gradient(270deg, #f05a28, rgba(59,158,255,0.42)); }
.lc-circle { width:42px; height:42px; border-radius:50%; border:1px solid rgba(255,255,255,0.12); display:flex; align-items:center; justify-content:center; font-size:11px; font-weight:700; color:rgba(255,255,255,0.52); background:linear-gradient(145deg, rgba(19,35,58,0.98), rgba(8,16,29,0.98)); transition:all 0.35s cubic-bezier(0.22,1,0.36,1); position:relative; z-index:1; flex-shrink:0; font-family:monospace; box-shadow:inset 0 1px 0 rgba(255,255,255,0.09), 0 10px 24px rgba(0,0,0,0.28); }
.lc-circle::before { content:''; position:absolute; inset:-8px; border-radius:inherit; border:1px solid rgba(59,158,255,0.0); opacity:0; transition:all 0.35s; }
.lc-step.is-done .lc-circle { border-color:rgba(240,90,40,0.68); color:#ff8a5c; background:linear-gradient(145deg, rgba(240,90,40,0.20), rgba(13,24,41,0.98)); box-shadow:0 0 18px rgba(240,90,40,0.28), inset 0 1px 0 rgba(255,255,255,0.10); }
.lc-step.is-active .lc-circle { border-color:rgba(123,196,255,0.9); color:#fff; background:radial-gradient(circle at 35% 25%, #8fd1ff, #3b9eff 48%, #0a5eb3 100%); box-shadow:0 0 0 8px rgba(59,158,255,0.10), 0 0 34px rgba(59,158,255,0.62), 0 18px 32px rgba(0,0,0,0.32); transform:translateZ(22px) scale(1.18); }
.lc-step.is-active .lc-circle::before { inset:-11px; border-color:rgba(59,158,255,0.28); opacity:1; animation:lc-active-ring 1.8s ease-in-out infinite; }
.lc-step:not(.is-active):hover .lc-circle { border-color:rgba(255,255,255,0.42); color:#fff; transform:translateY(-4px) translateZ(14px); }
.lc-label { font-size:10px; font-weight:600; color:rgba(255,255,255,0.4); text-align:center; line-height:1.4; max-width:80px; transition:color 0.3s; font-family:monospace; }
.lc-step.is-active .lc-label { color:#fff; }
.lc-step.is-done .lc-label { color:#ff7a4d; }

/* Detail Panel */
.lc-panel { border:1px solid rgba(255,255,255,0.10); border-radius:22px; overflow:hidden; margin-bottom:52px; position:relative; background:linear-gradient(145deg, rgba(14,28,48,0.92), rgba(8,15,28,0.82)); box-shadow:0 30px 90px rgba(0,0,0,0.42), inset 0 1px 0 rgba(255,255,255,0.08); backdrop-filter:blur(18px); transform-style:preserve-3d; }
.lc-panel::before { content:''; position:absolute; inset:-1px; background:radial-gradient(circle at var(--lc-x, 50%) var(--lc-y, 0%), rgba(59,158,255,0.22), transparent 36%); opacity:0.85; pointer-events:none; transition:opacity 0.3s; }
.lc-panel::after { content:''; position:absolute; inset:0; background:linear-gradient(120deg, rgba(255,255,255,0.10), transparent 30%, transparent 74%, rgba(240,109,58,0.08)); opacity:0.36; pointer-events:none; }
.lc-panel-topline { position:absolute; top:0; left:0; right:0; height:2px; transition:background 0.4s; z-index:2; }
.lc-panel-body { padding:36px 40px; display:flex; gap:36px; flex-wrap:wrap; animation:lc-panel-in 0.35s ease; position:relative; z-index:1; }
@keyframes lc-panel-in { from{opacity:0;transform:translateY(-10px) scale(0.985)} to{opacity:1;transform:translateY(0) scale(1)} }
.lc-pnum { font-size:clamp(60px,8vw,108px); font-weight:700; line-height:1; opacity:0.16; flex-shrink:0; align-self:flex-start; user-select:none; font-family:monospace; transition:color 0.4s; text-shadow:0 0 34px currentColor; transform:translateZ(20px); }
.lc-pcontent { flex:1; min-width:220px; }
.lc-ptag { display:inline-flex; align-items:center; border-radius:10px; padding:4px 12px; font-size:9px; letter-spacing:0.12em; text-transform:uppercase; margin-bottom:14px; font-family:monospace; font-weight:700; transition:all 0.4s; }
.lc-ptag.blue { background:rgba(59,158,255,0.12); border:1px solid rgba(59,158,255,0.25); color:#3b9eff; }
.lc-ptag.orange { background:rgba(240,90,40,0.13); border:1px solid rgba(240,90,40,0.25); color:#ff7a4d; }
.lc-ptitle { font-size:clamp(17px,2.2vw,26px); font-weight:700; letter-spacing:0; line-height:1.25; margin-bottom:10px; color:#fff; }
.lc-pdesc { font-size:14px; font-weight:300; color:rgba(255,255,255,0.7); line-height:1.8; max-width:500px; }
.lc-ppills { display:flex; gap:7px; flex-wrap:wrap; margin-top:20px; }
.lc-pill { padding:5px 13px; border-radius:999px; font-size:11px; font-weight:600; transition:all 0.4s; }
.lc-pill.blue { border:1px solid rgba(59,158,255,0.35); color:#3b9eff; background:rgba(59,158,255,0.12); }
.lc-pill.orange { border:1px solid rgba(240,90,40,0.35); color:#ff7a4d; background:rgba(240,90,40,0.13); }
.lc-pnav { display:flex; gap:10px; margin-top:24px; flex-wrap:wrap; }
.lc-pnbtn { display:flex; align-items:center; gap:6px; padding:8px 18px; border-radius:10px; border:1px solid rgba(255,255,255,0.07); background:transparent; color:rgba(255,255,255,0.7); font-size:13px; font-weight:600; cursor:pointer; transition:all 0.2s; font-family:var(--f-body); }
.lc-pnbtn:hover { border-color:rgba(255,255,255,0.4); color:#fff; background:rgba(255,255,255,0.08); }
.lc-pnbtn.blue { border-color:rgba(59,158,255,0.4); color:#3b9eff; background:rgba(59,158,255,0.12); }
.lc-pnbtn.blue:hover { background:rgba(59,158,255,0.2); }
.lc-pnbtn.orange { border-color:rgba(240,90,40,0.4); color:#ff7a4d; background:rgba(240,90,40,0.13); }

/* Cancellation */
.cancellation-cases { margin-top: 10px; }
.lc-cancel-head { display:flex; align-items:center; gap:12px; margin-bottom:20px; }
.lc-cancel-icon { width:32px; height:32px; border-radius:8px; background:rgba(255,77,77,0.12); border:1px solid rgba(255,77,77,0.25); display:flex; align-items:center; justify-content:center; color:#ff4d4d; font-weight:700; font-size:14px; flex-shrink:0; box-shadow:0 0 24px rgba(255,77,77,0.16); }
.lc-cancel-sub { font-size:12px; color:rgba(255,255,255,0.4); margin-top:2px; }
.lc-cancel-tabs { display:flex; gap:4px; margin-bottom:18px; background:rgba(8,15,28,0.78); border:1px solid rgba(255,255,255,0.08); border-radius:12px; padding:5px; width:fit-content; flex-wrap:wrap; box-shadow:0 18px 48px rgba(0,0,0,0.20); backdrop-filter:blur(14px); }
.lc-ctab { padding:7px 18px; border-radius:7px; font-size:12px; font-weight:600; color:rgba(255,255,255,0.4); cursor:pointer; transition:all 0.2s; border:1px solid transparent; background:transparent; font-family:var(--f-body); white-space:nowrap; }
.lc-ctab:hover { color:rgba(255,255,255,0.7); }
.lc-ctab.is-on { background:linear-gradient(135deg, rgba(255,77,77,0.20), rgba(240,109,58,0.12)); color:#ff6b6b; border-color:rgba(255,77,77,0.32); box-shadow:0 0 18px rgba(255,77,77,0.12); }
.lc-cancel-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(240px,1fr)); gap:14px; }
.lc-ccard { background:linear-gradient(145deg, rgba(13,24,41,0.94), rgba(8,15,28,0.86)); border:1px solid rgba(255,255,255,0.08); border-radius:18px; padding:22px 24px; cursor:pointer; transition:transform 0.28s, border-color 0.28s, box-shadow 0.28s; position:relative; overflow:hidden; display:none; box-shadow:0 20px 52px rgba(0,0,0,0.22), inset 0 1px 0 rgba(255,255,255,0.05); }
.lc-ccard.is-shown { display:block; animation:lc-card-in 0.32s ease both; }
.lc-ccard::before { content:''; position:absolute; top:0; left:0; right:0; height:2px; background:linear-gradient(90deg, #ff4d4d, #f05a28); opacity:0; transition:opacity 0.25s; }
.lc-ccard::after { content:''; position:absolute; inset:auto -20% -42% -20%; height:70%; background:radial-gradient(ellipse at center, rgba(255,77,77,0.18), transparent 64%); opacity:0; transition:opacity 0.28s; }
.lc-ccard:hover::before,
.lc-ccard:hover::after { opacity:1; }
.lc-ccard:hover { border-color:rgba(255,77,77,0.34); transform:translateY(-7px) rotateX(2deg); box-shadow:0 28px 70px rgba(0,0,0,0.30), 0 0 30px rgba(255,77,77,0.10); }
.lc-cidx { font-size:10px; color:rgba(255,77,77,0.4); letter-spacing:0.1em; margin-bottom:10px; font-family:monospace; }
.lc-cctitle { font-size:15px; font-weight:700; color:#fff; line-height:1.45; margin-bottom:12px; }
.lc-cbadge { display:inline-flex; align-items:center; font-size:11px; padding:3px 10px; border-radius:999px; border:1px solid rgba(255,77,77,0.3); color:#ff4d4d; background:rgba(255,77,77,0.12); font-weight:600; }

@keyframes lc-active-ring {
  0%,100% { transform:scale(1); opacity:0.64; }
  50% { transform:scale(1.16); opacity:1; }
}

@keyframes lc-card-in {
  from { opacity:0; transform:translateY(10px) scale(0.98); }
  to { opacity:1; transform:translateY(0) scale(1); }
}

/* Responsive Styles */
@media (max-width: 768px) {
  .shipment-lifecycle {
    padding: 60px 0;
  }
  .lc-3d-bg {
    opacity:0.58;
  }
  .lc-3d-grid {
    width:760px;
    height:520px;
    bottom:-22%;
  }
  .lc-3d-orbit--one {
    width:260px;
    height:260px;
    right:-18%;
  }
  .lc-3d-orbit--two,
  .lc-3d-cube--two,
  .lc-3d-beam--two {
    display:none;
  }
  .shipment-lifecycle__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    padding:20px;
    border-radius:18px;
  }
  .shipment-lifecycle__title {
    font-size: 1.5rem;
    margin-bottom: 0;
  }
  .lc-label { font-size:9px; max-width:60px; }
  .lc-circle { width:32px; height:32px; font-size:10px; }
  .lc-step { gap:6px; }
  .lc-step::after { top:15px; }
  .lc-panel-body { padding:20px 16px; }
  .lc-track { flex-wrap:nowrap; overflow-x:auto; padding:18px 12px 12px; gap:8px; scroll-snap-type:x proximity; }
  .lc-step { min-width:72px; scroll-snap-align:center; }
  .lc-ctab { padding:6px 12px; font-size:11px; }
  .lc-cancel-grid { grid-template-columns:1fr; }
  .lc-ccard { padding:18px 16px; }
  .lc-pnbtn { min-height:44px; padding:10px 16px; }
}

@media (prefers-reduced-motion: reduce) {
  .lc-3d-grid,
  .lc-3d-orbit,
  .lc-3d-beam,
  .lc-3d-node,
  .lc-3d-cube,
  .lc-step.is-active .lc-circle::before,
  .lc-badge-dot,
  .lc-ccard.is-shown,
  .lc-panel-body {
    animation:none !important;
  }
}

/* ═══════════════════════════════════════════

   RTL & BILINGUAL SUPPORT (ARABIC)

════════════════════════════════════════════ */

[lang="ar"] {
  /* Typography System for Arabic */
  --f-body: 'Cairo', 'Tajawal', sans-serif;
  --f-head: 'Cairo', 'Tajawal', sans-serif;

  /* Logical properties for global overrides */
  text-align: start;
}



[lang="ar"] h1, [lang="ar"] h2, [lang="ar"] h3, 

[lang="ar"] h4, [lang="ar"] h5, [lang="ar"] h6, 

[lang="ar"] .btn, [lang="ar"] .navbar__link {

  font-family: var(--f-head);

  letter-spacing: 0; /* Remove English letter-spacing for Arabic */

}



/* Fix specific directional icons if they shouldn't flip, or add spacing */

[lang="ar"] .btn i { margin-inline-end: 8px; margin-inline-start: 0; }



/* Navbar Language Switcher Alignment */

[lang="ar"] .navbar__lang { flex-direction: row-reverse; }

[lang="ar"] .navbar__lang i { margin-inline-start: 6px; margin-inline-end: 0; }



/* Arabic typography tuning (sitewide) */
[lang="ar"] .hero__title {
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: 0;
}

[lang="ar"] .hero__title br {
  display: block;
  content: "";
  margin-bottom: 0.28em;
}

[lang="ar"] body {
  font-size: 16px;
  line-height: 1.9;
  font-weight: 400;
}

[lang="ar"] p,
[lang="ar"] li,
[lang="ar"] .text,
[lang="ar"] .muted {
  font-size: 16px;
  line-height: 1.9;
}

[lang="ar"] small,
[lang="ar"] .tiny,
[lang="ar"] .meta {
  font-size: 13px;
  line-height: 1.8;
}

[lang="ar"] h1 {
  font-size: clamp(34px, 5.2vw, 68px);
  line-height: 1.2;
  letter-spacing: 0;
}

[lang="ar"] h2 {
  font-size: clamp(26px, 3.4vw, 46px);
  line-height: 1.3;
  letter-spacing: 0;
}

[lang="ar"] h3 {
  font-size: clamp(18px, 2.1vw, 28px);
  line-height: 1.45;
  letter-spacing: 0;
}

[lang="ar"] h4,
[lang="ar"] h5,
[lang="ar"] h6 {
  line-height: 1.55;
  letter-spacing: 0;
}

[lang="ar"] .section-title {
  letter-spacing: 0;
  line-height: 1.4;
  font-size: clamp(24px, 3.2vw, 42px);
}

[lang="ar"] .section-subtitle,
[lang="ar"] .section-desc,
[lang="ar"] .hero__desc {
  font-size: 16px;
  line-height: 1.9;
  margin-top: 18px;
}

[lang="ar"] .navbar__link {
  font-size: 14px;
  line-height: 1.4;
}

[lang="ar"] .btn {
  line-height: 1.2;
}

[lang="ar"] .btn.btn--sm {
  font-size: 13px;
}

[lang="ar"] .btn.btn--lg {
  font-size: 15px;
}

[lang="ar"] .service-card,
[lang="ar"] .feature-card,
[lang="ar"] .testimonial-card,
[lang="ar"] .faq-item,
[lang="ar"] .download-cta {
  direction: rtl;
  text-align: right;
}

[lang="ar"] .hero-benefit__title {
  font-size: 14px !important;
  line-height: 1.5 !important;
}

[lang="ar"] .feature-card__title,
[lang="ar"] .service-card__title {
  font-size: 18px !important;
  line-height: 1.5 !important;
}

[lang="ar"] .service-card__title,
[lang="ar"] .feature-card__title,
[lang="ar"] .testimonial-card__title,
[lang="ar"] .faq-item__question {
  line-height: 1.6;
}

[lang="ar"] .service-card__desc,
[lang="ar"] .feature-card__desc,
[lang="ar"] .testimonial-card__text,
[lang="ar"] .faq-item__answer {
  font-size: 15px;
  line-height: 1.9;
}

[lang="ar"] input,
[lang="ar"] textarea,
[lang="ar"] select,
[lang="ar"] .form-control {
  font-size: 15px;
  line-height: 1.9;
}

@media (max-width: 768px) {
  [lang="ar"] body {
    font-size: 15px;
    line-height: 1.9;
  }

  [lang="ar"] p,
  [lang="ar"] li,
  [lang="ar"] .section-subtitle,
  [lang="ar"] .section-desc,
  [lang="ar"] .hero__desc {
    font-size: 15px;
    line-height: 1.9;
  }

  [lang="ar"] .navbar__link {
    font-size: 13px;
  }
}
