@font-face {
    font-family: "jazeera";
    src: url("fonts/jazeera.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --bg: #f7f9fc;
    --bg-soft: #eef5ff;
    --text: #13213a;
    --muted: #66758f;
    --primary: #0757c7;
    --primary-dark: #063b91;
    --primary-soft: #eaf2ff;
    --orange: #ff7a1a;
    --orange-dark: #e45f00;
    --orange-soft: #fff1e8;
    --gray: #eef1f6;
    --card: #ffffff;
    --border: #dfe7f3;
    --success: #118a4e;
    --warning: #a76800;
    --danger: #b42318;
    --shadow: 0 18px 55px rgba(14, 44, 90, .10);
    --shadow-sm: 0 10px 30px rgba(14, 44, 90, .08);
    --radius: 24px;
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: "jazeera", Tahoma, Arial, sans-serif;
    background:
        radial-gradient(circle at top right, rgba(7, 87, 199, .08), transparent 30rem),
        radial-gradient(circle at top left, rgba(255, 122, 26, .08), transparent 26rem),
        var(--bg);
    color: var(--text);
    line-height: 1.75;
}

body.ltr {
    font-family: Arial, Tahoma, sans-serif
}

.container {
    width: min(1180px, 92%);
    margin: auto
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: .18s ease
}

a:hover {
    color: var(--orange)
}

.site-header {
    background: rgba(255, 255, 255, .88);
    border-bottom: 1px solid rgba(223, 231, 243, .85);
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: saturate(180%) blur(16px);
    box-shadow: 0 8px 24px rgba(14, 44, 90, .05);
}

.nav-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    min-height: 78px
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--primary-dark);
    font-weight: 900;
    font-size: 22px;
    letter-spacing: -.3px
}

.brand-logo {
    width: auto;
    height: 52px;
    max-width: 78px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 10px 14px rgba(7, 87, 199, .10))
}

.brand span {
    line-height: 1.2
}

.logo-box {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 15px;
    background: linear-gradient(135deg, var(--primary), var(--orange));
    color: #fff;
    font-weight: 900
}

.nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center
}

.nav a {
    color: #283955;
    text-decoration: none;
    font-weight: 800;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 15px
}

.nav a:hover {
    background: var(--primary-soft);
    color: var(--primary)
}

.nav .btn,
.nav a.btn {
    background: linear-gradient(135deg, var(--primary), #0b6eea);
    color: #fff !important;
    box-shadow: 0 10px 24px rgba(7, 87, 199, .24);
    padding: 10px 16px
}

.nav .lang {
    border: 1px solid var(--border);
    background: #fff;
    color: var(--primary);
    font-weight: 900
}

main {
    padding: 24px 0 44px;
    min-height: 70vh;
}

.rtl {
    text-align: right
}

.ltr {
    text-align: left
}

.hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, .86fr);
    gap: 38px;
    align-items: center;
    padding: 64px 0 42px
}

.hero::before {
    content: "";
    position: absolute;
    inset: 18px -10vw auto -10vw;
    height: 390px;
    background: linear-gradient(135deg, rgba(234, 242, 255, .95), rgba(255, 255, 255, .72));
    z-index: -1;
    border-bottom: 1px solid rgba(223, 231, 243, .7)
}

.hero-content {
    max-width: 620px
}

.eyebrow {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    padding: 7px 13px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    color: var(--primary);
    font-weight: 900;
    font-size: 14px
}

.hero h1 {
    font-size: clamp(34px, 5vw, 56px);
    line-height: 1.18;
    margin: 16px 0 12px;
    letter-spacing: -1.5px
}

.hero h1 .accent {
    display: block;
    color: var(--orange)
}

.lead {
    font-size: 19px;
    color: var(--muted);
    margin: 0 0 24px;
    max-width: 680px
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 22px
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary), #0b6eea);
    color: #fff !important;
    border: 0;
    border-radius: 16px;
    padding: 13px 22px;
    text-decoration: none;
    cursor: pointer;
    font-weight: 900;
    box-shadow: 0 14px 30px rgba(7, 87, 199, .20);
    min-height: 48px;
    font-size:18px;
}

.btn:hover {
    transform: translateY(-1px);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: #fff !important
}

.btn.secondary {
    background: #fff;
    color: var(--primary) !important;
    border: 1px solid rgba(7, 87, 199, .28);
    box-shadow: none
}

.btn.secondary:hover {
    background: var(--primary-soft)
}

.btn.orange {
    background: linear-gradient(135deg, var(--orange), #ff9a3d);
    box-shadow: 0 14px 32px rgba(255, 122, 26, .24)
}

.btn.orange:hover {
    background: linear-gradient(135deg, var(--orange-dark), var(--orange))
}

.btn.danger {
    background: var(--danger)
}

.btn.small {
    padding: 9px 14px;
    border-radius: 12px;
    font-size: 14px;
    min-height: auto
}

.hero-points {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 20px
}

.hero-points span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #40516c;
    font-weight: 800;
    background: rgba(255, 255, 255, .75);
    border: 1px solid var(--border);
    padding: 7px 12px;
    border-radius: 999px
}

.hero-points span::before {
    content: "✓";
    display: grid;
    place-items: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-size: 12px
}

.hero-visual {
    position: relative;
    min-height: 370px;
    border-radius: 34px;
    background: linear-gradient(145deg, #fff, #eaf3ff);
    border: 1px solid #dbe8f8;
    box-shadow: var(--shadow);
    overflow: hidden
}

.hero-visual::before {
    content: "";
    position: absolute;
    inset: -80px auto auto -80px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(255, 122, 26, .16)
}

.hero-visual::after {
    content: "";
    position: absolute;
    right: 22px;
    bottom: 20px;
    width: 140px;
    height: 140px;
    background-image: radial-gradient(rgba(7, 87, 199, .22) 1.5px, transparent 1.5px);
    background-size: 14px 14px
}

.dashboard-graphic {
    position: absolute;
    inset: 42px 34px auto 34px;
    height: 190px;
    border-radius: 28px;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: 0 24px 50px rgba(7, 87, 199, .16);
    padding: 22px
}

.graphic-top {
    display: flex;
    gap: 8px;
    margin-bottom: 22px
}

.graphic-top i {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray);
    display: block
}

.chart-line {
    height: 80px;
    border-radius: 18px;
    background: linear-gradient(180deg, #f6faff, #fff);
    position: relative;
    overflow: hidden
}

.chart-line::before {
    content: "";
    position: absolute;
    inset: 20px 16px 18px 16px;
    background: linear-gradient(135deg, transparent 0 18%, var(--primary) 19% 21%, transparent 22% 38%, var(--primary) 39% 41%, transparent 42% 60%, var(--orange) 61% 63%, transparent 64%);
    opacity: .82
}

.chart-line::after {
    content: "";
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    height: 1px;
    background: #dbe7f7;
    box-shadow: 0 -24px 0 #eef4fc, 0 -48px 0 #eef4fc
}

.floating-card {
    position: absolute;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 22px;
    box-shadow: var(--shadow-sm);
    display: grid;
    place-items: center;
    color: var(--primary);
    font-weight: 900
}

.floating-card.card-a {
    width: 108px;
    height: 78px;
    right: 28px;
    bottom: 50px
}

.floating-card.card-b {
    width: 120px;
    height: 86px;
    left: 34px;
    bottom: 76px;
    color: var(--orange)
}

.floating-card.card-c {
    width: 82px;
    height: 82px;
    left: 64px;
    top: 44px
}

.cube {
    position: absolute;
    right: 47%;
    bottom: 42px;
    width: 94px;
    height: 94px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--primary) 0 50%, var(--orange) 50% 100%);
    box-shadow: 0 18px 28px rgba(7, 87, 199, .18);
    transform: rotate(-6deg)
}

.cube::before {
    content: "";
    position: absolute;
    inset: 13px;
    background: rgba(255, 255, 255, .9);
    clip-path: polygon(50% 0, 100% 25%, 50% 50%, 0 25%)
}

.hero-card,
.card {
    background: rgba(255, 255, 255, .92);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 26px;
    box-shadow: var(--shadow-sm)
}

.section {
    padding: 34px 0
}

.section-head {
    text-align: center;
    margin: 0 auto 24px;
    max-width: 720px
}

.section-kicker {
    width: 56px;
    height: 4px;
    background: var(--orange);
    border-radius: 999px;
    margin: 0 auto 10px
}

.section-head h2,
.section-title {
    margin: 0 0 6px;
    color: var(--primary-dark);
    font-size: clamp(26px, 3vw, 36px);
    letter-spacing: -.5px
}

.section-head p {
    margin: 0;
    color: var(--muted)
}

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

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

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px
}

.service-card {
    display: flex;
    flex-direction: column;
    gap: 13px;
    position: relative;
    overflow: hidden
}

.service-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, var(--orange), var(--primary));
    opacity: .9
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow)
}

.service-icon {
    width: 58px;
    height: 58px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--primary-soft), #fff);
    border: 1px solid #d7e7ff;
    display: grid;
    place-items: center;
    color: var(--primary);
    font-size: 26px;
    font-weight: 900
}

.service-card h3 {
    margin: 0;
    color: var(--primary-dark);
    font-size: 20px
}

.muted {
    color: var(--muted)
}

.price {
    font-weight: 900;
    color: var(--primary);
    font-size: 20px
}

.badge {
    display: inline-flex;
    align-items: center;
    width: max-content;
    padding: 5px 11px;
    border-radius: 999px;
    background: #eef4ff;
    color: #234e92;
    font-size: 13px;
    font-weight: 900
}

.badge.success {
    background: #e9f8ef;
    color: var(--success)
}

.badge.warning {
    background: #fff6df;
    color: var(--warning)
}

.badge.danger {
    background: #ffeceb;
    color: var(--danger)
}

.steps-wrap {
    display: grid;
    grid-template-columns: .74fr 1.26fr;
    gap: 18px;
    align-items: stretch;
    background: linear-gradient(135deg, #fff, #f0f6ff);
    border: 1px solid var(--border);
    border-radius: 30px;
    padding: 18px;
    box-shadow: var(--shadow-sm)
}

.steps-intro {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: #fff;
    border-radius: 24px;
    padding: 26px
}

.steps-intro h2 {
    margin: 0 0 8px;
    font-size: 30px
}

.steps-intro p {
    margin: 0;
    color: #dce9ff
}

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

.step {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 18px;
    position: relative
}

.step-num {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 12px;
    background: var(--primary);
    color: #fff;
    font-weight: 900;
    margin-bottom: 12px
}

.step h3 {
    margin: 0 0 4px;
    color: var(--primary-dark);
    font-size: 17px
}

.step p {
    margin: 0;
    color: var(--muted);
    font-size: 14px
}

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

.feature {
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-inline-start: 1px solid var(--border)
}

.feature:first-child {
    border-inline-start: 0
}

.feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 16px;
    background: var(--primary-soft);
    display: grid;
    place-items: center;
    color: var(--primary);
    font-weight: 900;
    font-size: 22px
}

.feature strong {
    display: block;
    color: var(--primary-dark)
}

.feature span {
    display: block;
    color: var(--muted);
    font-size: 13px
}

.packages {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px
}

.package-card {
    position: relative;
    overflow: hidden;
    padding: 26px
}

.package-card.featured {
    border-color: rgba(255, 122, 26, .55);
    box-shadow: 0 20px 60px rgba(255, 122, 26, .14)
}

.ribbon {
    position: absolute;
    top: 18px;
    left: -42px;
    background: var(--orange);
    color: #fff;
    font-weight: 900;
    padding: 6px 48px;
    transform: rotate(-35deg);
    font-size: 12px
}

.package-card h3 {
    margin: 0 0 6px;
    color: var(--primary-dark)
}

.package-card ul {
    padding: 0;
    margin: 18px 0;
    list-style: none
}

.package-card li {
    margin: 8px 0;
    color: #43536d
}

.package-card li::before {
    content: "✓";
    color: var(--success);
    font-weight: 900;
    margin-inline-end: 8px
}

.form {
    display: grid;
    gap: 14px
}

.form-row {
    display: grid;
    gap: 7px
}

.form-row label {
    font-weight: 900;
    color: #263a59
}

.input,
input,
select,
textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 15px;
    background: #fff;
    padding: 12px 14px;
    font: inherit;
    color: var(--text);
    outline: none;
    transition: .18s ease
}

input:focus,
select:focus,
textarea:focus,
.input:focus {
    border-color: rgba(7, 87, 199, .55);
    box-shadow: 0 0 0 4px rgba(7, 87, 199, .08)
}

textarea {
    min-height: 130px
}

.table-wrap {
    overflow-x: auto;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 22px;
    box-shadow: var(--shadow-sm)
}

table {
    border-collapse: collapse;
    width: 100%;
    min-width: 760px
}

th,
td {
    padding: 14px;
    border-bottom: 1px solid var(--border);
    text-align: inherit
}

th {
    background: #f2f7ff;
    font-weight: 900;
    color: #21375c
}

.alert {
    padding: 14px 16px;
    border-radius: 16px;
    margin: 18px 0;
    border: 1px solid var(--border);
    background: #fff;
    box-shadow: var(--shadow-sm)
}

.alert.success {
    background: #eaf8ef;
    color: #0f6e37
}

.alert.warning {
    background: #fff7df;
    color: #865a00
}

.alert.danger {
    background: #ffecec;
    color: #9b1c12
}

.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px
}

.stat {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 22px;
    box-shadow: var(--shadow-sm)
}

.stat strong {
    display: block;
    font-size: 34px;
    color: var(--primary)
}

.row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.spaced {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: center
}

.mt {
    margin-top: 20px
}

.mb {
    margin-bottom: 20px
}

.admin-body main {
    padding-top: 28px
}

.admin-top .brand-logo {
    height: 46px
}

.file-list a {
    color: var(--primary)
}

.site-footer {
    margin-top: 34px;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: #fff;
    padding: 24px 0;
    border-top: 0
}

.footer-minimal {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    text-align: center
}

.footer-company-line {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    font-weight: 800
}

.footer-company-line strong {
    font-size: 20px
}

.footer-company-line span:last-child {
    color: #fff
}

.footer-separator {
    color: rgba(255, 255, 255, .55)
}

.footer-rights {
    color: rgba(255, 255, 255, .78)
}

.invoice {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 30px;
    box-shadow: var(--shadow-sm)
}

.invoice-head {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    border-bottom: 2px solid var(--border);
    padding-bottom: 16px;
    margin-bottom: 20px
}

.invoice-title {
    font-size: 34px;
    font-weight: 900;
    color: var(--primary)
}

.invoice-brand-block {
    display: flex;
    align-items: center;
    gap: 16px
}

.invoice-logo {
    width: 86px;
    height: auto;
    display: block;
    object-fit: contain
}

.mini-link {
    font-weight: 900
}

.text-center {
    text-align: center
}

@media(max-width:1000px) {
    .hero {
        grid-template-columns: 1fr
    }

    .hero-visual {
        order: -1;
        min-height: 330px
    }

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

    .steps-wrap {
        grid-template-columns: 1fr
    }

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

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

@media(max-width:760px) {
    .nav-wrap {
        align-items: flex-start;
        flex-direction: column;
        padding: 12px 0
    }

    .nav {
        width: 100%
    }

    .hero {
        padding-top: 34px
    }

    .hero h1 {
        font-size: 32px
    }

    .hero-actions .btn {
        width: 100%
    }

    .services-grid,
    .grid,
    .grid.two,
    .stats,
    .packages,
    .steps,
    .features-strip {
        grid-template-columns: 1fr
    }

    .feature {
        border-inline-start: 0;
        border-top: 1px solid var(--border)
    }

    .feature:first-child {
        border-top: 0
    }

    .spaced,
    .footer-minimal {
        align-items: flex-start;
        flex-direction: column
    }

    .brand-logo {
        height: 48px;
        max-width: 68px
    }

    table {
        min-width: 650px
    }

    .hero-visual {
        min-height: 300px
    }

    .dashboard-graphic {
        inset: 36px 22px auto 22px
    }

    .cube {
        right: 40%;
        width: 76px;
        height: 76px
    }

    .floating-card.card-b {
        left: 18px
    }

    .floating-card.card-a {
        right: 18px
    }
}

@media print {

    .site-header,
    .site-footer,
    .no-print,
    .alert {
        display: none !important
    }

    body {
        background: #fff
    }

    .container {
        width: 100%
    }

    .invoice {
        box-shadow: none;
        border: 0
    }
}


/* SVG icons - reliable with custom fonts */
.service-icon svg,
.feature-icon svg,
.step-icon svg,
.service-detail-icon svg {
    width: 28px;
    height: 28px;
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
}

.step-icon svg {
    width: 22px;
    height: 22px;
}

.tap-icon {
    font-family: Arial, sans-serif;
    font-weight: 900;
    letter-spacing: -.5px;
    color: #5a3bea;
}

.step-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 12px;
}

.step-icon {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 16px;
    background: var(--primary-soft);
    color: var(--primary);
    border: 1px solid #d7e7ff;
}

.step-num {
    margin-bottom: 0;
    flex: 0 0 auto;
}

.service-detail-section {
    padding-top: 42px;
}

.service-detail-card {
    display: grid;
    grid-template-columns: 94px minmax(0, 1fr);
    gap: 22px;
    align-items: start;
    position: relative;
    overflow: hidden;
}

.service-detail-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 5px;
    background: linear-gradient(90deg, var(--orange), var(--primary));
}

.service-detail-icon {
    display: grid;
    place-items: center;
    width: 82px;
    height: 82px;
    border-radius: 26px;
    background: linear-gradient(135deg, var(--primary-soft), #fff);
    border: 1px solid #d7e7ff;
    color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.service-detail-content h1 {
    margin: 10px 0 8px;
    color: var(--primary-dark);
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.25;
}

.service-description {
    color: #40516c;
    background: #f8fbff;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 18px;
    margin-top: 16px;
}

/* Mobile refinement */
@media (max-width: 760px) {

    
    .container {
        width: min(100% - 28px, 1180px);
    }

    .site-header {
        position: sticky;
    }

    .nav-wrap {
        min-height: auto;
        gap: 12px;
    }

    .brand {
        width: 100%;
        justify-content: space-between;
        font-size: 18px;
    }

    .brand-logo {
        height: 42px;
        max-width: 62px;
    }

    .nav {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        width: 100%;
    }

    .nav a,
    .nav .btn,
    .nav a.btn {
        justify-content: center;
        text-align: center;
        padding: 10px 8px;
        font-size: 13px;
        border: 1px solid var(--border);
        background: #fff;
        box-shadow: none;
    }

    .nav a.btn {
        color: #fff !important;
        background: linear-gradient(135deg, var(--primary), #0b6eea);
        border: 0;
    }

    .hero {
        gap: 22px;
        padding: 26px 0 24px;
    }

    .hero::before {
        height: 520px;
    }

    .hero-content {
        text-align: center;
        margin-inline: auto;
    }

    .eyebrow {
        margin-inline: auto;
    }

    .hero h1 {
        font-size: clamp(30px, 9vw, 40px);
        letter-spacing: -.7px;
    }

    .lead {
        font-size: 16px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

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

    .hero-points {
        justify-content: center;
    }

    .hero-visual {
        order: -1;
        min-height: 230px;
        border-radius: 26px;
    }

    .dashboard-graphic {
        inset: 24px 18px auto 18px;
        height: 128px;
        border-radius: 22px;
        padding: 16px;
    }

    .chart-line {
        height: 54px;
    }

    .floating-card {
        border-radius: 16px;
        font-size: 13px;
    }

    .floating-card.card-a {
        width: 72px;
        height: 52px;
        right: 16px;
        bottom: 28px;
    }

    .floating-card.card-b {
        width: 76px;
        height: 54px;
        left: 16px;
        bottom: 38px;
    }

    .floating-card.card-c {
        width: 58px;
        height: 58px;
        left: 24px;
        top: 28px;
    }

    .cube {
        width: 58px;
        height: 58px;
        right: 42%;
        bottom: 24px;
        border-radius: 15px;
    }

    .section {
        padding: 24px 0;
    }

    .card,
    .package-card {
        padding: 20px;
        border-radius: 22px;
    }

    .service-card {
        gap: 10px;
    }

    .service-card h3 {
        font-size: 18px;
    }

    .service-icon {
        width: 52px;
        height: 52px;
        border-radius: 17px;
    }

    .spaced {
        align-items: stretch;
        gap: 10px;
    }

    .spaced .btn {
        width: 100%;
    }

    .steps-wrap {
        padding: 12px;
        border-radius: 24px;
    }

    .steps-intro {
        text-align: center;
        padding: 22px 18px;
    }

    .step {
        padding: 16px;
    }

    .features-strip {
        border-radius: 22px;
    }

    .feature {
        padding: 16px;
    }

    .packages {
        gap: 14px;
    }

    .service-detail-card {
        grid-template-columns: 1fr;
        gap: 16px;
        text-align: center;
    }

    .service-detail-icon {
        margin: 0 auto;
        width: 72px;
        height: 72px;
    }

    .service-description {
        text-align: initial;
    }

    .service-detail-actions {
        flex-direction: column;
    }

    .service-detail-actions .btn {
        width: 100%;
    }

    .footer-minimal {
        align-items: center;
    }
}

@media (max-width: 420px) {
    .nav {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        min-height: 210px;
    }

    .hero-points span {
        width: 100%;
        justify-content: center;
    }

    .section-head h2,
    .section-title {
        font-size: 24px;
    }

    .price {
        font-size: 18px;
    }
}

/* Mobile responsive hardening - v3 */
html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

img,
svg,
video {
    max-width: 100%;
}

.hero,
.hero-content,
.hero-visual,
.card,
.service-card,
.package-card,
.steps-wrap,
.features-strip {
    min-width: 0;
}

@media (max-width: 760px) {
    body {
        background:
            radial-gradient(circle at top right, rgba(7, 87, 199, .09), transparent 20rem),
            radial-gradient(circle at top left, rgba(255, 122, 26, .08), transparent 18rem),
            var(--bg);
    }

    .container {
        width: 100%;
        max-width: 100%;
        padding-inline: 14px;
        margin-inline: auto;
    }

    .site-header {
        overflow: visible;
    }

    .nav-wrap {
        width: 100%;
        min-height: 70px;
        padding-block: 8px;
        display: flex;
        flex-direction: row !important;
        flex-wrap: nowrap;
        align-items: center !important;
        justify-content: space-between;
        gap: 10px;
        overflow: visible;
    }

    .brand {
        width: auto !important;
        max-width: calc(100% - 62px);
        flex: 1 1 auto;
        min-width: 0;
        gap: 8px;
        justify-content: flex-start;
        overflow: hidden;
        font-size: 17px;
        padding-inline-end: 2px;
    }

    .brand-logo {
        width: 44px !important;
        height: 44px !important;
        max-width: 44px !important;
        flex: 0 0 44px;
        object-fit: contain;
        object-position: center;
        filter: none;
        display: block;
    }

    .brand span {
        min-width: 0;
        max-width: 100%;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        line-height: 1.2;
    }

    .mobile-menu-toggle {
        width: 46px;
        height: 46px;
        flex: 0 0 46px;
        display: inline-flex;
        position: relative;
        z-index: 1002;
    }

    .nav {
        inset-inline: 14px !important;
        top: calc(100% + 8px) !important;
        width: auto !important;
        max-width: none;
        z-index: 1001;
    }

    main {
        padding-bottom: 28px;
    }

    .hero {
        display: flex;
        flex-direction: column;
        gap: 18px;
        padding: 22px 0 18px;
        overflow: hidden;
    }

    .hero::before {
        inset: 8px -14px auto -14px;
        height: 510px;
        border-radius: 0 0 28px 28px;
    }

    .hero-visual {
        order: -1;
        width: 100%;
        min-height: 208px;
        max-height: 232px;
        border-radius: 26px;
        box-shadow: 0 14px 36px rgba(14, 44, 90, .08);
    }

    .dashboard-graphic {
        inset: 24px 18px auto 18px;
        height: 124px;
        border-radius: 22px;
        padding: 14px;
    }

    .graphic-top {
        margin-bottom: 14px;
    }

    .chart-line {
        height: 50px;
        border-radius: 14px;
    }

    .hero-visual::after {
        right: 18px;
        bottom: 18px;
        width: 118px;
        height: 118px;
        background-size: 13px 13px;
    }

    .floating-card {
        border-radius: 16px;
        font-size: 12px;
        padding: 0 8px;
    }

    .floating-card.card-a {
        width: 68px;
        height: 48px;
        right: 14px;
        bottom: 26px;
    }

    .floating-card.card-b {
        width: 78px;
        height: 54px;
        left: 16px;
        bottom: 34px;
    }

    .floating-card.card-c {
        width: 58px;
        height: 58px;
        left: 22px;
        top: 28px;
    }

    .cube {
        width: 58px;
        height: 58px;
        right: 42%;
        bottom: 24px;
        border-radius: 15px;
    }

    .hero-content {
        width: 100%;
        max-width: 100%;
        margin-inline: auto;
        text-align: center;
        overflow-wrap: break-word;
    }

    .eyebrow {
        max-width: 100%;
        margin-inline: auto;
        white-space: normal;
        justify-content: center;
    }

    .hero h1 {
        font-size: clamp(28px, 8.2vw, 36px);
        line-height: 1.28;
        letter-spacing: -.3px;
        margin: 14px 0 10px;
    }

    .lead {
        max-width: 100%;
        font-size: 15.5px;
        line-height: 1.95;
        margin-inline: auto;
    }

    .hero-actions {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        margin-top: 18px;
    }

    .hero-actions .btn {
        width: 100%;
        min-height: 54px;
        border-radius: 17px;
    }

    .hero-points {
        width: 100%;
        justify-content: center;
        gap: 8px;
        margin-top: 18px;
    }

    .hero-points span {
        width: 100%;
        justify-content: center;
        min-height: 44px;
    }

    .section {
        padding: 22px 0;
    }

    .section-head {
        margin-bottom: 18px;
    }

    .section-head h2,
    .section-title {
        font-size: 24px;
        line-height: 1.35;
    }

    .services-grid,
    .grid,
    .grid.two,
    .stats,
    .packages,
    .steps,
    .features-strip {
        grid-template-columns: 1fr !important;
        gap: 14px;
    }

    .card,
    .package-card {
        width: 100%;
        max-width: 100%;
        padding: 20px;
        border-radius: 22px;
    }

    .service-card {
        text-align: start;
    }

    .service-card .spaced {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .service-card .spaced .btn {
        width: 100%;
    }

    .steps-wrap {
        padding: 12px;
        border-radius: 24px;
    }

    .steps-intro {
        padding: 20px 16px;
        text-align: center;
    }

    .steps-intro h2 {
        font-size: 24px;
    }

    .feature {
        border-inline-start: 0;
        border-top: 1px solid var(--border);
        padding: 16px;
    }

    .feature:first-child {
        border-top: 0;
    }

    .footer-minimal {
        align-items: center;
        text-align: center;
    }

    .footer-company-line {
        flex-direction: column;
        gap: 4px;
    }

    .footer-separator {
        display: none;
    }
}

@media (max-width: 420px) {
    .container {
        padding-inline: 12px;
    }

    .brand {
        max-width: calc(100% - 58px);
        font-size: 16px;
    }

    .brand-logo {
        width: 40px !important;
        height: 40px !important;
        max-width: 40px !important;
        flex-basis: 40px;
    }

    .mobile-menu-toggle {
        width: 44px;
        height: 44px;
        flex-basis: 44px;
    }

    .hero-visual {
        min-height: 202px;
    }

    .hero h1 {
        font-size: clamp(27px, 8.4vw, 34px);
    }

    .lead {
        font-size: 15px;
    }
}

/* Mobile menu final fix - v4
   The checkbox is the menu state. On phones the nav is removed from the header flow
   so it does not create a tall empty header. */
.mobile-nav-check {
    position: absolute;
    inline-size: 1px;
    block-size: 1px;
    opacity: 0;
    pointer-events: none;
}

.mobile-menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex-direction: column;
    width: 46px;
    height: 46px;
    border: 1px solid var(--border);
    border-radius: 17px;
    background: #fff;
    color: var(--primary);
    cursor: pointer;
    box-shadow: 0 8px 22px rgba(14, 44, 90, .08);
}

.mobile-menu-toggle span {
    display: block;
    width: 21px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform .2s ease, opacity .2s ease;
}

.mobile-nav-check:checked+.mobile-menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-nav-check:checked+.mobile-menu-toggle span:nth-child(2) {
    opacity: 0;
}

.mobile-nav-check:checked+.mobile-menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 760px) {
    .site-header {
        padding: 0;
    }

    .nav-wrap {
        position: relative;
        min-height: 70px !important;
        padding-block: 10px !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 10px !important;
    }

    .brand {
        flex: 1 1 auto !important;
        width: auto !important;
        max-width: calc(100% - 58px) !important;
        min-width: 0 !important;
        justify-content: flex-start !important;
        overflow: hidden !important;
        font-size: 17px !important;
    }

    body.ltr .brand {
        justify-content: flex-start !important;
    }

    .brand-logo {
        width: 44px !important;
        height: 44px !important;
        max-width: 44px !important;
        flex: 0 0 44px !important;
        object-fit: contain !important;
        object-position: center !important;
    }

    .brand span {
        min-width: 0 !important;
        overflow: hidden !important;
        white-space: nowrap !important;
        text-overflow: ellipsis !important;
    }

    .mobile-menu-toggle {
        display: inline-flex !important;
        flex: 0 0 46px !important;
        position: relative !important;
        z-index: 1003 !important;
    }

    .nav {
        display: none !important;
        position: absolute !important;
        top: calc(100% + 8px) !important;
        inset-inline: 14px !important;
        width: auto !important;
        padding: 12px !important;
        grid-template-columns: 1fr !important;
        gap: 8px !important;
        background: rgba(255, 255, 255, .98) !important;
        border: 1px solid var(--border) !important;
        border-radius: 22px !important;
        box-shadow: 0 22px 60px rgba(14, 44, 90, .18) !important;
        backdrop-filter: blur(12px) !important;
        z-index: 1002 !important;
    }

    .mobile-nav-check:checked~.nav {
        display: grid !important;
    }

    .nav a,
    .nav .btn,
    .nav a.btn,
    .nav .lang {
        width: 100% !important;
        min-height: 44px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 10px 12px !important;
        border-radius: 14px !important;
        text-align: center !important;
        font-size: 14px !important;
        border: 1px solid var(--border) !important;
        background: #fff !important;
        color: var(--primary-dark) !important;
        box-shadow: none !important;
    }

    .nav a.btn,
    .nav .btn {
        color: #fff !important;
        background: linear-gradient(135deg, var(--primary), #0b6eea) !important;
        border: 0 !important;
    }

    .nav .lang {
        color: var(--primary) !important;
        font-weight: 900 !important;
    }

    main {
        padding-top: 0 !important;
    }
}

@media (max-width: 420px) {
    .nav-wrap {
        min-height: 66px !important;
    }

    .brand {
        font-size: 16px !important;
        max-width: calc(100% - 54px) !important;
    }

    .brand-logo {
        width: 40px !important;
        height: 40px !important;
        max-width: 40px !important;
        flex-basis: 40px !important;
    }

    .mobile-menu-toggle {
        width: 44px !important;
        height: 44px !important;
        flex-basis: 44px !important;
    }

    .nav {
        inset-inline: 12px !important;
    }
}

/* Auth screen: Google / Apple / Manual */
.auth-section {
    padding: 46px 0 24px;
    display: grid;
    place-items: center;
}

.auth-card {
    width: min(680px, 100%);
    margin: 0 auto;
    padding: 34px;
}

.auth-head {
    text-align: center;
    margin-bottom: 22px;
}

.auth-head h1 {
    margin: 14px 0 8px;
    color: var(--primary-dark);
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.25;
}

.social-auth-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 20px 0 18px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 54px;
    border-radius: 17px;
    border: 1px solid var(--border);
    background: #fff;
    color: var(--text);
    font-weight: 900;
    box-shadow: var(--shadow-sm);
    padding: 12px 16px;
}

.social-btn:hover {
    transform: translateY(-1px);
    color: var(--primary);
    border-color: rgba(7, 87, 199, .28);
}

.social-btn.apple {
    background: #101828;
    color: #fff;
    border-color: #101828;
}

.social-btn.apple:hover {
    color: #fff;
    background: #1d2939;
}

.social-icon {
    width: 26px;
    height: 26px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
}

.social-icon svg {
    width: 24px;
    height: 24px;
    display: block;
}

.auth-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 22px 0;
    color: var(--muted);
    font-weight: 900;
}

.auth-divider::before,
.auth-divider::after {
    content: "";
    height: 1px;
    flex: 1;
    background: var(--border);
}

.auth-divider span {
    background: #fff;
    padding: 0 8px;
}

.manual-auth-form {
    background: #f8fbff;
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 20px;
}

.manual-new-account {
    border: 1px dashed rgba(7, 87, 199, .32);
    border-radius: 18px;
    padding: 14px;
    background: #fff;
}

.manual-new-account summary {
    cursor: pointer;
    color: var(--primary);
    font-weight: 900;
    user-select: none;
}

.auth-note {
    text-align: center;
    margin: 18px 0 0;
}

.manual-auth-form .btn {
    font-size: 20px;
    padding: 15px 26px;
}

.whatsapp-contact-line {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 6px 0 18px;
    padding: 12px 16px;
    border-radius: 18px;
    background: #f0fff5;
    border: 1px solid #c9f2d8;
}

.whatsapp-icon {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 14px;
    background: #25D366;
    color: #fff;
    flex: 0 0 38px;
}

.whatsapp-icon svg {
    width: 24px;
    height: 24px;
    display: block;
}

.whatsapp-number {
    direction: ltr;
    unicode-bidi: embed;
    font-family: Arial, Tahoma, sans-serif;
    font-size: 22px;
    font-weight: 900;
    color: var(--primary-dark);
    letter-spacing: .3px;
}

.about-contact-card {
    margin-bottom: 22px;
    background:
        linear-gradient(135deg, rgba(7, 87, 199, .06), rgba(255, 122, 26, .05)),
        #fff;
}

.about-contact-card h2 {
    margin: 12px 0 8px;
    color: var(--primary-dark);
}

.about-contact-card p {
    margin: 8px 0;
    font-size: 17px;
}

@media (max-width: 760px) {
    .auth-section {
        padding-top: 24px;
    }

    .auth-card {
        padding: 22px;
        border-radius: 24px;
    }

    .social-auth-grid {
        grid-template-columns: 1fr;
    }

    .manual-auth-form {
        padding: 16px;
    }

    .social-btn,
    .manual-auth-form .btn {
        width: 100%;
    }

    .manual-auth-form .btn {
        font-size: 20px;
        min-height: 56px;
    }
}