/* =========================================================
   FILE: site-layout.css
   VERSION: V1.0010
   ========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

:root {
    --kc-primary: #0f766e;
    --kc-primary-dark: #0b5f59;
    --kc-primary-soft: #ecfdf5;
    --kc-primary-border: #bbf7d0;
    --kc-green: #22c55e;
    --kc-dark: #0f172a;
    --kc-text: #1e293b;
    --kc-muted: #64748b;
    --kc-border: #e2e8f0;
    --kc-bg: #f6f8fb;
    --kc-white: #ffffff;
    --kc-shadow: 0 20px 55px rgba(15, 23, 42, 0.10);
    --kc-radius: 24px;
}

/* =========================================================
   BASE
   ========================================================= */

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    background: var(--kc-bg);
    color: var(--kc-text);
    font-family: Tahoma, Arial, sans-serif;
    line-height: 1.7;
}

html[dir="ltr"] body {
    font-family: Arial, Tahoma, sans-serif;
}

a {
    color: inherit;
}

img {
    max-width: 100%;
}

.kc-container {
    width: min(1180px, calc(100% - 32px));
    margin-inline: auto;
}

/* =========================================================
   BUTTONS
   ========================================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 11px 20px;
    border-radius: 999px;
    background: var(--kc-primary);
    color: #ffffff;
    text-decoration: none;
    border: 1px solid var(--kc-primary);
    font-weight: 800;
    transition: 0.2s ease;
    cursor: pointer;
    white-space: nowrap;
}

.btn:hover {
    background: var(--kc-primary-dark);
    border-color: var(--kc-primary-dark);
    transform: translateY(-1px);
}

.btn-lg {
    min-height: 52px;
    padding: 13px 24px;
    font-size: 15px;
}

.btn-outline {
    background: #ffffff;
    color: var(--kc-primary);
    border-color: #99f6e4;
}

.btn-outline:hover {
    background: var(--kc-primary-soft);
    color: var(--kc-primary-dark);
}

.btn-light {
    background: #ffffff;
    color: var(--kc-primary);
    border-color: #ffffff;
}

.btn-light:hover {
    background: #f8fafc;
    color: var(--kc-primary-dark);
}

.btn-ghost-light {
    background: transparent;
    color: #ffffff;
    border-color: rgba(255,255,255,0.45);
}

.btn-ghost-light:hover {
    background: rgba(255,255,255,0.12);
    color: #ffffff;
}

/* =========================================================
   HEADER
   ========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--kc-border);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.site-header__inner {
    max-width: 1450px;
    margin: 0 auto;
    padding: 0 16px;
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--kc-primary);
    text-decoration: none;
    font-weight: 900;
    white-space: nowrap;
    flex-shrink: 0;
}

.site-logo__mark {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0f766e, #22c55e);
    color: #ffffff;
    font-size: 22px;
    font-weight: 900;
    transition: all 0.2s;
}

.site-logo__text {
    font-size: 20px;
    font-weight: 900;
    letter-spacing: -0.3px;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1 1 auto;
    justify-content: center;
}

.site-nav a {
    text-decoration: none;
    color: #334155;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 800;
    transition: 0.2s ease;
    white-space: nowrap;
}

.site-nav a:hover,
.site-nav a.is-active {
    background: var(--kc-primary-soft);
    color: var(--kc-primary);
}

.site-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.nav-actions {
    display: none;
}

.site-lang-switch {
    min-height: 38px;
    padding: 6px 12px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 900;
    white-space: nowrap;
    color: var(--kc-primary);
    background: var(--kc-primary-soft);
    border: 1px solid var(--kc-primary-border);
    transition: 0.2s;
}

.site-lang-switch:hover {
    background: #d1fae5;
}

.site-lang-switch svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.site-login-btn {
    min-height: 38px;
    padding: 6px 14px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 900;
    white-space: nowrap;
    color: #ffffff;
    background: var(--kc-primary);
    border: 1px solid var(--kc-primary);
    transition: 0.2s;
}

.site-login-btn:hover {
    background: var(--kc-primary-dark);
    border-color: var(--kc-primary-dark);
    transform: translateY(-1px);
}

.site-login-btn svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    padding: 0;
    border-radius: 10px;
    transition: background 0.2s;
    flex-shrink: 0;
}

.nav-toggle:hover {
    background: var(--kc-primary-soft);
}

.hamburger,
.hamburger::before,
.hamburger::after {
    content: '';
    width: 26px;
    height: 3px;
    background: var(--kc-primary);
    border-radius: 4px;
    transition: 0.3s ease;
    display: block;
}
.hamburger::before {
    transform: translateY(-8px);
}
.hamburger::after {
    transform: translateY(8px);
}

.nav-toggle.active .hamburger {
    background: transparent;
}
.nav-toggle.active .hamburger::before {
    transform: rotate(45deg) translate(0, 0);
}
.nav-toggle.active .hamburger::after {
    transform: rotate(-45deg) translate(0, 0);
}

/* =========================================================
   HEADER RESPONSIVE
   ========================================================= */

@media (max-width: 1024px) {
    .site-header__inner {
        padding: 0 12px;
        min-height: 64px;
        gap: 10px;
    }
    .site-nav {
        gap: 2px;
        flex: 1 1 auto;
        justify-content: center;
        overflow: hidden;
    }
    .site-nav a {
        padding: 6px 10px;
        font-size: 13px;
    }
    .site-logo__mark {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }
    .site-logo__text {
        font-size: 17px;
    }
    .site-lang-switch,
    .site-login-btn {
        min-height: 34px;
        padding: 5px 10px;
        font-size: 12px;
    }
    .site-lang-switch svg {
        width: 14px;
        height: 14px;
    }
    .site-login-btn svg {
        width: 12px;
        height: 12px;
    }
    .site-actions {
        gap: 6px;
    }
}

@media (max-width: 768px) {
    .site-header__inner {
        flex-wrap: wrap;
        min-height: auto;
        padding: 8px 12px 4px;
        gap: 6px;
        justify-content: space-between;
    }
    .nav-toggle {
        display: flex;
        order: 2;
        width: 36px;
        height: 36px;
    }
    .hamburger,
    .hamburger::before,
    .hamburger::after {
        width: 22px;
        height: 2.5px;
    }
    .hamburger::before {
        transform: translateY(-7px);
    }
    .hamburger::after {
        transform: translateY(7px);
    }
    .site-logo {
        order: 1;
        flex: 0 1 auto;
    }
    .site-logo__mark {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
    .site-logo__text {
        font-size: 14px;
    }
    .site-actions {
        display: none;
    }
    .nav-actions {
        display: flex;
        flex-direction: column;
        gap: 4px;
        margin-top: 8px;
        padding-top: 8px;
        border-top: 1px solid var(--kc-border);
    }
    .nav-actions a {
        padding: 10px;
        border-radius: 10px;
        font-weight: 900;
        font-size: 14px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        background: var(--kc-primary-soft);
        color: var(--kc-primary);
        border: 1px solid var(--kc-primary-border);
        text-decoration: none;
    }
    .nav-actions a.site-login-btn {
        background: var(--kc-primary);
        color: #ffffff;
        border-color: var(--kc-primary);
    }
    .nav-actions a.site-login-btn:hover {
        background: var(--kc-primary-dark);
    }
    .nav-actions a svg {
        width: 16px;
        height: 16px;
    }
    .site-nav {
        order: 3;
        width: 100%;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 2px;
        padding: 10px 0 6px;
        border-top: 1px solid var(--kc-border);
        flex: 0 0 100%;
        overflow: hidden;
    }
    .site-nav.open {
        display: flex;
    }
    .site-nav a {
        padding: 10px 16px;
        border-radius: 10px;
        width: 100%;
        text-align: center;
        font-size: 15px;
        justify-content: center;
        white-space: normal;
    }
    .site-nav a.is-active {
        background: var(--kc-primary-soft);
        color: var(--kc-primary);
    }
}

/* =========================================================
   HEADER RTL
   ========================================================= */

html[dir="rtl"] .site-nav {
    /* no change needed */
}
html[dir="rtl"] .nav-toggle {
    order: 2;
}
html[dir="rtl"] .site-actions {
    flex-direction: row-reverse;
}
html[dir="ltr"] .site-actions {
    flex-direction: row;
}
html[dir="rtl"] .nav-actions a {
    flex-direction: row-reverse;
}

/* =========================================================
   HOME HERO
   ========================================================= */

.home-hero {
    position: relative;
    padding: 86px 0 58px;
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(34,197,94,0.18), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, #f6f8fb 100%);
}

.hero-layout {
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    gap: 46px;
    align-items: center;
}

.hero-eyebrow,
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 34px;
    padding: 7px 13px;
    border-radius: 999px;
    background: var(--kc-primary-soft);
    color: var(--kc-primary);
    font-size: 25px;
    font-weight: 900;
    margin-bottom: 16px;
}

.section-label-light {
    background: rgba(15, 118, 110, 0.12);
    color: var(--kc-primary);
}

.zatca-section .section-label-light,
.home-cta-box .section-label-light {
    background: rgba(255,255,255,0.16);
    color: #ffffff;
}

.status-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--kc-green);
    box-shadow: 0 0 0 5px rgba(34,197,94,0.14);
}

.hero-content h1 {
    margin: 0 0 18px;
    color: var(--kc-dark);
    font-size: clamp(34px, 4.6vw, 64px);
    line-height: 1.18;
    letter-spacing: -1px;
}

.hero-content h1 span {
    display: block;
    color: var(--kc-primary);
}

.hero-description {
    margin: 0;
    max-width: 660px;
    color: #475569;
    font-size: 18px;
    line-height: 2;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.hero-trust span {
    padding: 8px 12px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid var(--kc-border);
    color: #334155;
    font-size: 13px;
    font-weight: 800;
}

/* =========================================================
   PREVIEW CARD
   ========================================================= */

.hero-preview {
    position: relative;
    min-height: 510px;
}

.preview-window {
    background: #ffffff;
    border: 1px solid var(--kc-border);
    border-radius: 30px;
    padding: 20px;
    box-shadow: var(--kc-shadow);
}

.preview-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--kc-border);
}

.preview-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.preview-logo {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--kc-primary);
    color: #ffffff;
    font-weight: 900;
}

.preview-brand strong,
.preview-product strong {
    display: block;
    color: var(--kc-dark);
}

.preview-brand small,
.preview-product small,
.preview-stat small,
.chart-head span {
    color: var(--kc-muted);
    font-size: 12px;
}

.preview-status {
    background: var(--kc-primary-soft);
    color: var(--kc-primary);
    padding: 7px 12px;
    border-radius: 999px;
    font-weight: 900;
    font-size: 13px;
}

.preview-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 18px;
}

.preview-stat {
    background: #f8fafc;
    border: 1px solid var(--kc-border);
    border-radius: 20px;
    padding: 16px;
}

.preview-stat span {
    display: block;
    color: var(--kc-muted);
    font-size: 13px;
    margin-bottom: 7px;
}

.preview-stat strong {
    display: block;
    color: var(--kc-dark);
    font-size: 25px;
    margin-bottom: 2px;
}

.preview-body {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 16px;
}

.preview-chart,
.preview-products {
    background: #ffffff;
    border: 1px solid var(--kc-border);
    border-radius: 22px;
    padding: 18px;
}

.chart-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
}

.chart-bars {
    height: 170px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 10px;
}

.chart-bars span {
    flex: 1;
    border-radius: 999px 999px 8px 8px;
    background: linear-gradient(180deg, #22c55e, #0f766e);
    min-height: 35px;
}

.chart-bar-1 { height: 48%; }
.chart-bar-2 { height: 72%; }
.chart-bar-3 { height: 58%; }
.chart-bar-4 { height: 90%; }
.chart-bar-5 { height: 68%; }
.chart-bar-6 { height: 84%; }
.chart-bar-7 { height: 62%; }

.preview-products {
    display: grid;
    gap: 12px;
}

.preview-product {
    display: flex;
    align-items: center;
    gap: 12px;
}

.product-icon {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
}

.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    border: 1px solid var(--kc-border);
    border-radius: 18px;
    padding: 14px 16px;
    box-shadow: 0 18px 38px rgba(15,23,42,0.13);
}

.floating-card strong {
    display: block;
    color: var(--kc-dark);
}

.floating-card small {
    color: var(--kc-muted);
}

.floating-card-top {
    top: 35px;
    inset-inline-start: -26px;
}

.floating-card-bottom {
    bottom: 34px;
    inset-inline-end: -18px;
}

.floating-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--kc-primary);
    color: #ffffff;
    font-weight: 900;
}

.floating-icon.blue {
    background: #2563eb;
}

/* =========================================================
   BRAND STRIP
   ========================================================= */

.brand-strip {
    padding: 40px 0;
    background: #ffffff;
    border-top: 1px solid var(--kc-border);
    border-bottom: 1px solid var(--kc-border);
}

.brand-strip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.brand-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 10px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.06);
    border: 1px solid var(--kc-border);
    transition: transform 0.25s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.brand-card:hover {
    box-shadow: 00 4px 8px rgba(15, 23, 42, 0.12);
    border-color: var(--kc-primary-border);
}

.brand-icon {
    width: 48px;
    height: 48px;
    color: var(--kc-primary);
    stroke-width: 1.8;
    flex-shrink: 0;
    margin-bottom: 4px;
    transition: transform 0.3s ease;
}

.brand-card strong {
    display: block;
    color: var(--kc-dark);
    font-size: 18px;
    font-weight: 900;
    line-height: 1.3;
}

.brand-card span {
    color: var(--kc-muted);
    font-size: 14px;
    line-height: 1.6;
    max-width: 90%;
}

@media (max-width: 980px) {
    .brand-strip-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
    .brand-card {
        padding: 24px 16px 20px;
    }
    .brand-icon {
        width: 40px;
        height: 40px;
    }
    .brand-card strong {
        font-size: 16px;
    }
    .brand-card span {
        font-size: 13px;
    }
}

@media (max-width: 600px) {
    .brand-strip-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .brand-card {
        padding: 22px 16px 18px;
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    .brand-icon {
        width: 44px;
        height: 44px;
        margin-bottom: 2px;
    }
    .brand-card strong {
        font-size: 16px;
    }
    .brand-card span {
        font-size: 13px;
        max-width: 100%;
    }
}

/* =========================================================
   SECTIONS
   ========================================================= */

.section {
    padding: 20px 0;
}

.section-white {
    background: #ffffff;
}

.section-soft {
    background: #f8fafc;
}

.section-heading {
    margin: 0 auto;
    text-align: center;
}

.section-heading h2 {
    margin: 0 0 12px;
    color: var(--kc-dark);
    /* font-size: clamp(28px, 3vw, 42px); */
    line-height: 1.3;
}

.section-heading p {
    color: #475569;
    font-size: 16px;
}

/* =========================================================
   FEATURES GRID
   ========================================================= */

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding-top: 20px;
}

.feature-card {
    background: #ffffff;
    border: 1px solid var(--kc-border);
    border-radius: 24px;
    padding: 32px 24px 28px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.25s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover {
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
    border-color: var(--kc-primary-border);
}

.feature-card-highlight {
    border-color: #99f6e4;
    background: linear-gradient(180deg, #ecfdf5, #ffffff);
}

.feature-card .brand-icon {
    width: 52px;
    height: 52px;
    color: var(--kc-primary);
    stroke-width: 1.8;
    flex-shrink: 0;
    margin-bottom: 12px;
    transition: transform 0.3s ease;
}

.feature-card:hover .brand-icon {
    transform: scale(1.06);
}

.feature-card h3 {
    margin: 0 0 8px;
    color: var(--kc-dark);
    font-size: 19px;
    font-weight: 900;
    line-height: 1.3;
}

.feature-card p {
    margin: 0;
    color: #475569;
    font-size: 14px;
    line-height: 1.7;
    max-width: 90%;
}

@media (max-width: 980px) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
    .feature-card {
        padding: 26px 18px 22px;
    }
    .feature-card .brand-icon {
        width: 44px;
        height: 44px;
        margin-bottom: 10px;
    }
    .feature-card h3 {
        font-size: 17px;
    }
    .feature-card p {
        font-size: 13px;
    }
}

@media (max-width: 700px) {
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .feature-card {
        padding: 22px 16px 20px;
    }
    .feature-card .brand-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 8px;
    }
    .feature-card h3 {
        font-size: 16px;
    }
    .feature-card p {
        font-size: 13px;
        max-width: 100%;
    }
}

/* =========================================================
   ZATCA
   ========================================================= */

.zatca-section {
    background: linear-gradient(135deg, #0f766e, #064e3b);
    color: #ffffff;
}

.zatca-layout {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 34px;
    align-items: center;
}

.zatca-content {
    justify-content: center;
    align-items: center;
    text-align: center;
}

.zatca-content h2 {
    margin: 0 0 16px;
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.35;
}

.zatca-content p {
    margin: 0;
    color: #d1fae5;
    font-size: 17px;
}

.zatca-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin: 22px 0;
}

.zatca-points span {
    padding: 10px 12px;
    border-radius: 14px;
    background: rgba(255,255,255,0.12);
    color: #ffffff;
    font-weight: 800;
}

.zatca-card {
    background: #ffffff;
    color: var(--kc-dark);
    border-radius: 30px;
    padding: 26px;
    box-shadow: 0 24px 58px rgba(0,0,0,0.16);
}

.zatca-card-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.zatca-mark {
    font-weight: 900;
    color: var(--kc-primary);
}

.zatca-check {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--kc-primary-soft);
    color: var(--kc-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
}

.zatca-card h3 {
    margin: 0 0 18px;
}

.invoice-demo {
    border: 1px solid var(--kc-border);
    border-radius: 18px;
    overflow: hidden;
}

.invoice-demo-row,
.invoice-demo-total {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 13px 15px;
    border-bottom: 1px solid var(--kc-border);
}

.invoice-demo-total {
    border-bottom: 0;
    background: var(--kc-primary-soft);
    font-weight: 900;
}

.qr-demo {
    margin-top: 18px;
    width: 118px;
    height: 118px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
    padding: 8px;
    border: 1px solid var(--kc-border);
    border-radius: 16px;
    background: #ffffff;
}

.qr-demo span {
    border-radius: 4px;
    background: #0f172a;
}

.qr-demo span:nth-child(2n) {
    background: #e2e8f0;
}

/* =========================================================
   BENEFITS / CTA
   ========================================================= */

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.benefit-item {
    display: flex;
    gap: 16px;
    background: #ffffff;
    border: 1px solid var(--kc-border);
    border-radius: 22px;
    padding: 22px;
}

.benefit-item > span {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--kc-primary-soft);
    color: var(--kc-primary);
    font-weight: 900;
    flex: 0 0 auto;
}

.benefit-item h3 {
    margin: 0 0 7px;
    color: var(--kc-dark);
}

.benefit-item p {
    margin: 0;
    color: #475569;
}

.home-cta {
    padding: 70px 0;
    background: #ffffff;
}

.home-cta-box {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: center;
    background: linear-gradient(135deg, #0f766e, #22c55e);
    color: #ffffff;
    border-radius: 30px;
    padding: 34px;
    box-shadow: var(--kc-shadow);
}

.home-cta-box h2 {
    margin: 0 0 10px;
    font-size: clamp(26px, 3vw, 40px);
}

.home-cta-box p {
    margin: 0;
    color: #ecfdf5;
}

.home-cta-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* =========================================================
   PRICING PAGE
   ========================================================= */

.page-hero {
    padding: 72px 0 54px;
    background:
        radial-gradient(circle at top right, rgba(34,197,94,0.18), transparent 32%),
        linear-gradient(180deg, #ffffff 0%, #f6f8fb 100%);
    text-align: center;
}

.page-hero h1 {
    margin: 0 0 14px;
    color: var(--kc-dark);
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.25;
}

.page-hero p {
    margin: 0 auto;
    max-width: 720px;
    color: #475569;
    font-size: 17px;
}

.pricing-area {
    padding: 56px 0 30px;
}

.pricing-toggle {
    width: fit-content;
    margin: 0 auto 26px;
    display: flex;
    gap: 8px;
    padding: 8px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid var(--kc-border);
    box-shadow: 0 12px 30px rgba(15,23,42,0.06);
}

.pricing-toggle button {
    border: 0;
    background: transparent;
    color: #334155;
    border-radius: 999px;
    padding: 10px 20px;
    font-weight: 900;
    cursor: pointer;
}

.pricing-toggle button.active {
    background: var(--kc-primary);
    color: #ffffff;
}

.pricing-card-main {
    max-width: 980px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid var(--kc-border);
    border-radius: 32px;
    padding: 28px;
    box-shadow: var(--kc-shadow);
}

.pricing-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--kc-border);
}

.pricing-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 7px 13px;
    border-radius: 999px;
    background: var(--kc-primary-soft);
    color: var(--kc-primary);
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 12px;
}

.pricing-card-top h2 {
    margin: 0 0 8px;
    color: var(--kc-dark);
    font-size: 32px;
}

.pricing-card-top p {
    margin: 0;
    color: var(--kc-muted);
}

.pricing-price {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--kc-dark);
}

.pricing-price > span {
    font-size: clamp(54px, 7vw, 84px);
    line-height: 1;
    font-weight: 900;
    letter-spacing: -2px;
}

.pricing-price strong {
    display: block;
    font-size: 20px;
}

.pricing-price small {
    color: var(--kc-muted);
}

.saving-note {
    display: none;
    margin-top: 18px;
    padding: 12px 14px;
    border-radius: 16px;
    background: #fef9c3;
    color: #854d0e;
    font-weight: 900;
}

.saving-note.is-visible {
    display: block;
}

.pricing-card-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 28px;
    padding-top: 26px;
}

.pricing-card-content h3 {
    margin: 0 0 16px;
    color: var(--kc-dark);
    font-size: 22px;
}

.pricing-features {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.pricing-features li {
    position: relative;
    padding: 12px 14px;
    border: 1px solid var(--kc-border);
    border-radius: 15px;
    background: #f8fafc;
    color: #334155;
    font-weight: 700;
}

.pricing-features li::before {
    content: "✓";
    color: var(--kc-primary);
    font-weight: 900;
    margin-inline-end: 8px;
}

.pricing-action-box {
    background: linear-gradient(180deg, #ecfdf5, #ffffff);
    border: 1px solid #bbf7d0;
    border-radius: 24px;
    padding: 24px;
    align-self: start;
}

.pricing-action-label {
    display: inline-flex;
    margin-bottom: 10px;
    color: var(--kc-primary);
    font-weight: 900;
}

.pricing-action-box p {
    margin: 0 0 18px;
    color: #475569;
}

.pricing-action-btn {
    width: 100%;
    margin-bottom: 12px;
}

.pricing-action-box small {
    display: block;
    color: var(--kc-muted);
    text-align: center;
}

.pricing-help {
    max-width: 980px;
    margin: 22px auto 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 22px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid var(--kc-border);
}

.pricing-help strong {
    display: block;
    color: var(--kc-dark);
    margin-bottom: 4px;
}

.pricing-help span {
    color: var(--kc-muted);
}

/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
    margin-top: 70px;
    background: #0f172a;
    color: #cbd5e1;
    padding: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr 1fr;
    gap: 40px;
    padding: 50px 0 40px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-weight: 900;
    font-size: 22px;
    margin-bottom: 12px;
}

.footer-brand .footer-logo__mark {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, #0f766e, #22c55e);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.footer-brand .footer-logo__text {
    letter-spacing: -0.3px;
}

.footer-tagline {
    color: #94a3b8;
    font-size: 14px;
    line-height: 1.7;
    max-width: 260px;
    margin: 0;
}

.footer-links h4,
.footer-contact h4,
.footer-social h4 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 900;
    margin: 0 0 12px;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 8px;
}

.footer-links a,
.footer-contact a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: #22c55e;
}

.footer-contact li:last-child {
    color: #94a3b8;
    font-size: 14px;
}

.social-icons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    color: #94a3b8;
    transition: background 0.2s, color 0.2s, transform 0.2s;
    text-decoration: none;
}

.social-icons a:hover {
    background: var(--kc-primary);
    color: #ffffff;
    transform: translateY(-2px);
}

.social-icons svg {
    fill: currentColor;
    width: 18px;
    height: 18px;
}

.footer-bottom {
    padding: 18px 0;
    background: rgba(0,0,0,0.2);
}

.footer-bottom__inner {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.footer-bottom__inner span:last-child {
    opacity: 0.6;
}

@media (max-width: 980px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        padding: 40px 0 30px;
    }
    .footer-brand .footer-tagline {
        max-width: 100%;
    }
}

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 30px 0 20px;
        text-align: center;
    }
    .footer-brand .footer-logo {
        justify-content: center;
    }
    .footer-brand .footer-tagline {
        max-width: 100%;
        margin: 0 auto;
    }
    .footer-links ul,
    .footer-contact ul {
        padding: 0;
    }
    .social-icons {
        justify-content: center;
    }
    .footer-bottom__inner {
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }
}

html[dir="rtl"] .footer-grid {
    direction: rtl;
}

html[dir="rtl"] .social-icons {
    flex-direction: row-reverse;
}

html[dir="rtl"] .footer-bottom__inner {
    flex-direction: row-reverse;
}

@media (max-width: 640px) {
    html[dir="rtl"] .footer-bottom__inner {
        flex-direction: column;
    }
}

/* =========================================================
   RESPONSIVE – GENERAL
   ========================================================= */

@media (max-width: 980px) {
    .hero-layout,
    .zatca-layout,
    .pricing-card-content {
        grid-template-columns: 1fr;
    }
    .hero-preview {
        min-height: auto;
    }
    .floating-card {
        position: static;
        margin-top: 14px;
    }
    .feature-grid,
    .brand-strip-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pricing-card-top {
        flex-direction: column;
    }
    .pricing-price {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 700px) {
    .home-hero,
    .page-hero {
        padding-top: 48px;
    }
    .feature-grid,
    .brand-strip-grid,
    .benefit-grid,
    .pricing-features,
    .preview-stats,
    .zatca-points {
        grid-template-columns: 1fr;
    }
    .home-cta-box,
    .pricing-help {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
    .pricing-toggle {
        width: 100%;
        justify-content: center;
    }
    .pricing-toggle button {
        flex: 1;
        padding-inline: 10px;
    }
    .pricing-card-main {
        padding: 20px;
        border-radius: 24px;
    }
    .hero-eyebrow {
        font-size: 20px;
    }
}

/* =========================================================
   CONTACT SECTION - MERGED CARD
   ========================================================= */

.contact-section {
    padding: 40px 0 60px;
}

.contact-card {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 0;
    background: #ffffff;
    border-radius: 28px;
    border: 1px solid var(--kc-border);
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.06);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.contact-card:hover {
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.10);
}

.contact-info {
    padding: 40px 36px 36px;
    background: linear-gradient(180deg, #fafcff 0%, #ffffff 100%);
    border-right: 1px solid var(--kc-border);
}

.contact-info-header {
    margin-bottom: 28px;
}

.contact-info-header .section-label {
    margin-bottom: 12px;
}

.contact-info-header h2 {
    margin: 0 0 10px;
    color: var(--kc-dark);
    font-size: 28px;
    font-weight: 900;
    line-height: 1.3;
}

.contact-info-header p {
    margin: 0;
    color: #475569;
    font-size: 15px;
    line-height: 1.8;
}

.contact-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 28px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    border-radius: 14px;
    background: #f8fafc;
    border: 1px solid var(--kc-border);
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s, transform 0.15s;
}

.contact-item:hover {
    background: var(--kc-primary-soft);
    border-color: var(--kc-primary-border);
    transform: translateY(-2px);
}

.contact-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid var(--kc-border);
    color: var(--kc-primary);
}

.contact-icon svg {
    width: 20px;
    height: 20px;
}

.contact-item strong {
    display: block;
    color: var(--kc-dark);
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 2px;
}

.contact-item small {
    display: block;
    color: var(--kc-muted);
    font-size: 13px;
    font-weight: 600;
}

.contact-hours {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--kc-primary-soft), #ffffff);
    border: 1px solid var(--kc-primary-border);
}

.contact-hours svg {
    width: 18px;
    height: 18px;
    color: var(--kc-primary);
    flex-shrink: 0;
}

.contact-hours strong {
    display: block;
    color: var(--kc-dark);
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 2px;
}

.contact-hours p {
    margin: 0;
    color: #475569;
    font-size: 13px;
    line-height: 1.6;
}

.contact-form-wrapper {
    padding: 40px 36px 36px;
    background: #ffffff;
}

.contact-form-header {
    margin-bottom: 28px;
}

.contact-form-header h2 {
    margin: 0;
    color: var(--kc-dark);
    font-size: 28px;
    font-weight: 900;
    line-height: 1.3;
}

.contact-form {
    display: grid;
    gap: 18px;
}

.contact-form .form-group {
    display: grid;
    gap: 6px;
}

.contact-form .form-group label {
    color: var(--kc-dark);
    font-weight: 800;
    font-size: 13px;
    text-align: start;
}

.contact-form .form-group input,
.contact-form .form-group textarea {
    width: 100%;
    border: 1px solid var(--kc-border);
    border-radius: 12px;
    padding: 12px 16px;
    background: #f8fafc;
    color: var(--kc-dark);
    font-family: inherit;
    font-size: 15px;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
    text-align: start;
}

.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
    background: #ffffff;
    border-color: var(--kc-primary);
    box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.10);
}

.contact-form .form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-submit {
    width: 100%;
    margin-top: 6px;
}

/* =========================================================
   CONTACT RTL
   ========================================================= */

html[dir="rtl"] .contact-info {
    border-right: none;
    border-left: 1px solid var(--kc-border);
}

html[dir="rtl"] .contact-item {
    flex-direction: row-reverse;
}

html[dir="rtl"] .contact-hours {
    flex-direction: row-reverse;
}

html[dir="rtl"] .contact-form .form-group label {
    text-align: right;
}

html[dir="ltr"] .contact-form .form-group label {
    text-align: left;
}

/* =========================================================
   CONTACT RESPONSIVE
   ========================================================= */

@media (max-width: 1024px) {
    .contact-card {
        grid-template-columns: 1fr 1.1fr;
        border-radius: 24px;
    }
    .contact-info {
        padding: 30px 24px 24px;
    }
    .contact-form-wrapper {
        padding: 30px 24px 24px;
    }
    .contact-info-header h2,
    .contact-form-header h2 {
        font-size: 24px;
    }
    .contact-info-header p {
        font-size: 14px;
    }
    .contact-list {
        gap: 10px;
    }
    .contact-item {
        padding: 10px 14px;
        gap: 12px;
    }
    .contact-icon {
        width: 36px;
        height: 36px;
    }
    .contact-icon svg {
        width: 18px;
        height: 18px;
    }
    .contact-item strong {
        font-size: 13px;
    }
    .contact-item small {
        font-size: 12px;
    }
}

@media (max-width: 850px) {
    .contact-card {
        grid-template-columns: 1fr;
        border-radius: 20px;
    }
    .contact-info {
        border-right: none !important;
        border-left: none !important;
        border-bottom: 1px solid var(--kc-border);
        padding: 24px 20px 20px;
        text-align: center;
    }
    .contact-form-wrapper {
        padding: 24px 20px 20px;
    }
    .contact-info-header h2,
    .contact-form-header h2 {
        font-size: 22px;
    }
    .contact-info-header .section-label {
        margin: 0 auto 12px;
    }
    .contact-info-header p {
        font-size: 14px;
    }
    .contact-form-header {
        text-align: center;
    }
    .contact-form .form-group label {
        text-align: start;
    }
    .contact-hours {
        justify-content: center;
    }
    .contact-list {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    .contact-item {
        padding: 10px 12px;
        gap: 10px;
        flex-direction: column;
        text-align: center;
    }
    .contact-icon {
        width: 34px;
        height: 34px;
    }
    .contact-icon svg {
        width: 16px;
        height: 16px;
    }
    .contact-item strong {
        font-size: 12px;
    }
    .contact-item small {
        font-size: 11px;
    }
    html[dir="rtl"] .contact-item {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .contact-list {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    .contact-item {
        padding: 8px 10px;
        gap: 8px;
    }
    .contact-icon {
        width: 30px;
        height: 30px;
    }
    .contact-icon svg {
        width: 14px;
        height: 14px;
    }
    .contact-item strong {
        font-size: 11px;
    }
    .contact-item small {
        font-size: 10px;
    }
    .contact-info {
        padding: 20px 14px 16px;
    }
    .contact-form-wrapper {
        padding: 20px 14px 16px;
    }
    .contact-info-header h2,
    .contact-form-header h2 {
        font-size: 20px;
    }
}

/* =========================================================
   AUTH PAGES: Login / Forgot Password
   ========================================================= */

.auth-login-body {
    margin: 0;
    min-height: 100vh;
    background:
        radial-gradient(circle at top right, rgba(6, 155, 142, .10), transparent 34%),
        #f5f8fb;
    color: #142b45;
    font-family: Tahoma, Arial, sans-serif;
}

.auth-topbar {
    min-height: 82px;
    padding: 14px clamp(20px, 5vw, 58px);
    border-bottom: 1px solid #e3eaf1;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.auth-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #142b45;
    text-decoration: none;
}

.auth-brand:hover {
    text-decoration: none;
}

.auth-brand-logo {
    width: 48px;
    height: 48px;
    border-radius: 15px;
    background: linear-gradient(135deg, #08a694, #0c8d83);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    font-weight: 700;
    flex: 0 0 auto;
}

.auth-brand-title {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
}

.auth-brand-subtitle {
    margin-top: 3px;
    color: #6b7688;
    font-size: 13px;
}

.auth-topbar-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.auth-topbar-label,
.auth-lang-link {
    padding: 10px 18px;
    border-radius: 12px;
    background: #eefbf9;
    color: #087b72;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid transparent;
    white-space: nowrap;
}

.auth-lang-link {
    background: #ffffff;
    border-color: #dbe7ef;
}

.auth-lang-link:hover {
    background: #eefbf9;
    text-decoration: none;
}

.auth-shell {
    min-height: calc(100vh - 82px);
    padding: 48px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-card {
    width: min(470px, 100%);
    padding: 38px 38px 34px;
    border: 1px solid #e3eaf1;
    border-radius: 26px;
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(16, 36, 60, .07);
}

.auth-card-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 22px;
    padding: 8px 14px;
    border-radius: 999px;
    background: #eefbf9;
    color: #087b72;
    font-size: 13px;
    font-weight: 700;
}

.auth-card-badge::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #069b8e;
}

.auth-card h1 {
    margin: 0 0 9px;
    color: #142b45;
    font-size: 28px;
    line-height: 1.35;
}

.auth-intro {
    margin: 0 0 29px;
    color: #6b7688;
    font-size: 15px;
    line-height: 1.8;
}

.auth-alert {
    margin-bottom: 22px;
    padding: 13px 15px;
    border-radius: 12px;
    font-size: 14px;
    line-height: 1.8;
}

.auth-alert-error {
    border: 1px solid #fecdd3;
    background: #fff1f2;
    color: #b42336;
}

.auth-alert-success {
    border: 1px solid #bbf7d0;
    background: #ecfdf3;
    color: #067647;
}

.auth-alert-warning {
    border: 1px solid #fde68a;
    background: #fffbeb;
    color: #92400e;
}

.auth-group {
    margin-bottom: 19px;
}

.auth-group label {
    display: block;
    margin-bottom: 9px;
    color: #142b45;
    font-size: 14px;
    font-weight: 700;
}

.auth-input {
    width: 100%;
    height: 53px;
    padding: 0 16px;
    border: 1px solid #cfdae5;
    border-radius: 12px;
    outline: none;
    background: #ffffff;
    color: #142b45;
    direction: ltr;
    font-size: 16px;
    transition: border-color .2s, box-shadow .2s;
}

html[dir="ltr"] .auth-input {
    text-align: left;
}

html[dir="rtl"] .auth-input {
    text-align: right;
}

.auth-input:focus {
    border-color: #069b8e;
    box-shadow: 0 0 0 4px rgba(6, 155, 142, .12);
}

.auth-input::placeholder {
    color: #9aa4b2;
}

.auth-button {
    width: 100%;
    min-height: 54px;
    margin-top: 12px;
    padding: 15px 18px;
    border: 0;
    border-radius: 13px;
    background: #069b8e;
    color: #ffffff !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    font-family: inherit;
    transition: background .2s, transform .05s;
}

.auth-button:hover {
    background: #087b72;
    text-decoration: none;
}

.auth-button-secondary {
    border: 1px solid #cfe5e2;
    background: #ffffff;
    color: #087b72 !important;
}

.auth-button-secondary:hover {
    background: #f0fbf9;
}

.auth-login-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 12px;
}

.auth-login-options .auth-button {
    margin-top: 0;
}

.auth-employee-box {
    margin-top: 22px;
    padding: 14px 15px;
    border: 1px solid #dbe7ef;
    border-radius: 13px;
    background: #f8fbfd;
    color: #6b7688;
    text-align: center;
    font-size: 14px;
    line-height: 1.8;
}

.auth-employee-box strong {
    color: #142b45;
}

.auth-employee-box a {
    color: #087b72;
    font-weight: 700;
    text-decoration: none;
}

.auth-employee-box a:hover {
    text-decoration: underline;
}

.auth-footer {
    margin-top: 27px;
    padding-top: 22px;
    border-top: 1px solid #eef2f6;
    color: #6b7688;
    text-align: center;
    font-size: 14px;
    line-height: 1.9;
}

.auth-footer a {
    color: #087b72;
    font-weight: 700;
    text-decoration: none;
}

.auth-footer a:hover {
    text-decoration: underline;
}

.auth-footer-separator {
    margin: 0 7px;
    color: #c2cbd5;
}

.auth-hidden-field {
    position: absolute !important;
    right: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

html[dir="ltr"] .auth-hidden-field {
    right: auto !important;
    left: -9999px !important;
}

@media (max-width: 560px) {
    .auth-topbar {
        min-height: 72px;
        padding: 12px 16px;
    }
    .auth-brand-logo {
        width: 42px;
        height: 42px;
    }
    .auth-brand-title {
        font-size: 19px;
    }
    .auth-brand-subtitle {
        font-size: 12px;
    }
    .auth-topbar-label {
        display: none;
    }
    .auth-lang-link {
        padding: 9px 13px;
        font-size: 13px;
    }
    .auth-shell {
        align-items: flex-start;
        padding-top: 30px;
    }
    .auth-card {
        padding: 28px 22px 26px;
        border-radius: 20px;
    }
    .auth-card h1 {
        font-size: 24px;
    }
    .auth-login-options {
        grid-template-columns: 1fr;
    }
}