:root {
    --primary: #0f5bd7;
    --primary-dark: #0a3f9f;
    --primary-soft: #eaf2ff;
    --secondary: #11b98f;
    --secondary-dark: #07846a;
    --navy: #071a33;
    --navy-2: #0b2b56;
    --text: #15243a;
    --muted: #617089;
    --border: #dfe7f1;
    --surface: #ffffff;
    --surface-soft: #f5f8fc;
    --warning: #f7b731;
    --danger: #d64545;
    --shadow-sm: 0 10px 30px rgba(23, 49, 84, .08);
    --shadow-md: 0 22px 55px rgba(23, 49, 84, .13);
    --shadow-lg: 0 35px 90px rgba(3, 25, 55, .2);
    --radius-sm: 14px;
    --radius-md: 22px;
    --radius-lg: 32px;
    --transition: 240ms ease;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;
    color: var(--text);
    background: #fff;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.is-rtl {
    direction: rtl;
    text-align: right;
    font-family: "Tajawal", sans-serif;
}

body.is-ltr {
    direction: ltr;
    text-align: left;
}

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

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

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition), background var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

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

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 3px solid rgba(15, 91, 215, .3);
    outline-offset: 3px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    color: var(--text);
    font-weight: 800;
    line-height: 1.25;
}

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

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.container {
    max-width: 1180px;
}

.skip-link {
    position: fixed;
    top: 14px;
    inset-inline-start: 14px;
    z-index: 10000;
    padding: 10px 16px;
    border-radius: 10px;
    color: #fff;
    background: var(--navy);
    transform: translateY(-160%);
}

.skip-link:focus {
    transform: translateY(0);
}

.page-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    background: #fff;
    transition: opacity .35s ease, visibility .35s ease;
}

.page-loader.is-hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-mark {
    display: flex;
    gap: 7px;
    align-items: flex-end;
    height: 44px;
}

.loader-mark span {
    display: block;
    width: 8px;
    border-radius: 10px;
    background: linear-gradient(180deg, var(--primary), var(--secondary));
    animation: loaderWave .8s ease-in-out infinite alternate;
}

.loader-mark span:nth-child(1) { height: 20px; }
.loader-mark span:nth-child(2) { height: 36px; animation-delay: .12s; }
.loader-mark span:nth-child(3) { height: 28px; animation-delay: .24s; }

@keyframes loaderWave {
    to { transform: translateY(-10px); opacity: .65; }
}

.site-header {
    position: fixed;
    top: 0;
    inset-inline: 0;
    z-index: 1030;
    padding: 14px 0;
    transition: padding var(--transition), background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}

.site-header.is-scrolled {
    padding: 8px 0;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 12px 35px rgba(22, 49, 84, .09);
    backdrop-filter: blur(16px);
}

.site-header .navbar {
    padding: 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    margin: 0;
}

.navbar-brand img {
    width: 154px;
    max-height: 48px;
    object-fit: contain;
}

.navbar-toggler {
    display: inline-grid;
    width: 46px;
    height: 46px;
    padding: 0;
    place-items: center;
    border: 1px solid rgba(15, 91, 215, .18);
    border-radius: 14px;
    color: var(--navy);
    background: rgba(255, 255, 255, .88);
}

.navbar-toggler:focus {
    outline: none;
}

.navbar-nav {
    gap: 4px;
}

.navbar-nav .nav-link {
    position: relative;
    padding: 11px 12px !important;
    color: #354760;
    font-size: 14px;
    font-weight: 700;
}

.navbar-nav .nav-link::after {
    position: absolute;
    right: 12px;
    bottom: 4px;
    left: 12px;
    height: 2px;
    content: "";
    border-radius: 99px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transform-origin: center;
    transition: transform var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}

.header-actions {
    gap: 8px;
}

.language-switcher {
    margin-inline-end: 2px;
}

.language-button {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 42px;
    padding: 7px 10px;
    border: 1px solid var(--border);
    border-radius: 12px;
    color: #40516a;
    background: rgba(255, 255, 255, .9);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}

.language-button img,
.language-switcher .dropdown-item img {
    border-radius: 50%;
    object-fit: cover;
}

.language-switcher .dropdown-menu {
    min-width: 175px;
    padding: 8px;
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: var(--shadow-md);
}

.language-switcher .dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 11px;
    border-radius: 9px;
    color: var(--text);
    font-size: 14px;
    font-weight: 600;
}

.language-switcher .dropdown-item:hover {
    color: var(--primary);
    background: var(--primary-soft);
}

.btn {
    border-radius: 13px;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.2;
}

.btn-login {
    padding: 12px 14px;
    color: var(--navy);
    background: transparent;
}

.btn-login:hover {
    color: var(--primary);
    background: var(--primary-soft);
}

.btn-primary-pro,
.btn-secondary-pro,
.btn-light-pro {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 19px;
    border: 1px solid transparent;
}

.btn-primary-pro {
    color: #fff !important;
    background: linear-gradient(135deg, var(--primary), #2775ed 52%, var(--secondary));
    box-shadow: 0 12px 28px rgba(15, 91, 215, .26);
}

.btn-primary-pro:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(15, 91, 215, .34);
}

.btn-secondary-pro {
    color: var(--navy) !important;
    border-color: rgba(7, 26, 51, .12);
    background: rgba(255, 255, 255, .9);
    box-shadow: 0 10px 25px rgba(10, 42, 82, .08);
}

.btn-secondary-pro:hover {
    color: var(--primary) !important;
    border-color: rgba(15, 91, 215, .28);
    transform: translateY(-2px);
}

.btn-light-pro {
    color: var(--navy) !important;
    background: #fff;
    box-shadow: 0 15px 35px rgba(3, 22, 49, .2);
}

.btn-light-pro:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 45px rgba(3, 22, 49, .27);
}

.btn-lg-pro {
    min-height: 54px;
    padding: 15px 24px;
    border-radius: 15px;
    font-size: 16px;
}

.hero-section {
    position: relative;
    overflow: hidden;
    padding: 122px 0 52px;
    background:
        radial-gradient(circle at 13% 16%, rgba(17, 185, 143, .16), transparent 31%),
        radial-gradient(circle at 84% 18%, rgba(15, 91, 215, .18), transparent 34%),
        linear-gradient(180deg, #f8fbff 0%, #fff 82%);
}

.hero-grid-pattern,
.section-dark-grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(15, 91, 215, .045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 91, 215, .045) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,.9), transparent 88%);
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
    pointer-events: none;
}

.hero-orb-one {
    top: 120px;
    inset-inline-start: -130px;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(15, 91, 215, .15);
    box-shadow: inset 0 0 70px rgba(15, 91, 215, .05);
}

.hero-orb-two {
    right: -120px;
    bottom: 55px;
    width: 270px;
    height: 270px;
    background: rgba(17, 185, 143, .06);
}

.min-vh-hero {
    min-height: 690px;
}

.hero-copy {
    position: relative;
    z-index: 3;
    padding-top: 20px;
    padding-bottom: 20px;
}

.eyebrow-badge,
.section-kicker,
.cta-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .02em;
}

.eyebrow-badge {
    margin-bottom: 19px;
    padding: 9px 13px;
    border: 1px solid rgba(15, 91, 215, .16);
    border-radius: 999px;
    background: rgba(255, 255, 255, .78);
    box-shadow: 0 8px 24px rgba(15, 91, 215, .08);
    backdrop-filter: blur(10px);
}

.eyebrow-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--secondary);
    box-shadow: 0 0 0 5px rgba(17, 185, 143, .13);
}

.hero-copy h1 {
    max-width: 650px;
    margin-bottom: 22px;
    color: var(--navy);
    font-size: clamp(38px, 5vw, 64px);
    font-weight: 800;
    letter-spacing: -.035em;
}

.is-rtl .hero-copy h1 {
    letter-spacing: 0;
}

.hero-description {
    max-width: 650px;
    margin-bottom: 29px;
    color: #53647c;
    font-size: 18px;
    line-height: 1.9;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 22px;
}

.hero-reassurance {
    display: flex;
    flex-wrap: wrap;
    gap: 9px 17px;
    margin-bottom: 28px;
}

.hero-reassurance span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #4a5c73;
    font-size: 13px;
    font-weight: 700;
}

.hero-reassurance i {
    color: var(--secondary);
}

.store-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.store-button {
    display: inline-flex;
    min-width: 160px;
    align-items: center;
    gap: 11px;
    padding: 10px 14px;
    border: 1px solid rgba(7, 26, 51, .1);
    border-radius: 13px;
    color: #fff;
    background: var(--navy);
    box-shadow: 0 12px 26px rgba(7, 26, 51, .16);
}

.store-button:hover {
    color: #fff;
    transform: translateY(-2px);
    background: var(--navy-2);
}

.store-button > i {
    width: 30px;
    font-size: 29px;
    text-align: center;
}

.store-button span {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.store-button small {
    color: rgba(255, 255, 255, .7);
    font-size: 9px;
    text-transform: uppercase;
}

.store-button strong {
    font-size: 14px;
}

.hero-visual {
    position: relative;
    z-index: 2;
    padding-top: 25px;
    padding-bottom: 25px;
}

.product-showcase {
    position: relative;
    max-width: 570px;
    margin-inline: auto;
    padding: 34px 18px 34px 34px;
}

.is-rtl .product-showcase {
    padding: 34px 34px 34px 18px;
}

.showcase-glow {
    position: absolute;
    inset: 12% 6% 7% 7%;
    border-radius: 45%;
    background: radial-gradient(circle, rgba(15, 91, 215, .2), rgba(17, 185, 143, .08) 52%, transparent 72%);
    filter: blur(30px);
}

.browser-frame {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .9);
    border-radius: 24px;
    background: #fff;
    box-shadow: var(--shadow-lg);
    transform: perspective(1100px) rotateY(-5deg) rotateX(1deg);
}

.is-rtl .browser-frame {
    transform: perspective(1100px) rotateY(5deg) rotateX(1deg);
}

.browser-toolbar {
    display: flex;
    align-items: center;
    gap: 12px;
    height: 48px;
    padding: 0 15px;
    border-bottom: 1px solid #e7edf5;
    background: #f8fafc;
}

.browser-dots {
    display: flex;
    gap: 5px;
}

.browser-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #c8d2df;
}

.browser-dots span:first-child { background: #ff776d; }
.browser-dots span:nth-child(2) { background: #ffc65a; }
.browser-dots span:nth-child(3) { background: #49ce92; }

.browser-address {
    flex: 1;
    overflow: hidden;
    padding: 6px 12px;
    border-radius: 8px;
    color: #8090a4;
    background: #eef3f8;
    font-size: 11px;
    text-align: center;
    white-space: nowrap;
}

.browser-toolbar > i {
    color: var(--secondary);
    font-size: 11px;
}

.browser-content {
    max-height: 570px;
    overflow: hidden;
    background: linear-gradient(180deg, #eff5ff, #fff);
}

.browser-content img {
    display: block;
    width: 100%;
    height: 570px;
    object-fit: contain;
    object-position: center top;
}

.floating-card {
    position: absolute;
    z-index: 4;
    display: flex;
    min-width: 220px;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, .9);
    border-radius: 15px;
    background: rgba(255, 255, 255, .94);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(14px);
    animation: floatCard 4.8s ease-in-out infinite;
}

.floating-card-one {
    top: 14%;
    inset-inline-start: -18px;
}

.floating-card-two {
    right: -8px;
    bottom: 12%;
    animation-delay: 1.1s;
}

.is-rtl .floating-card-two {
    right: auto;
    left: -8px;
}

.floating-icon {
    display: grid;
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 12px;
    color: var(--primary);
    background: var(--primary-soft);
}

.floating-icon.success {
    color: var(--secondary-dark);
    background: rgba(17, 185, 143, .12);
}

.floating-card div:last-child {
    display: flex;
    flex-direction: column;
}

.floating-card strong {
    color: var(--text);
    font-size: 13px;
}

.floating-card span {
    color: var(--muted);
    font-size: 11px;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.trust-strip {
    position: relative;
    z-index: 5;
    padding: 0 0 44px;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    min-height: 84px;
    padding: 18px;
    border-inline-end: 1px solid var(--border);
    color: #3d4e65;
    font-size: 14px;
    font-weight: 800;
    text-align: center;
}

.trust-item:last-child {
    border-inline-end: 0;
}

.trust-item i {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 11px;
    color: var(--primary);
    background: var(--primary-soft);
    font-size: 16px;
}

.section {
    position: relative;
    padding: 100px 0;
}

.section-soft {
    background: var(--surface-soft);
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 52px;
    text-align: center;
}

.section-heading h2,
.section-heading-row h2,
.content-panel h2,
.faq-intro h2,
.contact-info-panel h2,
.cta-card h2 {
    margin: 12px 0 16px;
    color: var(--navy);
    font-size: clamp(30px, 4vw, 46px);
    font-weight: 800;
    letter-spacing: -.025em;
}

.is-rtl .section-heading h2,
.is-rtl .section-heading-row h2,
.is-rtl .content-panel h2,
.is-rtl .faq-intro h2,
.is-rtl .contact-info-panel h2,
.is-rtl .cta-card h2 {
    letter-spacing: 0;
}

.section-heading p,
.section-heading-row p,
.content-panel > p,
.faq-intro > p,
.contact-info-panel > p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.9;
}

.feature-grid {
    margin: -12px;
}

.feature-grid > div {
    padding: 12px;
}

.feature-card {
    position: relative;
    width: 100%;
    min-height: 275px;
    overflow: hidden;
    padding: 30px;
    border: 1px solid #e1e8f1;
    border-radius: var(--radius-md);
    background: #fff;
    box-shadow: 0 12px 35px rgba(25, 52, 88, .055);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.feature-card::before {
    position: absolute;
    top: 0;
    inset-inline-start: 0;
    width: 100%;
    height: 4px;
    content: "";
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(.24);
    transform-origin: inline-start;
    transition: transform var(--transition);
}

.feature-card:hover {
    border-color: rgba(15, 91, 215, .24);
    transform: translateY(-7px);
    box-shadow: var(--shadow-md);
}

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

.feature-icon,
.step-icon,
.solution-icon {
    display: grid;
    width: 58px;
    height: 58px;
    margin-bottom: 22px;
    place-items: center;
    border-radius: 17px;
    color: var(--primary);
    background: linear-gradient(135deg, var(--primary-soft), #f4f8ff);
    box-shadow: inset 0 0 0 1px rgba(15, 91, 215, .08);
    font-size: 23px;
}

.feature-card h3,
.step-card h3,
.solution-card h3 {
    margin-bottom: 12px;
    font-size: 20px;
}

.feature-card p,
.step-card p,
.solution-card p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.85;
}

.card-number {
    position: absolute;
    right: 24px;
    bottom: 14px;
    color: rgba(15, 91, 215, .07);
    font-size: 52px;
    font-weight: 800;
    line-height: 1;
}

.is-rtl .card-number {
    right: auto;
    left: 24px;
}

.steps-wrapper {
    position: relative;
}

.steps-line {
    position: absolute;
    top: 60px;
    right: 15%;
    left: 15%;
    height: 1px;
    border-top: 2px dashed rgba(15, 91, 215, .18);
}

.step-card {
    position: relative;
    z-index: 2;
    width: 100%;
    min-height: 290px;
    margin: 10px 0;
    padding: 32px 28px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: #fff;
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.step-number {
    position: absolute;
    top: 18px;
    inset-inline-end: 20px;
    color: rgba(15, 91, 215, .11);
    font-size: 34px;
    font-weight: 800;
}

.step-icon {
    margin: 0 auto 20px;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    box-shadow: 0 14px 25px rgba(15, 91, 215, .22);
}

.invoice-section {
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 85%, rgba(17, 185, 143, .1), transparent 30%),
        radial-gradient(circle at 92% 15%, rgba(15, 91, 215, .1), transparent 30%),
        #fbfdff;
}

.invoice-visual-card {
    position: relative;
    padding: 22px;
    border: 1px solid rgba(15, 91, 215, .13);
    border-radius: var(--radius-lg);
    background: linear-gradient(145deg, #0b2b56, #0c3f83);
    box-shadow: var(--shadow-lg);
}

.invoice-visual-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 999px;
    color: #dffcf4;
    background: rgba(17, 185, 143, .18);
    font-size: 12px;
}

.invoice-paper {
    padding: 30px;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 20px 45px rgba(1, 16, 40, .24);
}

.invoice-paper-head,
.invoice-meta-grid,
.invoice-line,
.invoice-total {
    display: grid;
    align-items: center;
}

.invoice-paper-head {
    grid-template-columns: 1fr auto;
    gap: 20px;
    padding-bottom: 22px;
    border-bottom: 1px solid #e5ebf3;
}

.invoice-paper-head img {
    max-width: 130px;
    object-fit: contain;
}

.invoice-code {
    display: flex;
    flex-direction: column;
    text-align: end;
}

.invoice-code span,
.invoice-meta-grid span {
    color: #8694a7;
    font-size: 11px;
}

.invoice-code strong {
    color: var(--navy);
    font-size: 14px;
}

.invoice-meta-grid {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    padding: 22px 0;
}

.invoice-meta-grid > div {
    display: flex;
    flex-direction: column;
}

.invoice-meta-grid strong {
    color: var(--text);
    font-size: 13px;
}

.invoice-lines {
    overflow: hidden;
    border: 1px solid #e4eaf2;
    border-radius: 12px;
}

.invoice-line {
    grid-template-columns: 1fr 80px 90px;
    gap: 8px;
    padding: 11px 14px;
    border-bottom: 1px solid #edf1f6;
    color: #43536a;
    font-size: 12px;
}

.invoice-line:last-child {
    border-bottom: 0;
}

.invoice-line span:nth-child(2),
.invoice-line span:nth-child(3) {
    text-align: center;
}

.invoice-line-head {
    color: var(--navy);
    background: #f3f7fc;
    font-weight: 800;
}

.invoice-total {
    grid-template-columns: 1fr auto;
    margin-top: 17px;
    padding: 16px;
    border-radius: 12px;
    background: linear-gradient(90deg, var(--primary-soft), rgba(17, 185, 143, .09));
}

.invoice-total span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
}

.invoice-total strong {
    color: var(--primary-dark);
    font-size: 18px;
}

.content-panel {
    padding-inline-start: 42px;
}

.is-rtl .content-panel {
    padding-inline-start: 0;
    padding-inline-end: 42px;
}

.check-list {
    margin: 28px 0 31px;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: #3d4e65;
    font-size: 15px;
    font-weight: 700;
}

.check-list i {
    display: grid;
    flex: 0 0 auto;
    width: 25px;
    height: 25px;
    margin-top: 1px;
    place-items: center;
    border-radius: 50%;
    color: var(--secondary-dark);
    background: rgba(17, 185, 143, .13);
    font-size: 10px;
}

.compliance-note {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-top: 17px;
    color: #718096;
    font-size: 12px;
    line-height: 1.7;
}

.compliance-note i {
    margin-top: 4px;
    color: var(--primary);
}

.section-dark {
    overflow: hidden;
    color: #fff;
    background: linear-gradient(145deg, #071a33, #0b2b56 58%, #0b4770);
}

.section-dark-grid {
    opacity: .45;
    background-image:
        linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
    mask-image: linear-gradient(to bottom, rgba(0,0,0,.8), transparent);
}

.section-heading-light h2,
.section-heading-light p {
    color: #fff;
}

.section-heading-light p {
    color: rgba(255, 255, 255, .7);
}

.section-dark .section-kicker {
    color: #65e5c6;
}

.solution-grid {
    margin: -10px;
}

.solution-grid > div {
    padding: 10px;
}

.solution-card {
    width: 100%;
    min-height: 300px;
    padding: 27px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 20px;
    background: rgba(255, 255, 255, .055);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06);
    backdrop-filter: blur(12px);
    transition: transform var(--transition), background var(--transition), border-color var(--transition);
}

.solution-card:hover {
    border-color: rgba(101, 229, 198, .35);
    background: rgba(255, 255, 255, .09);
    transform: translateY(-7px);
}

.solution-icon {
    color: #77efd1;
    background: rgba(101, 229, 198, .11);
    box-shadow: inset 0 0 0 1px rgba(101, 229, 198, .14);
}

.solution-card h3 {
    color: #fff;
}

.solution-card p {
    color: rgba(255, 255, 255, .68);
}

.section-heading-row {
    margin-bottom: 40px;
}

.section-heading-row p {
    padding-bottom: 4px;
}

.sector-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}

.sector-card {
    display: flex;
    min-height: 145px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 20px 12px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(23, 49, 84, .05);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.sector-card:hover {
    border-color: rgba(15, 91, 215, .25);
    transform: translateY(-5px);
    box-shadow: var(--shadow-sm);
}

.sector-card i {
    display: grid;
    width: 50px;
    height: 50px;
    place-items: center;
    border-radius: 15px;
    color: var(--primary);
    background: var(--primary-soft);
    font-size: 20px;
}

.sector-card span {
    color: #33465f;
    font-size: 14px;
    font-weight: 800;
    text-align: center;
}

.screenshots-scroll {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    padding: 16px 8px 28px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: rgba(15, 91, 215, .35) transparent;
}

.screenshots-scroll::-webkit-scrollbar {
    height: 7px;
}

.screenshots-scroll::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: rgba(15, 91, 215, .35);
}

.screenshot-card {
    position: relative;
    flex: 0 0 250px;
    overflow: hidden;
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 18px 42px rgba(23, 49, 84, .11);
    scroll-snap-align: center;
}

.screenshot-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-md);
}

.screenshot-card img {
    display: block;
    width: 100%;
    height: 470px;
    border-radius: 20px;
    object-fit: cover;
    object-position: top;
}

.screenshot-index {
    position: absolute;
    z-index: 2;
    top: 20px;
    inset-inline-start: 20px;
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .7);
    border-radius: 50%;
    color: #fff;
    background: rgba(7, 26, 51, .72);
    font-size: 11px;
    font-weight: 800;
    backdrop-filter: blur(8px);
}

.screenshot-zoom {
    position: absolute;
    z-index: 2;
    right: 20px;
    bottom: 20px;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 13px;
    color: #fff;
    background: var(--primary);
    box-shadow: 0 10px 22px rgba(15, 91, 215, .28);
}

.is-rtl .screenshot-zoom {
    right: auto;
    left: 20px;
}

.faq-intro {
    position: sticky;
    top: 118px;
    padding-inline-end: 40px;
}

.is-rtl .faq-intro {
    padding-inline-end: 0;
    padding-inline-start: 40px;
}

.faq-help-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 13px;
    align-items: center;
    margin-top: 30px;
    padding: 17px;
    border: 1px solid rgba(15, 91, 215, .13);
    border-radius: 16px;
    background: var(--primary-soft);
}

.faq-help-icon {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border-radius: 13px;
    color: #fff;
    background: var(--primary);
}

.faq-help-card div:nth-child(2) {
    display: flex;
    flex-direction: column;
}

.faq-help-card strong {
    color: var(--navy);
    font-size: 13px;
}

.faq-help-card span {
    color: var(--muted);
    font-size: 11px;
}

.faq-help-card > a {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border-radius: 11px;
    color: var(--primary);
    background: #fff;
}

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

.faq-item {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 17px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(23, 49, 84, .045);
}

.faq-question {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr auto;
    gap: 16px;
    align-items: center;
    padding: 21px 23px;
    border: 0;
    color: var(--navy);
    background: #fff;
    font-size: 16px;
    font-weight: 800;
    text-align: start;
    cursor: pointer;
}

.faq-question i {
    display: grid;
    width: 32px;
    height: 32px;
    place-items: center;
    border-radius: 10px;
    color: #fff;
    background: var(--primary);
    font-size: 11px;
    transition: transform var(--transition), background var(--transition);
}

.faq-question:not(.collapsed) i {
    background: var(--secondary);
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 23px 23px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.95;
}

.cta-section {
    padding: 30px 0 90px;
}

.cta-card {
    position: relative;
    overflow: hidden;
    padding: 50px 54px;
    border-radius: 30px;
    color: #fff;
    background: linear-gradient(135deg, #0a438f, var(--primary) 52%, #0f9e80);
    box-shadow: 0 28px 65px rgba(15, 91, 215, .26);
}

.cta-decoration {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 50%;
}

.cta-decoration-one {
    top: -120px;
    right: -60px;
    width: 290px;
    height: 290px;
}

.cta-decoration-two {
    left: -40px;
    bottom: -140px;
    width: 260px;
    height: 260px;
}

.cta-kicker {
    color: #bff8e9;
}

.cta-card h2 {
    margin-top: 9px;
    color: #fff;
}

.cta-card p {
    max-width: 760px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, .76);
    font-size: 16px;
}

.contact-section {
    background: #fbfdff;
}

.contact-info-panel {
    padding-inline-end: 34px;
}

.is-rtl .contact-info-panel {
    padding-inline-end: 0;
    padding-inline-start: 34px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 30px;
}

.contact-method {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 13px;
    align-items: center;
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(23, 49, 84, .04);
}

a.contact-method:hover {
    border-color: rgba(15, 91, 215, .25);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.contact-method-icon {
    display: grid;
    width: 45px;
    height: 45px;
    place-items: center;
    border-radius: 13px;
    color: var(--primary);
    background: var(--primary-soft);
}

.contact-method > span:last-child {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.contact-method small {
    color: var(--muted);
    font-size: 11px;
}

.contact-method strong {
    overflow-wrap: anywhere;
    color: var(--text);
    font-size: 13px;
}

.contact-form-card {
    padding: 32px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: #fff;
    box-shadow: var(--shadow-md);
}

.contact-form-card label {
    display: block;
    margin-bottom: 7px;
    color: #33465f;
    font-size: 13px;
    font-weight: 800;
}

.form-control {
    height: 52px;
    margin-bottom: 20px;
    padding: 12px 15px;
    border: 1px solid #d9e3ee;
    border-radius: 13px;
    color: var(--text);
    background: #fbfdff;
    font-size: 14px;
    box-shadow: none;
    transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.form-control:focus {
    border-color: rgba(15, 91, 215, .58);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(15, 91, 215, .09);
}

textarea.form-control {
    min-height: 140px;
    resize: vertical;
}

.form-submit-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 2px;
}

.form-submit-row p {
    display: flex;
    align-items: center;
    gap: 7px;
    margin: 0;
    color: #7b899b;
    font-size: 11px;
}

.form-submit-row p i {
    color: var(--secondary-dark);
}

.honeypot {
    position: absolute !important;
    overflow: hidden !important;
    width: 1px !important;
    height: 1px !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
}

.alert {
    margin-bottom: 22px;
    border: 0;
    border-radius: 13px;
    font-size: 13px;
}

.alert ul {
    margin-top: 8px;
    padding-inline-start: 19px;
    list-style: disc;
}

.site-footer {
    padding-top: 72px;
    color: rgba(255, 255, 255, .72);
    background: var(--navy);
}

.footer-main {
    padding-bottom: 50px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 160px;
    object-fit: contain;
}

.site-footer p {
    max-width: 460px;
    color: rgba(255, 255, 255, .62);
    font-size: 14px;
}

.footer-apps {
    display: flex;
    gap: 9px;
    margin-top: 22px;
}

.footer-apps a {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 12px;
    color: #fff;
    background: rgba(255, 255, 255, .055);
}

.footer-apps a:hover {
    border-color: rgba(101, 229, 198, .5);
    color: #65e5c6;
    transform: translateY(-3px);
}

.site-footer h3 {
    margin: 7px 0 21px;
    color: #fff;
    font-size: 15px;
}

.site-footer li {
    margin-bottom: 11px;
}

.site-footer li a {
    color: rgba(255, 255, 255, .62);
    font-size: 13px;
}

.site-footer li a:hover {
    color: #65e5c6;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer-bottom p {
    margin: 0;
    font-size: 12px;
}

.whatsapp-float {
    position: fixed;
    z-index: 1020;
    right: 20px;
    bottom: 20px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 50px;
    padding: 10px 15px;
    border-radius: 999px;
    color: #fff;
    background: #1fb86a;
    box-shadow: 0 14px 35px rgba(31, 184, 106, .34);
    font-size: 13px;
    font-weight: 800;
}

.is-rtl .whatsapp-float {
    right: auto;
    left: 20px;
}

.whatsapp-float:hover {
    color: #fff;
    background: #159957;
    transform: translateY(-3px);
}

.whatsapp-float i {
    font-size: 22px;
}

.back-to-top {
    position: fixed;
    z-index: 1010;
    right: 24px;
    bottom: 82px;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 0;
    border-radius: 13px;
    color: #fff;
    background: var(--navy);
    box-shadow: var(--shadow-sm);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity var(--transition), visibility var(--transition), transform var(--transition), background var(--transition);
    cursor: pointer;
}

.is-rtl .back-to-top {
    right: auto;
    left: 24px;
}

.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary);
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s ease var(--reveal-delay, 0ms), transform .7s ease var(--reveal-delay, 0ms);
}

.reveal.reveal-delay-1 {
    --reveal-delay: 120ms;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.overflow-hidden {
    overflow: hidden;
}

@media (max-width: 1199.98px) {
    .navbar-nav .nav-link {
        padding-inline: 8px !important;
        font-size: 13px;
    }

    .header-actions {
        gap: 5px;
    }

    .language-button span {
        display: none;
    }

    .product-showcase {
        padding-inline: 12px;
    }

    .floating-card-one {
        inset-inline-start: -5px;
    }

    .floating-card-two {
        right: 0;
    }

    .is-rtl .floating-card-two {
        left: 0;
    }

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

@media (max-width: 991.98px) {
    .site-header {
        padding: 9px 0;
        background: rgba(255, 255, 255, .96);
        box-shadow: 0 8px 28px rgba(22, 49, 84, .07);
        backdrop-filter: blur(14px);
    }

    .navbar-collapse {
        max-height: calc(100vh - 78px);
        overflow-y: auto;
        margin-top: 10px;
        padding: 16px;
        border: 1px solid var(--border);
        border-radius: 18px;
        background: #fff;
        box-shadow: var(--shadow-md);
    }

    .navbar-nav {
        align-items: stretch !important;
    }

    .navbar-nav .nav-link {
        padding: 11px !important;
    }

    .navbar-nav .nav-link::after {
        display: none;
    }

    .header-actions {
        flex-wrap: wrap;
        margin-top: 10px;
        padding-top: 14px;
        border-top: 1px solid var(--border);
    }

    .language-button span {
        display: inline;
    }

    .header-actions .btn-primary-pro {
        flex: 1;
    }

    .hero-section {
        padding-top: 110px;
    }

    .min-vh-hero {
        min-height: auto;
    }

    .hero-copy {
        padding-top: 45px;
        text-align: center;
    }

    .hero-copy h1,
    .hero-description {
        margin-inline: auto;
    }

    .hero-actions,
    .hero-reassurance,
    .store-links {
        justify-content: center;
    }

    .hero-visual {
        margin-top: 20px;
    }

    .product-showcase {
        max-width: 620px;
    }

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

    .trust-item:nth-child(2) {
        border-inline-end: 0;
    }

    .trust-item:nth-child(-n+2) {
        border-bottom: 1px solid var(--border);
    }

    .section {
        padding: 82px 0;
    }

    .steps-line {
        display: none;
    }

    .content-panel,
    .is-rtl .content-panel {
        margin-top: 44px;
        padding: 0;
    }

    .solution-card {
        min-height: 255px;
    }

    .faq-intro,
    .is-rtl .faq-intro {
        position: static;
        margin-bottom: 34px;
        padding: 0;
    }

    .cta-card {
        padding: 42px 38px;
        text-align: center;
    }

    .cta-card p {
        margin-inline: auto;
    }

    .cta-card .btn {
        margin-top: 25px;
    }

    .contact-info-panel,
    .is-rtl .contact-info-panel {
        margin-bottom: 35px;
        padding: 0;
    }

    .footer-main .col-lg-5 {
        margin-bottom: 34px;
    }
}

@media (max-width: 767.98px) {
    body {
        font-size: 15px;
    }

    .navbar-brand img {
        width: 135px;
    }

    .hero-section {
        padding-top: 96px;
    }

    .hero-copy h1 {
        font-size: 39px;
    }

    .hero-description {
        font-size: 16px;
    }

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

    .hero-reassurance {
        flex-direction: column;
        align-items: center;
    }

    .product-showcase {
        padding: 20px 4px 30px;
    }

    .browser-frame,
    .is-rtl .browser-frame {
        transform: none;
    }

    .browser-content,
    .browser-content img {
        height: 470px;
    }

    .floating-card {
        position: relative;
        inset: auto !important;
        width: calc(100% - 32px);
        min-width: 0;
        margin: -15px auto 0;
        animation: none;
    }

    .floating-card-two {
        margin-top: 10px;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }

    .trust-item {
        min-height: 70px;
        justify-content: flex-start;
        border-inline-end: 0;
        border-bottom: 1px solid var(--border);
        text-align: start;
    }

    .trust-item:last-child {
        border-bottom: 0;
    }

    .section {
        padding: 70px 0;
    }

    .section-heading {
        margin-bottom: 38px;
    }

    .section-heading h2,
    .section-heading-row h2,
    .content-panel h2,
    .faq-intro h2,
    .contact-info-panel h2,
    .cta-card h2 {
        font-size: 32px;
    }

    .feature-card {
        min-height: auto;
    }

    .invoice-paper {
        padding: 19px;
    }

    .invoice-line {
        grid-template-columns: 1fr 58px 70px;
        padding-inline: 9px;
        font-size: 10px;
    }

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

    .sector-card {
        min-height: 130px;
    }

    .screenshot-card {
        flex-basis: 225px;
    }

    .screenshot-card img {
        height: 430px;
    }

    .cta-section {
        padding-bottom: 70px;
    }

    .cta-card {
        padding: 35px 24px;
        border-radius: 24px;
    }

    .contact-form-card {
        padding: 23px;
    }

    .form-submit-row {
        flex-direction: column;
        align-items: stretch;
    }

    .form-submit-row p {
        justify-content: center;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .whatsapp-float span {
        display: none;
    }

    .whatsapp-float {
        width: 52px;
        height: 52px;
        justify-content: center;
        padding: 0;
    }
}

@media (max-width: 479.98px) {
    .container {
        padding-right: 18px;
        padding-left: 18px;
    }

    .hero-copy h1 {
        font-size: 34px;
    }

    .eyebrow-badge {
        font-size: 11px;
    }

    .browser-content,
    .browser-content img {
        height: 410px;
    }

    .invoice-paper-head {
        grid-template-columns: 1fr;
    }

    .invoice-code {
        text-align: start;
    }

    .invoice-meta-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .sector-grid {
        grid-template-columns: 1fr 1fr;
        gap: 9px;
    }

    .sector-card {
        padding-inline: 8px;
    }

    .faq-question {
        padding: 18px;
        font-size: 14px;
    }

    .faq-answer {
        padding: 0 18px 18px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}
