:root {
    --primary: #004982;
    --primary-dark: #003666;
    --secondary: #58c273;
    --dark: #2c2e35;
    --surface: #f7f8fa;
    --white: #fff;
    --gray-100: #f7f8fa;
    --gray-200: #eef0f4;
    --gray-500: #8991a4;
    --gray-700: #4a5060;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
    --shadow-sm: 0 2px 8px rgba(0,0,0,.06);
    --shadow-md: 0 8px 24px rgba(0, 73, 130, .1);
    --shadow-lg: 0 20px 48px rgba(0, 73, 130, .14);
    --transition: .25s ease;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--dark); background: var(--surface); font-family: 'Open Sans', sans-serif; line-height: 1.65; -webkit-font-smoothing: antialiased; }
:lang(ar) body { font-family: 'Noto Sans Arabic', sans-serif; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.container { max-width: 1200px; margin-inline: auto; padding-inline: clamp(1rem, 5vw, 3rem); }
.btn { display: inline-flex; align-items: center; justify-content: center; padding: .85rem 2rem; border: 2px solid transparent; border-radius: var(--radius-md); font-weight: 700; white-space: nowrap; }
.btn-primary { color: var(--white); background: var(--primary); box-shadow: 0 4px 16px rgba(0,73,130,.3); }
.btn-secondary { color: #fff; background: var(--secondary); box-shadow: 0 4px 16px rgba(88,194,115,.3); }
.btn-secondary:hover { background: #4caf68; }
.btn--sm { padding: .6rem 1.25rem; font-size: .85rem; }
.navbar { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.95); border-bottom: 1px solid var(--gray-200); backdrop-filter: blur(12px); transition: box-shadow var(--transition); }
.navbar.scrolled { box-shadow: var(--shadow-md); }
.navbar__inner { display: flex; align-items: center; gap: 2rem; height: 4.5rem; }
.navbar__logo { flex-shrink: 0; }
.navbar__logo-img { display: block; width: auto; height: 40px; }
.navbar__links { display: flex; flex: 1; align-items: center; gap: 2rem; margin: 0; padding: 0; list-style: none; }
.navbar__links a { color: var(--gray-700); font-size: .9rem; font-weight: 600; }
.navbar__links a:hover { color: var(--primary); }
.navbar__cta { display: flex; align-items: center; gap: .75rem; margin-inline-start: auto; }
.navbar__toggle { display: flex; align-items: center; justify-content: center; gap: .5rem; padding: .5rem; color: var(--gray-700); background: none; border: 0; border-radius: var(--radius-md); cursor: pointer; font-size: .9rem; font-weight: 600; }
.navbar__toggle:hover { color: var(--primary); background: rgba(0,73,130,.08); }
.navbar__lang-toggle { min-width: 80px; }
.navbar__theme-toggle { width: 40px; }
.globe-icon { font-size: 1.25rem; }
.navbar__hamburger { display: none; flex-direction: column; gap: 5px; padding: .25rem; margin-inline-start: auto; background: none; border: 0; cursor: pointer; }
.navbar__hamburger span { display: block; width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: transform var(--transition), opacity var(--transition); }
.navbar__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__hamburger.open span:nth-child(2) { opacity: 0; }
.navbar__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
[dir='rtl'] .navbar__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(-45deg); }
[dir='rtl'] .navbar__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(45deg); }
.navbar__mobile { display: none; padding: 1.5rem; background: var(--white); border-top: 1px solid var(--gray-200); }
.navbar__mobile.open { display: block; }
.navbar__mobile ul { display: flex; flex-direction: column; gap: 1rem; margin: 0 0 1.5rem; padding: 0; list-style: none; }
.navbar__mobile-cta { display: flex; flex-direction: column; gap: .75rem; }
.navbar__mobile-lang { width: 100%; }
.preview-hero { min-height: calc(100vh - 132px); display: grid; place-items: center; padding-block: 3rem; }
.preview-hero__inner { max-width: 760px; }
.preview-label { color: var(--secondary); font-size: .8rem; font-weight: 800; text-transform: uppercase; }
.preview-hero h1 { margin: .75rem 0 1rem; color: var(--primary); font-size: clamp(2rem, 7vw, 4.5rem); line-height: 1.05; letter-spacing: 0; }
.preview-hero p { max-width: 680px; font-size: 1.05rem; line-height: 1.75; }
.preview-status { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; margin-top: 2rem; }
.preview-status div { padding: 1rem; border-left: 3px solid var(--secondary); background: var(--white); }
[dir='rtl'] .preview-status div { border-left: 0; border-right: 3px solid var(--secondary); }
.preview-status dt { color: #4a5060; font-size: .8rem; }
.preview-status dd { margin: .25rem 0 0; font-weight: 800; }
.section-label { color: var(--secondary); font-size: .75rem; font-weight: 800; text-transform: uppercase; }
.legal-page { min-height: calc(100vh - 132px); padding-block: clamp(3rem, 7vw, 6rem); background: var(--white); }
.legal-page__inner { max-width: 860px; }
.legal-page h1 { margin: .75rem 0 1rem; color: var(--dark); font-size: clamp(1.8rem, 4vw, 2.8rem); letter-spacing: 0; }
.legal-page h2 { margin: 1.75rem 0 .6rem; color: var(--dark); font-size: 1.2rem; letter-spacing: 0; }
.legal-page p, .legal-page ul { color: #4a5060; line-height: 1.8; }
.legal-page ul { margin: .25rem 0 0 1.2rem; }
[dir='rtl'] .legal-page ul { margin-right: 1.2rem; margin-left: 0; }
.legal-page a { color: var(--primary); }
.service-page { padding-block: clamp(3rem, 7vw, 6rem); background: var(--white); }
.service-page__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center; }
.service-page h1 { margin: .75rem 0 1rem; color: var(--dark); font-size: clamp(1.8rem, 4vw, 2.8rem); letter-spacing: 0; }
.service-page p { margin: 0 0 1rem; color: var(--gray-700); line-height: 1.75; }
.service-page ul { margin: 0 0 1.5rem 1.2rem; padding: 0; color: var(--gray-700); line-height: 1.8; }
[dir='rtl'] .service-page ul { margin-right: 1.2rem; margin-left: 0; }
.service-page img { width: 100%; height: 420px; object-fit: cover; border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); }
.integrations { padding-block: clamp(3.5rem, 7vw, 5.5rem); background: var(--gray-100); }
.integrations__header { max-width: 680px; margin: 0 auto 2.5rem; text-align: center; }
.integrations__header h2 { margin: .75rem 0; color: var(--dark); font-size: clamp(1.6rem, 3vw, 2.35rem); letter-spacing: 0; }
.integrations__header p { color: var(--gray-700); line-height: 1.7; }
.integrations__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.integration-card { display: flex; flex-direction: column; align-items: flex-start; min-height: 295px; padding: 1.75rem; background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.integration-card img { width: auto; height: 42px; max-width: 150px; margin-bottom: 1.5rem; object-fit: contain; object-position: left center; }
.integration-card--shopify img { width: 42px; }
.integration-card h3 { margin: 0 0 .7rem; color: var(--dark); font-size: 1.2rem; }
.integration-card p { color: var(--gray-700); font-size: .95rem; line-height: 1.7; }
.integration-card a { margin-top: auto; padding-top: 1.5rem; color: var(--primary); font-size: .9rem; font-weight: 700; }
.integration-card a:hover { color: var(--primary-dark); }
.integration-card__api-mark { display: grid; place-items: center; width: 42px; height: 42px; margin-bottom: 1.5rem; color: var(--primary); background: color-mix(in srgb, var(--primary) 10%, white); border-radius: 10px; font-size: .75rem; font-weight: 800; letter-spacing: .06em; }
.services-hero { padding-block: clamp(3rem, 7vw, 5rem); background: var(--gray-100); }
.services-hero__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 2rem; align-items: center; }
.services-hero h1 { margin: .75rem 0 1rem; color: var(--dark); font-size: clamp(1.8rem, 4vw, 3rem); letter-spacing: 0; }
.services-hero p { max-width: 780px; color: var(--gray-700); line-height: 1.8; }
.services-hero__visual { min-width: 0; }
.services-hero__image { width: 100%; height: 320px; object-fit: cover; border: 1px solid var(--gray-200); border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); }
.services-overview { padding-block: clamp(4rem, 8vw, 7rem); background: var(--gray-100); }
.services-overview__header { max-width: 640px; margin: 0 auto 4rem; text-align: center; }
.services-overview__header h2 { margin-bottom: .75rem; color: var(--dark); font-size: clamp(1.6rem, 3vw, 2.3rem); letter-spacing: 0; }
.services-overview__header p { margin-top: 1.25rem; color: var(--gray-700); }
.services-overview__accent { width: 48px; height: 3px; margin-inline: auto; background: var(--secondary); border-radius: 3px; }
.services-overview__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.services-overview__card { overflow: hidden; background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.services-overview__card--featured { border: 2px solid var(--secondary); }
.services-overview__card-top { display: flex; align-items: flex-end; justify-content: space-between; min-height: 10rem; padding: 2rem; }
.services-overview__card-top--c2c { background: linear-gradient(135deg, var(--primary) 0%, #0067b8 100%); }
.services-overview__card-top--b2c { background: linear-gradient(135deg, #3fa058 0%, var(--secondary) 100%); }
.services-overview__card-top--b2b { background: linear-gradient(135deg, var(--dark) 0%, #454955 100%); }
.services-overview__icon { display: grid; place-items: center; width: 4rem; height: 4rem; color: #fff; background: rgba(255,255,255,.2); border-radius: 50%; }
.services-overview__tag { color: rgba(255,255,255,.25); font-size: 2rem; font-weight: 800; line-height: 1; }
.services-overview__card-body { padding: 1.75rem; }
.services-overview__card-body h3 { margin: 0 0 .75rem; color: var(--dark); font-size: 1.15rem; }
.services-overview__card-body > p { margin: 0 0 1.25rem; color: var(--gray-700); font-size: .9rem; line-height: 1.7; }
.services-overview__card-body ul { display: flex; flex-direction: column; gap: .6rem; margin: 0; padding: 0; list-style: none; }
.services-overview__card-body li { display: flex; align-items: center; gap: .6rem; color: var(--gray-700); font-size: .875rem; font-weight: 500; }
.services-overview__card-body li svg { flex-shrink: 0; color: var(--secondary); }
.partners-page { padding-block: clamp(3rem, 7vw, 6rem); background: var(--white); }
.partners-page__header { max-width: 640px; margin-bottom: 4rem; }
.partners-page__header h1 { margin: .5rem 0 1rem; color: var(--dark); font-size: clamp(1.9rem, 4vw, 2.75rem); font-weight: 700; letter-spacing: 0; }
.partners-page__header p { color: var(--gray-700); font-size: 1.05rem; line-height: 1.75; }
.partners-page__block { margin-bottom: 3.5rem; }
.partners-page__block-title { margin-bottom: 1.75rem; padding-bottom: .75rem; color: var(--gray-500); border-bottom: 1.5px solid var(--gray-200); font-size: 1rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
[dir='rtl'] .partners-page__block-title { letter-spacing: .06em; }
.partners-page__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 1.25rem; }
.partners-page__grid--sm { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }
.partner-card { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .875rem; padding: 1.75rem 1.25rem; background: var(--gray-100); border: 1.5px solid var(--gray-200); border-radius: var(--radius-lg); transition: border-color .2s, box-shadow .2s; }
.partner-card:hover { border-color: var(--gray-300); box-shadow: 0 4px 16px rgba(0,0,0,.06); }
.partner-card img { width: 100%; max-width: 100px; height: 52px; object-fit: contain; object-position: center; }
.partner-card span { color: var(--gray-700); font-size: .8rem; font-weight: 600; text-align: center; }
.partner-integration { display: grid; grid-template-columns: auto minmax(240px, 1fr) auto; gap: 1.5rem; align-items: center; padding: 1.75rem; color: inherit; background: linear-gradient(120deg, #071b22, #0d3435); border: 1px solid rgba(0,232,159,.35); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); transition: transform .2s, box-shadow .2s, border-color .2s; }
.partner-integration:hover { transform: translateY(-2px); border-color: rgba(0,232,159,.7); box-shadow: 0 16px 34px rgba(7,27,34,.2); }
.partner-integration__logo { display: grid; place-items: center; width: 72px; height: 72px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); border-radius: 18px; }
.partner-integration__logo img { width: 46px; height: auto; }
.partner-integration__content { display: grid; gap: .55rem; }
.partner-integration__heading { display: flex; align-items: center; gap: .75rem; flex-wrap: wrap; }
.partner-integration__heading strong { color: #fff; font-size: 1.35rem; }
.partner-integration__badge { padding: .3rem .55rem; color: #00e89f; background: rgba(0,232,159,.1); border-radius: 999px; font-size: .68rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
[dir='rtl'] .partner-integration__badge { letter-spacing: 0; text-transform: none; }
.partner-integration__description { color: rgba(255,255,255,.75); line-height: 1.6; }
.partner-integration__link { color: #00e89f; font-size: .85rem; font-weight: 700; white-space: nowrap; }
.verticals-hero { padding-block: clamp(3rem, 7vw, 5rem); color: #fff; background: var(--dark); }
.verticals-hero__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 2.5rem; align-items: center; }
.verticals-hero h1 { margin: .75rem 0 1rem; color: #fff; font-size: clamp(1.9rem, 4vw, 3rem); letter-spacing: 0; }
.verticals-hero p { max-width: 680px; margin: 0; color: rgba(255,255,255,.78); line-height: 1.8; }
.verticals-hero__image { width: 100%; height: 320px; object-fit: cover; border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); }
.verticals-page { padding-block: clamp(3rem, 7vw, 6rem); background: var(--white); }
.verticals-page__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 2rem; }
.vertical-card { overflow: hidden; background: var(--gray-100); border: 1.5px solid var(--gray-200); border-radius: var(--radius-xl); }
.vertical-card__image { display: block; width: 100%; height: 180px; object-fit: cover; }
.vertical-card__content { padding: 2rem; }
.vertical-card h2 { margin: 0 0 .75rem; color: var(--dark); font-size: 1.2rem; letter-spacing: 0; }
.vertical-card p { margin: 0 0 1rem; color: var(--gray-700); font-size: .95rem; line-height: 1.7; }
.vertical-card ul { margin: 0 0 0 1.1rem; padding: 0; color: var(--gray-700); font-size: .9rem; line-height: 1.9; }
[dir='rtl'] .vertical-card ul { margin-right: 1.1rem; margin-left: 0; }
.accent-line { width: 48px; height: 3px; margin-bottom: 1.5rem; background: var(--secondary); border-radius: 3px; }
.about-hero { padding-block: clamp(3rem, 7vw, 5rem); color: var(--white); background: linear-gradient(135deg, var(--primary) 0%, #005d9c 100%); }
.about-hero__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 2rem; align-items: center; }
.about-hero h1 { margin: .75rem 0 1rem; color: #fff; font-size: clamp(1.8rem, 4vw, 3rem); letter-spacing: 0; }
.about-hero p { max-width: 760px; margin: 0; color: rgba(255,255,255,.88); line-height: 1.8; }
.about-hero__image { width: 100%; height: 320px; object-fit: cover; border: 1px solid rgba(255,255,255,.18); border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); }
.revolution { padding-block: clamp(4rem, 8vw, 7rem); background: var(--white); }
.revolution__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.revolution__image { width: 100%; height: 440px; object-fit: cover; border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); }
.revolution__content h2 { margin: 0 0 1rem; color: var(--dark); font-size: clamp(1.5rem, 3vw, 2.2rem); letter-spacing: 0; }
.revolution__content p { margin: 0 0 1rem; color: var(--gray-700); line-height: 1.75; }
.revolution__vm { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: clamp(3rem, 6vw, 5rem); padding-top: clamp(2.5rem, 5vw, 4rem); border-top: 1px solid var(--gray-200); }
.revolution__vm-card { padding: 2rem; background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.revolution__vm-icon { display: block; margin-bottom: 1rem; color: var(--primary); }
.revolution__vm-card h3 { margin: 0 0 .75rem; color: var(--primary); font-size: 1rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.revolution__vm-card p { margin: 0; color: var(--gray-700); font-size: .95rem; line-height: 1.75; }
.team { padding-block: clamp(4rem, 8vw, 7rem); background: var(--white); }
.team__header { max-width: 640px; margin: 0 auto 4rem; text-align: center; }
.team__header h2 { margin-bottom: .75rem; color: var(--dark); font-size: clamp(1.6rem, 3vw, 2.3rem); letter-spacing: 0; }
.team__header .accent-line { margin-inline: auto; }
.team__intro { margin-top: 1.25rem; color: var(--gray-700); line-height: 1.75; }
.team__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.5rem; }
.team__grid > *:nth-child(6) { grid-column: 2; }
.team__grid > *:nth-child(7) { grid-column: 4; }
.team__card { overflow: hidden; text-align: center; background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.team__photo { display: block; width: 100%; height: 200px; object-fit: cover; }
.team__info { padding: 1.25rem 1rem 1.5rem; }
.team__info strong { display: block; color: var(--dark); font-size: .95rem; font-weight: 700; }
.team__info span { display: block; margin-top: .25rem; color: var(--secondary); font-size: .82rem; font-weight: 600; }
.team__linkedin { display: inline-block; margin-top: .5rem; color: #0a66c2; font-size: .78rem; font-weight: 600; }
.team__linkedin:hover { text-decoration: underline; }
.hero { position: relative; overflow: hidden; padding-block: clamp(4rem, 10vw, 8rem); color: var(--white); background: linear-gradient(135deg, var(--primary) 0%, #006ab5 60%, #004070 100%); }
.hero__bg-shape { position: absolute; border-radius: 50%; opacity: .08; pointer-events: none; }
.hero__bg-shape--1 { top: -200px; right: -100px; width: 600px; height: 600px; background: var(--white); }
.hero__bg-shape--2 { bottom: -150px; left: -80px; width: 400px; height: 400px; background: var(--secondary); }
.hero__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.hero__tagline { margin: 0; color: rgba(255,255,255,.85); font-size: .95rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.hero__headline { margin-block: .75rem 1.25rem; font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 800; line-height: 1.05; letter-spacing: -.02em; }
.hero__sub { max-width: 480px; margin-bottom: 2.5rem; font-size: 1.1rem; line-height: 1.7; opacity: .88; }
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero__image { display: block; width: 100%; height: auto; border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); }
.partners { padding-block: clamp(4rem, 8vw, 7rem); background: var(--gray-100); }
.partners__header { max-width: 560px; margin: 0 auto 3.5rem; text-align: center; }
.partners__header h2 { margin-bottom: .75rem; color: var(--dark); font-size: clamp(1.5rem, 3vw, 2.1rem); }
.partners__header .accent-line { margin-inline: auto; }
.partners__block-label { margin-bottom: 1.5rem; color: var(--gray-500); font-size: .72rem; font-weight: 700; letter-spacing: .18em; text-align: center; text-transform: uppercase; }
.partners__marquee { overflow: hidden; direction: ltr; mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent); -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent); }
.partners__logos { display: flex; align-items: center; justify-content: center; gap: 1.25rem; flex-wrap: wrap; }
.partners__logos--small { gap: 2rem; }
.partners__logos--marquee { display: flex; width: max-content; flex-wrap: nowrap; justify-content: flex-start; animation: partnersMarquee 24s linear infinite; will-change: transform; }
.partners__logos-group { display: flex; gap: 1.25rem; flex-shrink: 0; padding-inline-end: 1.25rem; }
.partners__logo-card { flex-shrink: 0; }
.partners__logo-img { width: 160px; height: 60px; padding: .65rem; background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-md); object-fit: contain; }
.partners__logo-card--large .partners__logo-img { width: 220px; height: 70px; }
.partners__integration-block { margin-top: 2.5rem; }
.partners__integration-card { display: grid; grid-template-columns: minmax(220px, .8fr) minmax(280px, 1.4fr) auto; gap: 2rem; align-items: center; max-width: 980px; margin-inline: auto; padding: 1.5rem 1.75rem; color: inherit; background: linear-gradient(120deg, #071b22, #0d3435); border: 1px solid rgba(0, 232, 159, .35); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); transition: transform .2s, box-shadow .2s, border-color .2s; }
.partners__integration-card:hover { transform: translateY(-2px); border-color: rgba(0, 232, 159, .7); box-shadow: 0 16px 34px rgba(7, 27, 34, .2); }
.partners__integration-brand { display: flex; align-items: center; gap: .75rem; flex-wrap: wrap; }
.partners__integration-logo { display: grid; place-items: center; width: 44px; height: 44px; background: rgba(255,255,255,.08); border-radius: 10px; }
.partners__integration-logo img { width: 28px; height: auto; }
.partners__integration-name { color: #fff; font-size: 1.15rem; font-weight: 700; }
.partners__integration-badge { padding: .25rem .5rem; color: #00e89f; background: rgba(0,232,159,.1); border-radius: 999px; font-size: .65rem; font-weight: 700; text-transform: uppercase; }
.partners__integration-card p { margin: 0; color: rgba(255,255,255,.75); font-size: .92rem; line-height: 1.6; }
.partners__integration-link { color: #00e89f; font-size: .85rem; font-weight: 700; white-space: nowrap; }
.services { padding-block: clamp(4rem, 8vw, 7rem); background: var(--gray-100); }
.services__header { max-width: 640px; margin: 0 auto 4rem; text-align: center; }
.services__header h2 { margin-bottom: .75rem; color: var(--dark); font-size: clamp(1.6rem, 3vw, 2.3rem); }
.services__header .accent-line { margin-inline: auto; }
.services__intro { margin-top: 1.25rem; color: var(--gray-700); }
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.services__card { overflow: hidden; background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.services__card--featured { border: 2px solid var(--secondary); position: relative; }
.services__card-top { display: flex; align-items: flex-end; justify-content: space-between; min-height: 10rem; padding: 2rem; }
.services__card-top--c2c { background: linear-gradient(135deg, var(--primary) 0%, #0067b8 100%); }
.services__card-top--b2c { background: linear-gradient(135deg, #3fa058 0%, var(--secondary) 100%); }
.services__card-top--b2b { background: linear-gradient(135deg, var(--dark) 0%, #454955 100%); }
.services__icon { display: grid; place-items: center; width: 4rem; height: 4rem; color: #fff; background: rgba(255,255,255,.2); border-radius: 50%; }
.services__tag { color: rgba(255,255,255,.25); font-size: 2rem; font-weight: 800; line-height: 1; }
.services__card-body { padding: 1.75rem; }
.services__card-body h3 { margin: 0 0 .75rem; color: var(--dark); font-size: 1.15rem; }
.services__card-body > p { margin: 0 0 1.25rem; color: var(--gray-700); font-size: .9rem; line-height: 1.7; }
.services__features { display: flex; flex-direction: column; gap: .6rem; margin: 0; padding: 0; list-style: none; }
.services__features li { display: flex; align-items: center; gap: .6rem; color: var(--gray-700); font-size: .875rem; font-weight: 500; }
.services__features li svg { flex-shrink: 0; color: var(--secondary); }
.why-wasal { padding-block: clamp(4rem, 8vw, 7rem); background: var(--white); }
.why-wasal__header { max-width: 640px; margin: 0 auto 3.5rem; text-align: center; }
.why-wasal__header h2 { margin-bottom: .75rem; color: var(--dark); font-size: clamp(1.6rem, 3vw, 2.3rem); }
.why-wasal__header .accent-line { margin-inline: auto; }
.why-wasal__cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.why-wasal__card { padding: 2rem; background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.why-wasal__card-media { margin-bottom: 1.25rem; border-radius: 12px; overflow: hidden; aspect-ratio: 16 / 9; background: var(--gray-100); }
.why-wasal__card-media img { display: block; width: 100%; height: 100%; object-fit: cover; }
.why-wasal__card h3 { margin: 0 0 .75rem; color: var(--dark); font-size: 1.05rem; }
.why-wasal__card p { margin: 0; color: var(--gray-700); font-size: .9rem; line-height: 1.7; }
.contact { padding-block: clamp(4rem, 8vw, 7rem); background: var(--gray-100); }
.contact-hero, .dp-hero { padding-block: clamp(3rem, 7vw, 5rem); color: var(--white); background: linear-gradient(135deg, var(--dark) 0%, #1e2230 100%); }
.contact-hero__grid, .dp-hero__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 2rem; align-items: center; }
.contact-hero h1, .dp-hero h1 { margin: .75rem 0 1rem; color: #fff; font-size: clamp(1.8rem, 4vw, 3rem); letter-spacing: 0; }
.contact-hero p, .dp-hero p { max-width: 760px; margin: 0; color: rgba(255,255,255,.88); line-height: 1.8; }
.contact-hero__image, .dp-hero__image { width: 100%; height: 320px; object-fit: cover; border: 1px solid rgba(255,255,255,.18); border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); }
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.contact__form-block h2 { margin-bottom: .75rem; color: var(--dark); font-size: clamp(1.4rem, 2.5vw, 2rem); }
.contact__form { display: flex; flex-direction: column; gap: 1.25rem; }
.contact__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.contact__field { display: flex; flex-direction: column; gap: .4rem; }
.contact__field label { color: var(--dark); font-size: .85rem; font-weight: 600; }
.contact__field input, .contact__field select, .contact__field textarea { padding: .8rem 1rem; color: var(--dark); background: var(--white); border: 1.5px solid #d4d8e2; border-radius: var(--radius-md); font-family: inherit; font-size: .9rem; outline: none; transition: border-color var(--transition), box-shadow var(--transition); }
.contact__field input:focus, .contact__field select:focus, .contact__field textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(0,73,130,.1); }
.contact__field textarea { resize: vertical; }
.contact__info-card { padding: 2rem; background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); }
.contact__info-card h3 { margin: 0 0 1.5rem; color: var(--dark); font-size: 1.2rem; }
.contact__info-item { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.25rem; }
.contact__info-item strong { display: block; margin-bottom: .25rem; color: var(--dark); font-size: .9rem; font-weight: 700; }
.contact__info-item p, .contact__info-item a { margin: 0; color: var(--gray-700); font-size: .9rem; line-height: 1.6; }
.contact__info-item a:hover { color: var(--primary); }

.dp-apply { padding-block: clamp(4rem, 8vw, 7rem); background: var(--gray-100); }
.dp-apply__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.dp-apply__form-block h2 { font-size: clamp(1.4rem, 2.5vw, 2rem); color: var(--dark); margin-bottom: .75rem; }
.dp-apply__form { display: flex; flex-direction: column; gap: 1.25rem; }
.dp-apply__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.dp-apply__field { display: flex; flex-direction: column; gap: .4rem; }
.dp-apply__field label { font-size: .85rem; font-weight: 600; color: var(--dark); }
.dp-apply__field input, .dp-apply__field select, .dp-apply__field textarea { padding: .8rem 1rem; border: 1.5px solid #d4d8e2; border-radius: var(--radius-md); font-family: inherit; font-size: .9rem; color: var(--dark); background: var(--white); transition: border-color var(--transition), box-shadow var(--transition); outline: none; }
.dp-apply__field input:focus, .dp-apply__field select:focus, .dp-apply__field textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(0,73,130,.10); }
.dp-apply__field textarea { resize: vertical; }
.dp-apply__gov-chips { display: flex; flex-wrap: wrap; gap: .5rem; min-height: 44px; }
.dp-apply__gov-loading { font-size: .85rem; color: var(--gray-500); align-self: center; }
.dp-apply__gov-chip { display: none; }
.dp-apply__gov-chip-label { display: inline-flex; align-items: center; padding: .35rem .85rem; border-radius: 999px; border: 1.5px solid #d4d8e2; background: var(--white); font-size: .825rem; font-weight: 500; color: var(--gray-700); cursor: pointer; user-select: none; transition: border-color 0.15s, background 0.15s, color 0.15s; white-space: nowrap; }
.dp-apply__gov-chip-label:hover { border-color: var(--primary); color: var(--primary); }
.dp-apply__gov-chip:checked + .dp-apply__gov-chip-label { background: var(--primary); border-color: var(--primary); color: var(--white); font-weight: 600; }
.dp-apply__why-card { background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--gray-200); padding: 2rem; }
.dp-apply__why-card h3 { font-size: 1.2rem; color: var(--dark); margin-bottom: 1.5rem; }
.dp-apply__why-item { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.5rem; }
.dp-apply__why-item:last-child { margin-bottom: 0; }
.dp-apply__why-item strong { display: block; font-weight: 700; font-size: .9rem; color: var(--dark); margin-bottom: .3rem; }
.dp-apply__why-item p { font-size: .875rem; color: var(--gray-700); line-height: 1.6; margin: 0; }

/* Careers styles */
.careers-hero { padding-block: clamp(4rem, 8vw, 7rem); background: linear-gradient(135deg, var(--dark) 0%, #0a2a4a 100%); color: var(--white); }
.careers-hero__inner { max-width: 820px; }
.careers-hero .section-label { color: var(--secondary); }
.careers-hero h1 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 800; margin-bottom: 1.25rem; line-height: 1.15; }
.careers-hero__tagline { font-size: clamp(1rem, 1.5vw, 1.2rem); opacity: .8; max-width: 600px; margin-bottom: 2.5rem; line-height: 1.7; }
.careers-positions { padding-block: clamp(3rem, 6vw, 5rem); background: var(--gray-100); }
.careers-positions h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); color: var(--dark); margin-bottom: .5rem; }
.careers-filters { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2.5rem; }
.dept-filter { padding: .4rem 1rem; border-radius: 100px; border: 1.5px solid var(--gray-300); background: var(--white); font-size: .82rem; font-weight: 600; cursor: pointer; color: var(--gray-700); transition: all var(--transition); }
.dept-filter.active, .dept-filter:hover { border-color: var(--primary); background: var(--primary); color: var(--white); }
.careers-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 1.5rem; }
.careers-loading, .careers-empty { grid-column: 1 / -1; text-align: center; padding: 4rem 2rem; color: var(--gray-500); font-size: 1rem; }
.position-card { background: var(--white); border-radius: var(--radius-md); border: 1.5px solid var(--gray-300); padding: 1.25rem; display: flex; flex-direction: column; gap: .75rem; transition: box-shadow var(--transition), border-color var(--transition); cursor: pointer; }
.position-card:hover { box-shadow: var(--shadow-sm); border-color: var(--primary); }
.position-card__header { display: flex; align-items: flex-start; justify-content: space-between; gap: .75rem; }
.position-card__title { font-size: .95rem; font-weight: 700; color: var(--dark); line-height: 1.35; }
.position-card__dept { display: inline-flex; align-items: center; gap: .3rem; padding: .2rem .6rem; border-radius: 100px; background: var(--gray-100); color: var(--gray-700); font-size: .72rem; font-weight: 600; white-space: nowrap; flex-shrink: 0; }
.position-card__desc { font-size: .82rem; color: var(--gray-600); line-height: 1.55; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.position-card__footer { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: .5rem; }
.position-card__salary { font-size: .82rem; font-weight: 700; color: var(--primary); }
.position-card .btn { font-size: .8rem; padding: .4rem 1rem; }

/* Position Detail */
.pos-header { padding-block: clamp(2.5rem, 5vw, 4rem); background: var(--dark); color: var(--white); }
.pos-back { display: inline-flex; align-items: center; gap: .4rem; background: none; border: none; cursor: pointer; color: var(--secondary); font-size: .875rem; font-weight: 600; margin-bottom: 1.25rem; text-decoration: none; }
.pos-header__badges { display: flex; gap: .5rem; margin-bottom: .75rem; }
.badge { display: inline-block; padding: .25rem .75rem; border-radius: 100px; font-size: .75rem; font-weight: 600; }
.badge--dept { background: rgba(255,255,255,.15); color: #fff; }
.badge--salary { background: rgba(88,194,115,.2); color: var(--secondary); }
.pos-header h1 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); font-weight: 800; }
.pos-body { padding-block: clamp(3rem, 6vw, 5rem); background: var(--white); }
.pos-layout { display: grid; grid-template-columns: 1.6fr 1fr; gap: 3rem; align-items: start; }
.pos-description { color: var(--gray-700); line-height: 1.8; font-size: .95rem; }
.pos-sidebar__card { background: var(--gray-100); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 1.75rem; }
.pos-sidebar__card h3 { font-size: 1.15rem; color: var(--dark); margin-bottom: .5rem; }
.pos-sidebar__card p { font-size: .875rem; color: var(--gray-600); margin-bottom: 1.25rem; line-height: 1.6; }
.pos-apply-section { padding-block: clamp(3rem, 6vw, 5rem); background: var(--white); }
.pos-apply-inner { max-width: 760px; margin: 0 auto; }
.pos-apply-header { margin-bottom: 2rem; }
.pos-apply-header h2 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); color: var(--dark); margin-bottom: .5rem; }
.apply-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 2rem; }
.apply-field { display: flex; flex-direction: column; gap: .4rem; }
.apply-field--full { grid-column: 1 / -1; }
.apply-field label { font-size: .85rem; font-weight: 600; color: var(--dark); }
.apply-field input, .apply-field select { padding: .75rem 1rem; border: 1.5px solid var(--gray-300); border-radius: var(--radius-md); font-size: .9rem; color: var(--dark); background: var(--white); outline: none; font-family: inherit; }
.apply-field input:focus, .apply-field select:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(0,73,130,.10); }
.apply-field input[type="file"] { padding: .5rem; border: 1.5px dashed var(--gray-300); cursor: pointer; }
.required { color: #e53e3e; margin-left: 2px; }
.field-hint { color: var(--gray-500); font-size: .78rem; }
.apply-consent { display: flex; align-items: flex-start; gap: .75rem; font-size: .875rem; color: var(--dark); cursor: pointer; line-height: 1.6; }
.apply-consent input[type="checkbox"] { margin-top: .2rem; flex-shrink: 0; }
.pos-not-found { padding-block: 6rem; text-align: center; }
.pos-not-found p { font-size: 1.2rem; color: var(--gray-700); margin-bottom: 1.5rem; }

.not-found-page { padding-block: clamp(5rem, 10vw, 8rem); text-align: center; background: var(--white); min-height: calc(100vh - 72px - 380px); display: flex; align-items: center; justify-content: center; }
.not-found-page__inner { max-width: 600px; margin: 0 auto; }
.not-found-page h1 { font-size: clamp(2rem, 5vw, 3.2rem); color: var(--dark); margin: .5rem 0 1rem; }
.not-found-page p { font-size: 1.1rem; color: var(--gray-700); line-height: 1.7; }

/* Tracking styles */
.track-hero { padding-block: clamp(3rem, 7vw, 5rem); color: var(--white); background: linear-gradient(135deg, var(--dark) 0%, #102a43 100%); }
.track-hero__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 2rem; align-items: center; }
.track-hero h1 { margin: .75rem 0 1rem; color: #fff; font-size: clamp(1.8rem, 4vw, 3rem); letter-spacing: 0; }
.track-hero p { max-width: 760px; margin: 0; color: rgba(255,255,255,.88); line-height: 1.8; }
.track-hero__image { width: 100%; height: 320px; object-fit: cover; border: 1px solid rgba(255,255,255,.18); border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); }

.track-page { min-height: calc(100vh - 72px - 380px); display: flex; align-items: flex-start; justify-content: center; padding-block: clamp(3rem, 8vw, 6rem); background: var(--gray-100); }
.track-page__shell { width: 100%; max-width: 600px; padding-inline: 1.25rem; }
.track-search { text-align: center; }
.track-page__illustration { margin-bottom: 1.75rem; }
.track-form { width: 100%; }
.track-form__row { display: flex; gap: .5rem; }
.track-form__input { flex: 1; padding: .875rem 1.25rem; border: 1.5px solid var(--gray-300); border-radius: var(--radius-md); font-size: 1rem; font-family: inherit; color: var(--dark); background: var(--white); outline: none; transition: border-color .2s; }
.track-form__input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(0,73,130,.1); }
.track-form__input::placeholder { color: var(--gray-500); }
.track-form__btn { padding-inline: 2rem; white-space: nowrap; font-size: 1rem; }
.track-form__error { margin-top: .65rem; font-size: .875rem; color: #c62828; text-align: left; }
[dir='rtl'] .track-form__error { text-align: right; }
.track-search__note { margin-top: 1.25rem; font-size: .8rem; color: var(--gray-500); }
.track-result__header { margin-bottom: 1.25rem; }
.track-back { display: inline-flex; align-items: center; gap: .35rem; background: none; border: none; cursor: pointer; font-size: .875rem; color: var(--primary); padding: 0; font-family: inherit; }
.track-back:hover { text-decoration: underline; }
.track-state { text-align: center; padding: 3rem 1rem; color: var(--gray-500); font-size: .95rem; }
.track-state--error { color: #c62828; }
.track-card { background: var(--white); border: 1.5px solid var(--gray-200); border-radius: var(--radius-lg); padding: 1.75rem; box-shadow: 0 2px 10px rgba(0,0,0,.06); }
.track-card__top { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.track-card__label { font-size: .75rem; color: var(--gray-500); margin-bottom: .2rem; text-transform: uppercase; letter-spacing: .04em; }
.track-card__num { font-size: 1.25rem; font-weight: 700; color: var(--dark); }
.status-badge { display: inline-block; padding: .3rem .85rem; border-radius: 20px; font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; white-space: nowrap; }
.status-pending { background: #e0e0e0; color: #616161; }
.status-assigned { background: #b3e5fc; color: #0277bd; }
.status-picked_up { background: #ffe0b2; color: #e65100; }
.status-in_transit { background: #ffccbc; color: #bf360c; }
.status-delivered { background: #c8e6c9; color: #2e7d32; }
.status-failed { background: #ffcdd2; color: #c62828; }
.status-returned { background: #e1bee7; color: #6a1b9a; }
.status-cancelled { background: #ffcdd2; color: #c62828; }
.status-on_hold { background: #fff9c4; color: #f57f17; }
.track-steps { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; position: relative; }
.track-steps::before { content: ''; position: absolute; top: 18px; left: 18px; right: 18px; height: 3px; background: var(--gray-200); z-index: 0; }
.track-step { display: flex; flex-direction: column; align-items: center; flex: 1; z-index: 1; }
.track-step__dot { width: 36px; height: 36px; border-radius: 50%; background: var(--gray-200); color: var(--white); font-size: .85rem; font-weight: 700; display: flex; align-items: center; justify-content: center; margin-bottom: .4rem; }
.track-step__dot.active { background: var(--primary); }
.track-step__dot.done { background: #66bb6a; }
.track-step__label { font-size: .7rem; color: var(--gray-500); text-align: center; line-height: 1.2; }
.track-step__label.active { color: var(--primary); font-weight: 600; }
.track-step__label.done { color: #388e3c; }
.track-map { width: 100%; height: 260px; border-radius: var(--radius-md); background: var(--gray-200); overflow: hidden; margin-bottom: .75rem; }
.track-map-note { font-size: .8rem; color: var(--gray-500); text-align: center; margin-bottom: 1rem; }
.track-whatsapp { display: flex; align-items: center; justify-content: center; gap: .6rem; width: 100%; padding: .875rem; border-radius: var(--radius-md); background: #25D366; color: #fff; font-size: .95rem; font-weight: 600; text-decoration: none; margin-top: .5rem; transition: background .2s; }
.track-whatsapp:hover { background: #1ebe57; }

/* Butler styles */
:root {
  --butler-primary: #CC8800;
  --butler-primary-dark: #92400E;
  --butler-primary-light: #F59E0B;
  --butler-cream: #FAF5EB;
  --butler-sand: #FEF3C7;
  --butler-dark: #1C1008;
  --butler-border: #E5D5A8;
}
.btn-butler { display: inline-flex; align-items: center; gap: .5rem; padding: .85rem 2rem; background: var(--butler-primary); color: #fff; font-weight: 700; font-size: .95rem; border-radius: 999px; text-decoration: none; border: none; cursor: pointer; transition: background .2s, transform .15s, box-shadow .2s; box-shadow: 0 4px 16px rgba(204,136,0,.3); }
.btn-butler:hover { background: var(--butler-primary-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(204,136,0,.35); }
.btn-butler--light { background: #fff; color: var(--butler-primary-dark); box-shadow: 0 4px 16px rgba(0,0,0,.15); }
.btn-butler--light:hover { background: var(--butler-sand); color: var(--butler-primary-dark); }
.butler-section-label { display: inline-block; font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--butler-primary); margin-bottom: .6rem; }
.butler-section-label--light { color: rgba(255,255,255,.7); }
.butler-accent-line { width: 48px; height: 3px; background: linear-gradient(90deg, var(--butler-primary), var(--butler-primary-light)); border-radius: 2px; margin: .75rem 0 2.5rem; }
.butler-hero { background: var(--butler-cream); padding-block: clamp(3.5rem, 8vw, 6rem); border-bottom: 1px solid var(--butler-border); }
.butler-hero__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.butler-hero__label { display: inline-block; padding: .28rem .85rem; background: rgba(204,136,0,.12); border: 1px solid rgba(204,136,0,.3); border-radius: 999px; font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--butler-primary-dark); margin-bottom: 1rem; }
.butler-hero__headline { font-size: clamp(1.8rem, 4.5vw, 3rem); font-weight: 800; line-height: 1.15; color: var(--butler-dark); margin-bottom: 1rem; }
.butler-hero__subtext { font-size: clamp(.9rem, 1.4vw, 1.075rem); line-height: 1.75; color: #5a4020; max-width: 480px; margin-bottom: 1.5rem; }
.butler-hero__badge { display: inline-flex; align-items: center; gap: .45rem; padding: .45rem .95rem; background: var(--butler-sand); border: 1px solid var(--butler-border); border-radius: 999px; font-size: .82rem; font-weight: 600; color: var(--butler-primary-dark); margin-bottom: 1.75rem; }
.butler-hero__visual { display: flex; align-items: center; justify-content: center; }
.butler-hero__img { width: 100%; max-width: 320px; height: auto; object-fit: contain; }
.butler-how { padding-block: clamp(4rem, 8vw, 7rem); background: var(--white); }
.butler-how h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); color: var(--butler-dark); margin-bottom: .25rem; }
.butler-how__steps { display: flex; align-items: stretch; gap: 1rem; }
.butler-how__connector { padding-top: 3.75rem; flex-shrink: 0; align-self: center; }
.butler-how__step { flex: 1; display: flex; flex-direction: column; background: var(--butler-cream); border: 1px solid var(--butler-border); border-radius: var(--radius-lg); padding: 2rem 1.75rem; transition: box-shadow .2s, transform .2s; }
.butler-how__step:hover { box-shadow: 0 8px 28px rgba(204,136,0,.12); transform: translateY(-4px); }
.butler-how__step-num { font-size: 2.25rem; font-weight: 900; color: var(--butler-border); line-height: 1; margin-bottom: .5rem; }
.butler-how__step h3 { font-size: 1.05rem; font-weight: 700; color: var(--butler-dark); margin-bottom: .5rem; }
.butler-how__step p { font-size: .875rem; color: #5a4020; line-height: 1.65; margin-bottom: 1rem; }
.butler-how__checklist { list-style: none; padding: 0; margin: 0; margin-top: auto; display: flex; flex-direction: column; gap: .35rem; }
.butler-how__checklist li { font-size: .8rem; color: #7a5a30; display: flex; align-items: center; gap: .4rem; }
.butler-how__checklist li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--butler-primary); flex-shrink: 0; }
.butler-restrict { padding-block: clamp(4rem, 8vw, 7rem); background: var(--butler-cream); }
.butler-restrict h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); color: var(--butler-dark); margin-bottom: .25rem; }
.butler-restrict__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.butler-restrict__limits { grid-column: 1 / -1; display: flex; gap: 2.5rem; flex-wrap: wrap; background: var(--white); border-radius: var(--radius-md); padding: 1.25rem 1.75rem; border: 1px solid var(--butler-border); }
.butler-restrict__limit-item { display: flex; align-items: center; gap: .55rem; font-size: .85rem; color: var(--butler-dark); font-weight: 500; }
.butler-restrict__col { background: var(--white); border-radius: var(--radius-lg); padding: 1.75rem; border: 1.5px solid var(--butler-border); }
.butler-restrict__col--can { border-color: rgba(204,136,0,.35); }
.butler-restrict__col--cannot { border-color: rgba(180,60,60,.18); }
.butler-restrict__col-header { display: flex; align-items: center; gap: .7rem; margin-bottom: 1.25rem; }
.butler-restrict__col-header h3 { font-size: 1rem; font-weight: 700; color: var(--butler-dark); margin: 0; }
.butler-restrict__icon { width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.butler-restrict__icon--can { background: rgba(204,136,0,.12); color: var(--butler-primary); }
.butler-restrict__icon--cannot { background: rgba(180,60,60,.1); color: #c0392b; }
.butler-restrict__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .65rem; }
.butler-restrict__list li { font-size: .865rem; color: #5a4020; display: flex; align-items: baseline; gap: .55rem; line-height: 1.45; }
.butler-restrict__list--can li::before { content: '✓'; color: var(--butler-primary); font-weight: 700; flex-shrink: 0; }
.butler-restrict__list--cannot li::before { content: '✗'; color: #c0392b; font-weight: 700; flex-shrink: 0; }
.butler-offer { padding-block: clamp(4rem, 8vw, 7rem); background: var(--white); }
.butler-offer__card { background: linear-gradient(135deg, #7a3d00 0%, #92400E 40%, #CC8800 100%); border-radius: var(--radius-xl); padding: clamp(2.5rem, 5vw, 4rem); color: var(--white); text-align: center; position: relative; overflow: hidden; }
.butler-offer__card::before { content: ''; position: absolute; top: -80px; right: -80px; width: 320px; height: 320px; background: radial-gradient(circle, rgba(255,255,255,.08) 0%, transparent 70%); pointer-events: none; }
.butler-offer__badge { display: inline-block; background: var(--butler-sand); color: var(--butler-primary-dark); font-size: .72rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; padding: .28rem .85rem; border-radius: 999px; margin-bottom: 1rem; }
.butler-offer__card h2 { font-size: clamp(1.5rem, 3.5vw, 2.4rem); font-weight: 800; color: var(--white); margin-bottom: 1rem; }
.butler-offer__card p { font-size: clamp(.875rem, 1.4vw, 1rem); color: rgba(255,255,255,.85); max-width: 520px; margin: 0 auto 2.5rem; line-height: 1.75; }
.butler-offer__perks { display: flex; justify-content: center; gap: 3rem; margin-bottom: 2.5rem; flex-wrap: wrap; }
.butler-offer__perk { text-align: center; }
.butler-offer__perk-num { font-size: 2.5rem; font-weight: 900; color: var(--butler-sand); line-height: 1; margin-bottom: .25rem; }
.butler-offer__perk span { font-size: .78rem; color: rgba(255,255,255,.65); display: block; }
.butler-form-section { padding-block: clamp(4rem, 8vw, 7rem); background: var(--butler-cream); }
.butler-form__wrap { max-width: 520px; margin: 0 auto; }
.butler-form__header { margin-bottom: 2.5rem; text-align: center; }
.butler-form__header .butler-accent-line { margin-inline: auto; }
.butler-form__header h2 { font-size: clamp(1.4rem, 2.5vw, 2rem); color: var(--butler-dark); margin-bottom: .25rem; }
.butler-form__header p { font-size: .875rem; color: #5a4020; margin-top: 1rem; line-height: 1.65; }
.butler-form { display: flex; flex-direction: column; gap: 1.25rem; }
.butler-form__field { display: flex; flex-direction: column; gap: .4rem; }
.butler-form__field label { font-size: .83rem; font-weight: 600; color: var(--butler-dark); }
.butler-form__field input { padding: .85rem 1rem; border: 1.5px solid var(--butler-border); border-radius: var(--radius-md); font-size: .9rem; color: var(--butler-dark); background: var(--white); transition: border-color .2s, box-shadow .2s; outline: none; font-family: inherit; }
.butler-form__field input:focus { border-color: var(--butler-primary); box-shadow: 0 0 0 3px rgba(204,136,0,.15); }
.butler-form__error { background: rgba(192,57,43,.08); border: 1px solid rgba(192,57,43,.25); border-radius: var(--radius-sm); color: #c0392b; padding: .75rem 1rem; font-size: .875rem; }
.butler-form__submit { width: 100%; justify-content: center; font-size: 1rem; padding: .95rem; }
.butler-form__success { text-align: center; padding: 2.5rem 1.5rem; background: var(--white); border-radius: var(--radius-lg); border: 1.5px solid rgba(204,136,0,.3); }
.butler-form__success-icon { color: var(--butler-primary); margin-bottom: 1rem; }
.butler-form__success h3 { font-size: 1.35rem; font-weight: 700; color: var(--butler-dark); margin-bottom: .5rem; }
.butler-form__success p { font-size: .875rem; color: #5a4020; line-height: 1.65; }
.butler-form__full { text-align: center; padding: 2.5rem 1.5rem; background: var(--white); border-radius: var(--radius-lg); border: 1.5px solid var(--butler-border); }
.butler-form__full-icon { font-size: 2.5rem; margin-bottom: .75rem; }
.butler-form__full h3 { font-size: 1.2rem; font-weight: 700; color: var(--butler-dark); margin-bottom: .5rem; }
.butler-form__full p { font-size: .875rem; color: #5a4020; line-height: 1.65; }
.butler-offer__spots { margin-bottom: 2rem; text-align: center; }
.butler-offer__spots-bar { width: 260px; height: 6px; background: rgba(255,255,255,.2); border-radius: 999px; margin: 0 auto .6rem; overflow: hidden; }
.butler-offer__spots-fill { height: 100%; background: var(--butler-sand); border-radius: 999px; transition: width .6s ease; }
.butler-offer__spots-label { font-size: .82rem; color: rgba(255,255,255,.75); margin: 0; }
.butler-offer__spots-label span:first-child { font-weight: 800; color: var(--butler-sand); font-size: 1rem; }
.icon-badge { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 10px; flex-shrink: 0; }
.icon-badge-primary { color: var(--primary); background: rgba(0,73,130,.1); }
.icon-badge-secondary { color: var(--secondary); background: rgba(88,194,115,.15); }
@keyframes partnersMarquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.footer { color: rgba(255,255,255,.75); background: var(--dark); }
.footer__inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; padding-block: 4rem 3rem; }
.footer__logo { width: auto; height: 44px; margin-bottom: 1rem; filter: brightness(0) invert(1); }
.footer__brand p { max-width: 280px; margin: 0; font-size: .875rem; line-height: 1.75; }
.footer__powered { margin-top: .5rem !important; opacity: .5; font-size: .8rem !important; }
.footer__tech { display: flex; align-items: center; gap: .5rem; margin-top: 1rem; opacity: .55; }
.footer__tech span { color: rgba(255,255,255,.5); font-size: .7rem; text-transform: uppercase; }
.footer__tech img { display: block; width: auto; height: 20px; filter: brightness(0) invert(1); }
.footer__brand-divider { width: 100%; height: 1px; margin: .75rem 0 .5rem; background: rgba(255,255,255,.12); }
.footer__socials { display: flex; gap: .75rem; font-size: .8rem; }
.footer__links-group h4 { margin: 0 0 1.25rem; color: #fff; font-size: .85rem; text-transform: uppercase; }
.footer__links-group ul { display: flex; flex-direction: column; gap: .65rem; margin: 0; padding: 0; list-style: none; }
.footer__links-group a { color: rgba(255,255,255,.6); font-size: .875rem; }
.footer__links-group a:hover, .footer__bottom-links a:hover { color: var(--secondary); }
.footer__bottom { padding-block: 1.25rem; border-top: 1px solid rgba(255,255,255,.08); }
.footer__bottom-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; }
.footer__bottom p { margin: 0; font-size: .82rem; }
.footer__bottom-links { display: flex; gap: 1.5rem; }
.footer__bottom-links a { color: rgba(255,255,255,.5); font-size: .82rem; }
.wa-bubble { position: fixed; right: 1.5rem; bottom: 1.5rem; z-index: 9999; display: flex; align-items: center; justify-content: center; width: 56px; height: 56px; color: #fff; background: #25d366; border-radius: 50%; box-shadow: 0 4px 16px rgba(0,0,0,.22); }
[dir='rtl'] .wa-bubble { right: auto; left: 1.5rem; }
[data-theme='dark'] { --primary: #1a8fe3; --white: #0b0f1a; --gray-200: #1c2236; --gray-700: #c4cce0; --shadow-lg: 0 20px 48px rgba(0,0,0,.55); }
[data-theme='dark'] body, [data-theme='dark'] .legal-page, [data-theme='dark'] .service-page, [data-theme='dark'] .partners-page, [data-theme='dark'] .verticals-page, [data-theme='dark'] .revolution, [data-theme='dark'] .team, [data-theme='dark'] .why-wasal, [data-theme='dark'] .dp-apply, [data-theme='dark'] .butler-how, [data-theme='dark'] .butler-offer, [data-theme='dark'] .careers-positions, [data-theme='dark'] .pos-body, [data-theme='dark'] .pos-apply-section, [data-theme='dark'] .track-page { color: #e8ecf4; background: #0b0f1a; }
[data-theme='dark'] .track-card, [data-theme='dark'] .pos-sidebar__card, [data-theme='dark'] .position-card { background: #111726; border-color: #1c2236; }
[data-theme='dark'] .track-card__num, [data-theme='dark'] .position-card__title, [data-theme='dark'] .pos-sidebar__card h3, [data-theme='dark'] .pos-apply-header h2 { color: #e8ecf4; }
[data-theme='dark'] .track-card__label, [data-theme='dark'] .position-card__desc, [data-theme='dark'] .pos-description, [data-theme='dark'] .pos-sidebar__card p, [data-theme='dark'] .apply-field label { color: #8b96b0; }
[data-theme='dark'] .track-form__input, [data-theme='dark'] .apply-field input, [data-theme='dark'] .apply-field select { background: #111726; border-color: #263354; color: #e8ecf4; }
[data-theme='dark'] .dept-filter { background: #111726; border-color: #263354; color: #c4cce0; }
[data-theme='dark'] .position-card__dept { background: #1c2236; color: #c4cce0; }
[data-theme='dark'] .track-step__dot { background: #1c2236; color: #8b96b0; }
[data-theme='dark'] .track-steps::before { background: #1c2236; }
[data-theme='dark'] .track-map { background: #1c2236; }
[data-theme='dark'] .butler-hero, [data-theme='dark'] .butler-restrict, [data-theme='dark'] .butler-form-section { background: #111726; border-color: #1c2236; }
[data-theme='dark'] .butler-hero__headline, [data-theme='dark'] .butler-how h2, [data-theme='dark'] .butler-restrict h2, [data-theme='dark'] .butler-form__header h2, [data-theme='dark'] .butler-how__step h3, [data-theme='dark'] .butler-restrict__col-header h3, [data-theme='dark'] .butler-restrict__limit-item, [data-theme='dark'] .butler-form__field label, [data-theme='dark'] .butler-form__success h3, [data-theme='dark'] .butler-form__full h3 { color: #e8ecf4; }
[data-theme='dark'] .butler-hero__subtext, [data-theme='dark'] .butler-how__step p, [data-theme='dark'] .butler-how__checklist li, [data-theme='dark'] .butler-restrict__list li, [data-theme='dark'] .butler-form__header p, [data-theme='dark'] .butler-form__success p, [data-theme='dark'] .butler-form__full p { color: #8b96b0; }
[data-theme='dark'] .butler-how__step, [data-theme='dark'] .butler-restrict__col, [data-theme='dark'] .butler-restrict__limits, [data-theme='dark'] .butler-form__success, [data-theme='dark'] .butler-form__full { background: #111726; border-color: #1c2236; }
[data-theme='dark'] .butler-form__field input { background: #0b0f1a; border-color: #263354; color: #e8ecf4; }
[data-theme='dark'] .navbar { background: rgba(11,15,26,.96); border-bottom-color: #263354; }
[data-theme='dark'] .navbar__mobile { background: #0b0f1a; border-top-color: #263354; }
[data-theme='dark'] .navbar__hamburger span { background: #c4cce0; }
[data-theme='dark'] .legal-page h1, [data-theme='dark'] .legal-page h2 { color: #e8ecf4; }
[data-theme='dark'] .legal-page p, [data-theme='dark'] .legal-page ul { color: #8b96b0; }
[data-theme='dark'] .service-page h1 { color: #e8ecf4; }
[data-theme='dark'] .service-page p, [data-theme='dark'] .service-page ul { color: #8b96b0; }
[data-theme='dark'] .partners-page__header h1, [data-theme='dark'] .partners__header h2 { color: #e8ecf4; }
[data-theme='dark'] .partners-page__header p { color: #8b96b0; }
[data-theme='dark'] .partner-card, [data-theme='dark'] .partners__logo-img { background: #111726; border-color: #1c2236; }
[data-theme='dark'] .vertical-card { background: #111726; }
[data-theme='dark'] .vertical-card h2 { color: #e8ecf4; }
[data-theme='dark'] .vertical-card p, [data-theme='dark'] .vertical-card ul { color: #8b96b0; }
[data-theme='dark'] .revolution__content h2, [data-theme='dark'] .team__header h2, [data-theme='dark'] .team__info strong, [data-theme='dark'] .why-wasal__header h2, [data-theme='dark'] .why-wasal__card h3, [data-theme='dark'] .contact__form-block h2, [data-theme='dark'] .contact__info-card h3, [data-theme='dark'] .contact__info-item strong, [data-theme='dark'] .dp-apply__form-block h2, [data-theme='dark'] .dp-apply__why-card h3, [data-theme='dark'] .dp-apply__why-item strong { color: #e8ecf4; }
[data-theme='dark'] .revolution__content p, [data-theme='dark'] .team__intro, [data-theme='dark'] .why-wasal__card p, [data-theme='dark'] .contact__info-item p, [data-theme='dark'] .contact__field label, [data-theme='dark'] .dp-apply__field label, [data-theme='dark'] .dp-apply__why-item p { color: #8b96b0; }
[data-theme='dark'] .revolution__vm-card, [data-theme='dark'] .team__card, [data-theme='dark'] .why-wasal__card, [data-theme='dark'] .contact__info-card, [data-theme='dark'] .dp-apply__why-card { background: #111726; border-color: #1c2236; }
[data-theme='dark'] .contact__field input, [data-theme='dark'] .contact__field select, [data-theme='dark'] .contact__field textarea, [data-theme='dark'] .dp-apply__field input, [data-theme='dark'] .dp-apply__field select, [data-theme='dark'] .dp-apply__field textarea { background: #111726; border-color: #263354; color: #e8ecf4; }
[data-theme='dark'] .dp-apply__gov-chip-label { background: #111726; border-color: #263354; color: #c4cce0; }
[data-theme='dark'] .revolution__vm-card p { color: #8b96b0; }
[data-theme='dark'] .revolution__vm-card h3 { color: #1a8fe3; }
[data-theme='dark'] .revolution__vm-icon { color: #1a8fe3; }
[data-theme='dark'] .integrations, [data-theme='dark'] .partners, [data-theme='dark'] .services, [data-theme='dark'] .contact, [data-theme='dark'] .dp-apply { background: #111726; }
[data-theme='dark'] .services__header h2, [data-theme='dark'] .services__card-body h3 { color: #e8ecf4; }
[data-theme='dark'] .services__intro, [data-theme='dark'] .services__card-body > p, [data-theme='dark'] .services__features li { color: #8b96b0; }
[data-theme='dark'] .services__card { background: #0b0f1a; border-color: #1c2236; }
[data-theme='dark'] .integrations__header h2, [data-theme='dark'] .integration-card h3 { color: #e8ecf4; }
[data-theme='dark'] .services-hero, [data-theme='dark'] .services-overview { background: #111726; }
[data-theme='dark'] .services-hero h1, [data-theme='dark'] .services-overview__header h2, [data-theme='dark'] .services-overview__card-body h3 { color: #e8ecf4; }
[data-theme='dark'] .services-hero p, [data-theme='dark'] .services-overview__header p, [data-theme='dark'] .services-overview__card-body > p, [data-theme='dark'] .services-overview__card-body li { color: #8b96b0; }
[data-theme='dark'] .section-label { color: #fff; }
@media (max-width: 1000px) { .footer__inner { grid-template-columns: 1fr 1fr; } .footer__brand { grid-column: span 2; } }
@media (max-width: 1000px) { .team__grid { grid-template-columns: repeat(3, 1fr); } .team__grid > *:nth-child(6), .team__grid > *:nth-child(7) { grid-column: auto; } }
@media (max-width: 900px) { .navbar__links, .navbar__cta { display: none; } .navbar__hamburger { display: flex; } }
@media (max-width: 900px) { .hero__inner, .butler-hero__inner { grid-template-columns: 1fr; } .hero__visual, .butler-hero__visual { order: -1; } .butler-hero__img { max-width: 260px; margin: 0 auto; } .butler-hero__subtext { max-width: 100%; } .butler-how__steps { flex-direction: column; } .butler-how__connector { display: none; } .butler-restrict__grid { grid-template-columns: 1fr; } .butler-offer__perks { gap: 2rem; } }
@media (max-width: 900px) { .service-page__inner { grid-template-columns: 1fr; } .service-page img { height: 300px; } }
@media (max-width: 900px) { .integrations__grid { grid-template-columns: 1fr; } .integration-card { min-height: 0; } }
@media (max-width: 900px) { .services__grid, .services-hero__grid, .services-overview__grid { grid-template-columns: 1fr; } .services-hero__image { height: 240px; } }
@media (max-width: 900px) { .verticals-hero__grid, .verticals-page__grid { grid-template-columns: 1fr; } .verticals-hero__image { height: 240px; } .vertical-card__image { height: 200px; } }
@media (max-width: 900px) { .about-hero__grid, .contact-hero__grid, .dp-hero__grid, .revolution__inner { grid-template-columns: 1fr; } .about-hero__image, .contact-hero__image, .dp-hero__image { height: 240px; } .revolution__image { height: 300px; } .revolution__vm { grid-template-columns: 1fr; } }
@media (max-width: 900px) { .why-wasal__cards { grid-template-columns: 1fr 1fr; } }
@media (max-width: 900px) { .contact__grid, .dp-apply__grid { grid-template-columns: 1fr; } }
@media (max-width: 600px) { .why-wasal__cards { grid-template-columns: 1fr; } }
@media (max-width: 600px) { .contact__row, .dp-apply__row { grid-template-columns: 1fr; } }
@media (max-width: 600px) { .team__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .butler-restrict__limits { flex-direction: column; gap: .9rem; } .butler-offer__card { padding: 2rem 1.5rem; } }
@media (max-width: 600px) { .partners-page__grid { grid-template-columns: repeat(2, 1fr); } .partner-integration { grid-template-columns: auto 1fr; gap: 1rem; } .partner-integration__link { grid-column: 1 / -1; } }
@media (max-width: 640px) { .preview-status { grid-template-columns: 1fr; } .footer__inner { grid-template-columns: 1fr; } .footer__brand { grid-column: auto; } }