/* =========================================================
   FILE: /home/kashwzpq/public_html/style.css
   Kashier Cloud Public Website
   VERSION: V1.2252
========================================================= */

:root {
    --kc-primary: #0f766e;
    --kc-primary-dark: #0a5b56;
    --kc-primary-deep: #064e49;
    --kc-primary-light: #14b8a6;
    --kc-secondary: #2563eb;
    --kc-secondary-dark: #1d4ed8;
    --kc-text: #0f172a;
    --kc-text-soft: #334155;
    --kc-muted: #64748b;
    --kc-border: #e2e8f0;
    --kc-border-soft: #edf2f7;
    --kc-bg: #f8fafc;
    --kc-white: #ffffff;
    --kc-soft: #ecfdf5;
    --kc-soft-blue: #eff6ff;
    --kc-danger: #b42318;
    --kc-danger-bg: #fef3f2;
    --kc-success: #087443;
    --kc-success-bg: #ecfdf3;
    --kc-radius-sm: 12px;
    --kc-radius: 18px;
    --kc-radius-lg: 28px;
    --kc-shadow-sm: 0 10px 25px rgba(15, 23, 42, .06);
    --kc-shadow: 0 18px 45px rgba(15, 23, 42, .10);
    --kc-shadow-lg: 0 30px 70px rgba(15, 23, 42, .14);
}

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

html {
    scroll-behavior: smooth;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    direction: rtl;
    min-height: 100vh;
    background: var(--kc-bg);
    color: var(--kc-text);
    font-family: Tahoma, Arial, sans-serif;
    line-height: 1.75;
    text-rendering: optimizeLegibility;
}

body,
button,
input,
select,
textarea {
    font-family: Tahoma, Arial, sans-serif;
}

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

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

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

p {
    margin-top: 0;
}

.kc-container {
    width: min(1200px, calc(100% - 40px));
    margin-right: auto;
    margin-left: auto;
}

/* =========================================================
   HEADER
========================================================= */

.kc-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    border-bottom: 1px solid rgba(226, 232, 240, .92);
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 1px 0 rgba(15, 23, 42, .03);
    backdrop-filter: blur(14px);
}

.kc-nav {
    width: min(1200px, calc(100% - 40px));
    min-height: 82px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.kc-brand {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--kc-text);
}

.kc-logo-icon {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: 15px;
    background: linear-gradient(135deg, var(--kc-primary), var(--kc-primary-light));
    box-shadow: 0 12px 25px rgba(15, 118, 110, .22);
}

.kc-logo-icon svg {
    width: 32px;
    height: 32px;
}

.kc-brand-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
    line-height: 1.25;
    white-space: nowrap;
}

.kc-brand-name {
    font-size: 22px;
    font-weight: 900;
}

.kc-brand-tagline {
    color: var(--kc-muted);
    font-size: 11px;
    font-weight: 700;
}

.kc-menu {
    flex: 1 1 auto;
}

.kc-links {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
    list-style: none;
}

.kc-link {
    min-height: 44px;
    padding: 10px 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    color: var(--kc-text-soft);
    font-size: 14px;
    font-weight: 800;
    white-space: nowrap;
    transition: color .18s ease, background .18s ease, transform .18s ease;
}

.kc-link:hover,
.kc-link.is-active {
    color: var(--kc-primary);
    background: #f0fdfa;
}

.kc-link-login {
    margin-right: 6px;
    border: 1px solid #d6e2e4;
    color: var(--kc-primary);
}

.kc-link-register {
    margin-right: 3px;
    padding-right: 20px;
    padding-left: 20px;
    color: var(--kc-white);
    background: var(--kc-primary);
    box-shadow: 0 10px 22px rgba(15, 118, 110, .18);
}

.kc-link-register:hover {
    color: var(--kc-white);
    background: var(--kc-primary-dark);
    transform: translateY(-1px);
}

.kc-menu-button {
    display: none;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid var(--kc-border);
    border-radius: 12px;
    background: var(--kc-white);
    color: var(--kc-text);
    cursor: pointer;
}

.kc-menu-button span {
    display: block;
    width: 21px;
    height: 2px;
    margin: 4px auto;
    border-radius: 999px;
    background: currentColor;
}

/* =========================================================
   BUTTONS / LABELS
========================================================= */

.btn {
    min-height: 50px;
    padding: 13px 25px;
    border: 1px solid transparent;
    border-radius: 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--kc-primary);
    color: var(--kc-white);
    font-size: 15px;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 12px 25px rgba(15, 118, 110, .18);
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}

.btn:hover {
    background: var(--kc-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 17px 30px rgba(15, 118, 110, .24);
}

.btn-lg {
    min-height: 56px;
    padding: 15px 29px;
    font-size: 16px;
}

.btn-outline {
    border-color: #cbd5e1;
    background: var(--kc-white);
    color: var(--kc-primary);
    box-shadow: none;
}

.btn-outline:hover {
    border-color: #99d7d1;
    background: #f0fdfa;
    color: var(--kc-primary-dark);
}

.btn-light {
    background: var(--kc-white);
    color: var(--kc-primary);
    box-shadow: 0 14px 30px rgba(2, 44, 42, .14);
}

.btn-light:hover {
    background: #f8fffe;
    color: var(--kc-primary-dark);
}

.btn-ghost-light {
    border-color: rgba(255, 255, 255, .42);
    background: rgba(255, 255, 255, .08);
    color: var(--kc-white);
    box-shadow: none;
}

.btn-ghost-light:hover {
    background: rgba(255, 255, 255, .16);
}

.section-label {
    width: fit-content;
    min-height: 32px;
    padding: 5px 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--kc-soft);
    color: var(--kc-primary);
    font-size: 13px;
    font-weight: 900;
}

.section-label-light {
    background: rgba(255, 255, 255, .13);
    color: var(--kc-white);
    border: 1px solid rgba(255, 255, 255, .18);
}

/* =========================================================
   HOME HERO
========================================================= */

.home-hero {
    position: relative;
    overflow: hidden;
    padding: 82px 0 92px;
    background:
        radial-gradient(circle at 12% 18%, rgba(20, 184, 166, .16), transparent 28%),
        radial-gradient(circle at 92% 12%, rgba(37, 99, 235, .10), transparent 27%),
        linear-gradient(180deg, #ffffff 0%, #f6fffd 100%);
}

.home-hero::before {
    content: "";
    position: absolute;
    inset: auto auto -190px -160px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(20, 184, 166, .08);
    filter: blur(5px);
}

.hero-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(440px, .95fr);
    align-items: center;
    gap: 72px;
}

.hero-eyebrow {
    width: fit-content;
    margin-bottom: 21px;
    padding: 8px 13px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border: 1px solid #ccece8;
    border-radius: 999px;
    background: rgba(236, 253, 245, .92);
    color: var(--kc-primary-dark);
    font-size: 13px;
    font-weight: 900;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 0 5px rgba(16, 185, 129, .12);
}

.hero-content h1 {
    max-width: 650px;
    margin: 0 0 20px;
    color: var(--kc-text);
    font-size: clamp(42px, 5.5vw, 68px);
    line-height: 1.24;
    letter-spacing: -1.5px;
    font-weight: 900;
}

.hero-content h1 span {
    display: block;
    color: var(--kc-primary);
}

.hero-description {
    max-width: 640px;
    margin-bottom: 29px;
    color: var(--kc-muted);
    font-size: 18px;
    line-height: 2;
}

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

.hero-trust {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    color: var(--kc-muted);
    font-size: 13px;
    font-weight: 700;
}

.hero-trust span {
    white-space: nowrap;
}

.hero-preview {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preview-window {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 560px;
    padding: 20px;
    border: 1px solid rgba(148, 163, 184, .28);
    border-radius: 28px;
    background: rgba(255, 255, 255, .95);
    box-shadow: var(--kc-shadow-lg);
}

.preview-topbar {
    padding-bottom: 17px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--kc-border-soft);
}

.preview-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.preview-logo {
    width: 39px;
    height: 39px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--kc-primary), var(--kc-primary-light));
    color: var(--kc-white);
    font-size: 17px;
    font-weight: 900;
}

.preview-brand div {
    display: flex;
    flex-direction: column;
    line-height: 1.35;
}

.preview-brand strong {
    font-size: 13px;
}

.preview-brand small {
    color: var(--kc-muted);
    font-size: 10px;
}

.preview-status {
    padding: 5px 9px;
    border-radius: 999px;
    background: var(--kc-success-bg);
    color: var(--kc-success);
    font-size: 10px;
    font-weight: 900;
}

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

.preview-stat {
    padding: 16px;
    border: 1px solid var(--kc-border-soft);
    border-radius: 16px;
    background: #fbfdff;
}

.preview-stat span,
.preview-stat small {
    display: block;
    color: var(--kc-muted);
    font-size: 10px;
}

.preview-stat strong {
    display: block;
    margin: 4px 0 2px;
    font-size: 21px;
}

.preview-body {
    margin-top: 14px;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 13px;
}

.preview-chart,
.preview-products {
    min-height: 220px;
    padding: 15px;
    border: 1px solid var(--kc-border-soft);
    border-radius: 17px;
    background: #fff;
}

.chart-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.chart-head strong {
    font-size: 12px;
}

.chart-head span {
    color: var(--kc-muted);
    font-size: 9px;
}

.chart-bars {
    height: 155px;
    margin-top: 19px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 8px;
}

.chart-bars span {
    flex: 1;
    min-width: 14px;
    border-radius: 8px 8px 3px 3px;
    background: linear-gradient(180deg, var(--kc-primary-light), var(--kc-primary));
    box-shadow: inset 0 -10px 20px rgba(6, 78, 73, .12);
}

.chart-bar-1 { height: 38%; }
.chart-bar-2 { height: 52%; }
.chart-bar-3 { height: 45%; }
.chart-bar-4 { height: 72%; }
.chart-bar-5 { height: 61%; }
.chart-bar-6 { height: 86%; }
.chart-bar-7 { height: 74%; }

.preview-products {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    background: #fbfdff;
}

.preview-product {
    padding: 11px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 13px;
    background: var(--kc-white);
    box-shadow: 0 7px 18px rgba(15, 23, 42, .05);
}

.product-icon {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: var(--kc-soft);
    font-size: 16px;
}

.preview-product div {
    display: flex;
    flex-direction: column;
    line-height: 1.4;
}

.preview-product strong {
    font-size: 10px;
}

.preview-product small {
    color: var(--kc-muted);
    font-size: 8px;
}

.floating-card {
    position: absolute;
    z-index: 3;
    min-width: 190px;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(226, 232, 240, .85);
    border-radius: 15px;
    background: rgba(255, 255, 255, .96);
    box-shadow: var(--kc-shadow);
}

.floating-card-top {
    top: 46px;
    right: -40px;
}

.floating-card-bottom {
    bottom: 43px;
    left: -42px;
}

.floating-icon {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    background: var(--kc-success-bg);
    color: var(--kc-success);
    font-weight: 900;
}

.floating-icon.blue {
    background: var(--kc-soft-blue);
    color: var(--kc-secondary);
}

.floating-card div {
    display: flex;
    flex-direction: column;
    line-height: 1.35;
}

.floating-card strong {
    font-size: 11px;
}

.floating-card small {
    color: var(--kc-muted);
    font-size: 9px;
}

/* =========================================================
   STRIP / GENERAL SECTIONS
========================================================= */

.brand-strip {
    border-top: 1px solid var(--kc-border);
    border-bottom: 1px solid var(--kc-border);
    background: var(--kc-white);
}

.brand-strip-grid {
    min-height: 112px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.brand-strip-grid > div {
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 1px solid var(--kc-border-soft);
}

.brand-strip-grid > div:last-child {
    border-left: 0;
}

.brand-strip-grid strong {
    font-size: 16px;
}

.brand-strip-grid span {
    color: var(--kc-muted);
    font-size: 13px;
}

.section {
    padding: 92px 0;
}

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

.section-soft {
    background:
        radial-gradient(circle at 10% 20%, rgba(20, 184, 166, .07), transparent 24%),
        var(--kc-bg);
}

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

.section-heading h2 {
    margin: 13px 0 13px;
    font-size: clamp(30px, 4vw, 43px);
    line-height: 1.4;
    font-weight: 900;
}

.section-heading p {
    margin-bottom: 0;
    color: var(--kc-muted);
    font-size: 16px;
    line-height: 1.9;
}

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

.feature-card {
    min-height: 250px;
    padding: 28px 25px;
    border: 1px solid var(--kc-border);
    border-radius: 20px;
    background: var(--kc-white);
    box-shadow: var(--kc-shadow-sm);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #b7ddd9;
    box-shadow: var(--kc-shadow);
}

.feature-card-highlight {
    border-color: #8fe0d7;
    background:
        linear-gradient(145deg, rgba(236, 253, 245, .94), rgba(255, 255, 255, .98));
}

.feature-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 19px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    background: var(--kc-soft);
    font-size: 23px;
}

.feature-card h3 {
    margin: 0 0 10px;
    font-size: 19px;
    font-weight: 900;
}

.feature-card p {
    margin: 0;
    color: var(--kc-muted);
    font-size: 14px;
    line-height: 1.95;
}

/* =========================================================
   ZATCA
========================================================= */

.zatca-section {
    overflow: hidden;
    color: var(--kc-white);
    background:
        radial-gradient(circle at 10% 20%, rgba(20, 184, 166, .24), transparent 28%),
        radial-gradient(circle at 90% 70%, rgba(37, 99, 235, .18), transparent 30%),
        linear-gradient(135deg, #052e2b 0%, #064e49 52%, #0f766e 100%);
}

.zatca-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, .78fr);
    align-items: center;
    gap: 80px;
}

.zatca-content h2 {
    max-width: 720px;
    margin: 14px 0 16px;
    font-size: clamp(31px, 4vw, 47px);
    line-height: 1.45;
    font-weight: 900;
}

.zatca-content > p {
    max-width: 740px;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, .78);
    font-size: 16px;
    line-height: 2;
}

.zatca-points {
    margin-bottom: 31px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 11px 20px;
    color: rgba(255, 255, 255, .93);
    font-size: 14px;
    font-weight: 800;
}

.zatca-card {
    position: relative;
    padding: 27px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 26px;
    background: rgba(255, 255, 255, .96);
    color: var(--kc-text);
    box-shadow: 0 35px 70px rgba(0, 0, 0, .22);
}

.zatca-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.zatca-mark {
    padding: 6px 12px;
    border-radius: 10px;
    background: var(--kc-primary);
    color: var(--kc-white);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1px;
}

.zatca-check {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--kc-success-bg);
    color: var(--kc-success);
    font-weight: 900;
}

.zatca-card h3 {
    margin: 23px 0 16px;
    font-size: 22px;
}

.invoice-demo {
    padding: 16px;
    border: 1px solid var(--kc-border);
    border-radius: 16px;
    background: #fbfdff;
}

.invoice-demo-row,
.invoice-demo-total {
    padding: 9px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    border-bottom: 1px dashed var(--kc-border);
    font-size: 12px;
}

.invoice-demo-row span {
    color: var(--kc-muted);
}

.invoice-demo-total {
    padding-bottom: 0;
    border-bottom: 0;
    color: var(--kc-primary);
    font-size: 14px;
}

.qr-demo {
    width: 96px;
    height: 96px;
    margin: 21px auto 0;
    padding: 8px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
    border: 1px solid var(--kc-border);
    border-radius: 13px;
    background: var(--kc-white);
}

.qr-demo span {
    border-radius: 2px;
    background: var(--kc-text);
}

.qr-demo span:nth-child(3n),
.qr-demo span:nth-child(5n) {
    background: transparent;
}

/* =========================================================
   BENEFITS / CTA
========================================================= */

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.benefit-item {
    min-height: 160px;
    padding: 27px;
    display: flex;
    align-items: flex-start;
    gap: 17px;
    border: 1px solid var(--kc-border);
    border-radius: 20px;
    background: var(--kc-white);
    box-shadow: var(--kc-shadow-sm);
}

.benefit-item > span {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: var(--kc-soft);
    color: var(--kc-primary);
    font-size: 13px;
    font-weight: 900;
}

.benefit-item h3 {
    margin: 2px 0 8px;
    font-size: 19px;
}

.benefit-item p {
    margin: 0;
    color: var(--kc-muted);
    font-size: 14px;
    line-height: 1.9;
}

.home-cta {
    padding: 0 0 85px;
    background: var(--kc-bg);
}

.home-cta-box {
    min-height: 280px;
    padding: 48px 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    border-radius: 30px;
    color: var(--kc-white);
    background:
        radial-gradient(circle at 10% 20%, rgba(255, 255, 255, .13), transparent 26%),
        linear-gradient(135deg, var(--kc-primary-deep), var(--kc-primary), var(--kc-primary-light));
    box-shadow: 0 30px 70px rgba(15, 118, 110, .25);
}

.home-cta-box h2 {
    max-width: 720px;
    margin: 13px 0 10px;
    font-size: clamp(29px, 4vw, 42px);
    line-height: 1.4;
}

.home-cta-box p {
    max-width: 720px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, .82);
    font-size: 15px;
}

.home-cta-actions {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* =========================================================
   PAGE HERO
========================================================= */

.page-hero {
    padding: 70px 0 96px;
    text-align: center;
    color: var(--kc-white);
    background:
        radial-gradient(circle at 18% 12%, rgba(255, 255, 255, .16), transparent 27%),
        radial-gradient(circle at 85% 70%, rgba(37, 99, 235, .15), transparent 24%),
        linear-gradient(135deg, #064e49 0%, #0f766e 55%, #14b8a6 100%);
}

.page-hero h1 {
    margin: 13px 0 10px;
    font-size: clamp(35px, 5vw, 52px);
    line-height: 1.35;
    font-weight: 900;
}

.page-hero p {
    max-width: 730px;
    margin: 0 auto;
    color: rgba(255, 255, 255, .88);
    font-size: 17px;
    line-height: 1.95;
}

/* =========================================================
   PRICING
========================================================= */

.pricing-area {
    padding: 0 0 85px;
    background: var(--kc-bg);
}

.pricing-toggle {
    position: relative;
    z-index: 3;
    width: fit-content;
    margin: -31px auto 25px;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 1px solid var(--kc-border);
    border-radius: 16px;
    background: var(--kc-white);
    box-shadow: var(--kc-shadow);
}

.pricing-toggle button {
    min-width: 104px;
    min-height: 43px;
    padding: 10px 17px;
    border: 0;
    border-radius: 11px;
    background: transparent;
    color: var(--kc-muted);
    font-size: 14px;
    font-weight: 900;
    cursor: pointer;
    transition: color .18s ease, background .18s ease;
}

.pricing-toggle button:hover {
    color: var(--kc-primary);
    background: #f0fdfa;
}

.pricing-toggle button.active {
    color: var(--kc-white);
    background: var(--kc-primary);
    box-shadow: 0 9px 20px rgba(15, 118, 110, .22);
}

.pricing-card-main {
    width: min(980px, 100%);
    margin: 0 auto;
    padding: 36px;
    border: 1px solid var(--kc-border);
    border-radius: 28px;
    background: var(--kc-white);
    box-shadow: var(--kc-shadow);
}

.pricing-card-main[data-plan="yearly"] {
    border-color: #84ddd3;
}

.pricing-card-main[data-plan="trial"] {
    border-color: #a9c9fb;
}

.pricing-card-top {
    padding-bottom: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    border-bottom: 1px solid var(--kc-border-soft);
}

.pricing-badge {
    min-height: 34px;
    margin-bottom: 12px;
    padding: 5px 13px;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: var(--kc-soft);
    color: var(--kc-primary);
    font-size: 13px;
    font-weight: 900;
}

.pricing-card-main[data-plan="trial"] .pricing-badge {
    background: var(--kc-soft-blue);
    color: var(--kc-secondary);
}

.pricing-card-top h2 {
    margin: 0 0 4px;
    font-size: 30px;
}

.pricing-card-top p {
    margin: 0;
    color: var(--kc-muted);
    font-size: 14px;
}

.pricing-price {
    display: flex;
    align-items: center;
    gap: 11px;
    color: var(--kc-primary);
}

.pricing-card-main[data-plan="trial"] .pricing-price {
    color: var(--kc-secondary);
}

.pricing-price > span {
    font-size: 62px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -2px;
}

.pricing-price > div {
    display: flex;
    flex-direction: column;
    line-height: 1.35;
}

.pricing-price strong {
    color: var(--kc-text);
    font-size: 16px;
}

.pricing-price small {
    color: var(--kc-muted);
    font-size: 12px;
}

.saving-note {
    display: none;
    width: fit-content;
    margin: 22px auto 0;
    padding: 6px 13px;
    border-radius: 999px;
    background: var(--kc-success-bg);
    color: var(--kc-success);
    font-size: 13px;
    font-weight: 900;
}


.saving-note.is-visible {
    display: inline-flex;
}

.pricing-card-content {
    padding-top: 30px;
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
    gap: 40px;
}

.pricing-card-content h3 {
    margin: 0 0 14px;
    font-size: 18px;
}

.pricing-features {
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 11px 18px;
    list-style: none;
}

.pricing-features li {
    position: relative;
    padding-right: 27px;
    color: var(--kc-text-soft);
    font-size: 14px;
    line-height: 1.8;
}

.pricing-features li::before {
    content: "✓";
    position: absolute;
    top: 2px;
    right: 0;
    width: 19px;
    height: 19px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--kc-soft);
    color: var(--kc-primary);
    font-size: 11px;
    font-weight: 900;
}

.pricing-action-box {
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid var(--kc-border);
    border-radius: 20px;
    background: #fbfdff;
}

.pricing-action-label {
    margin-bottom: 8px;
    color: var(--kc-primary);
    font-size: 13px;
    font-weight: 900;
}

.pricing-action-box p {
    margin-bottom: 20px;
    color: var(--kc-muted);
    font-size: 14px;
}

.pricing-action-btn {
    width: 100%;
}

.pricing-card-main[data-plan="trial"] .pricing-action-btn {
    background: var(--kc-secondary);
    box-shadow: 0 12px 25px rgba(37, 99, 235, .18);
}

.pricing-card-main[data-plan="trial"] .pricing-action-btn:hover {
    background: var(--kc-secondary-dark);
}

.pricing-action-box small {
    margin-top: 12px;
    color: var(--kc-muted);
    text-align: center;
    font-size: 11px;
}

.pricing-help {
    width: min(980px, 100%);
    margin: 22px auto 0;
    padding: 22px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    border: 1px solid var(--kc-border);
    border-radius: 18px;
    background: var(--kc-white);
}

.pricing-help div {
    display: flex;
    flex-direction: column;
}

.pricing-help strong {
    font-size: 15px;
}

.pricing-help span {
    color: var(--kc-muted);
    font-size: 13px;
}

/* =========================================================
   CONTACT
========================================================= */

.contact-section {
    padding: 76px 0 90px;
    background:
        radial-gradient(circle at 92% 10%, rgba(20, 184, 166, .08), transparent 22%),
        var(--kc-bg);
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, .86fr) minmax(520px, 1.14fr);
    align-items: start;
    gap: 38px;
}

.contact-intro h2 {
    margin: 12px 0 10px;
    font-size: clamp(28px, 4vw, 39px);
    line-height: 1.45;
}

.contact-intro p {
    margin-bottom: 26px;
    color: var(--kc-muted);
    font-size: 15px;
}

.contact-cards {
    display: grid;
    gap: 13px;
}

.contact-card {
    min-height: 90px;
    padding: 17px 19px;
    display: flex;
    align-items: center;
    gap: 14px;
    border: 1px solid var(--kc-border);
    border-radius: 17px;
    background: var(--kc-white);
    box-shadow: var(--kc-shadow-sm);
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.contact-card:hover {
    transform: translateY(-3px);
    border-color: #a9d9d4;
    box-shadow: var(--kc-shadow);
}

.contact-card-icon {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: var(--kc-soft);
    font-size: 22px;
}

.contact-card div {
    display: flex;
    flex-direction: column;
    line-height: 1.5;
}

.contact-card small {
    color: var(--kc-muted);
    font-size: 12px;
}

.contact-card strong {
    color: var(--kc-text);
    font-size: 17px;
}

.contact-note {
    margin-top: 18px;
    padding: 20px;
    border: 1px dashed #9fd6d0;
    border-radius: 17px;
    background: var(--kc-soft);
}

.contact-note strong {
    display: block;
    margin-bottom: 5px;
    color: var(--kc-primary-dark);
}

.contact-note p {
    margin: 0;
    color: #3d6966;
    font-size: 13px;
}

.contact-form-card {
    padding: 32px;
    border: 1px solid var(--kc-border);
    border-radius: 25px;
    background: var(--kc-white);
    box-shadow: var(--kc-shadow);
}

.contact-form-head h2 {
    margin: 0 0 5px;
    font-size: 27px;
}

.contact-form-head p {
    margin-bottom: 23px;
    color: var(--kc-muted);
    font-size: 14px;
}

.contact-form {
    display: grid;
    gap: 17px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

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

.form-group label {
    color: var(--kc-text-soft);
    font-size: 13px;
    font-weight: 900;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    min-height: 50px;
    padding: 12px 14px;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    background: var(--kc-white);
    color: var(--kc-text);
    font-size: 14px;
    outline: none;
    transition: border-color .18s ease, box-shadow .18s ease;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--kc-primary-light);
    box-shadow: 0 0 0 4px rgba(20, 184, 166, .13);
}

.contact-submit {
    width: 100%;
}

.form-honeypot {
    position: absolute !important;
    right: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.alert {
    margin-bottom: 18px;
    padding: 15px 17px;
    border: 1px solid transparent;
    border-radius: 13px;
    font-size: 13px;
    line-height: 1.8;
}

.alert ul {
    margin: 7px 0 0;
    padding-right: 20px;
}

.alert-success {
    border-color: #abefc6;
    background: var(--kc-success-bg);
    color: var(--kc-success);
}

.alert-error {
    border-color: #fecdca;
    background: var(--kc-danger-bg);
    color: var(--kc-danger);
}

/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    padding: 34px 0;
    border-top: 1px solid var(--kc-border);
    background: var(--kc-white);
}

.footer-layout {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 25px;
}

.footer-layout > div:first-child {
    display: flex;
    flex-direction: column;
    line-height: 1.45;
}

.footer-layout strong {
    font-size: 17px;
}

.footer-layout span,
.footer-copy {
    color: var(--kc-muted);
    font-size: 12px;
}

.footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-links a {
    color: var(--kc-text-soft);
    font-size: 13px;
    font-weight: 800;
}

.footer-links a:hover {
    color: var(--kc-primary);
}

.footer-copy {
    text-align: left;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {
    .hero-layout {
        grid-template-columns: minmax(0, 1fr) minmax(390px, .9fr);
        gap: 44px;
    }

    .floating-card-top {
        right: -10px;
    }

    .floating-card-bottom {
        left: -10px;
    }

    .zatca-layout {
        gap: 48px;
    }

    .contact-layout {
        grid-template-columns: minmax(0, .82fr) minmax(480px, 1.18fr);
    }
}

@media (max-width: 940px) {
    .kc-menu-button {
        display: block;
        margin-right: auto;
        flex: 0 0 auto;
    }

    .kc-nav {
        min-height: 72px;
        position: relative;
    }

    .kc-brand-tagline {
        display: none;
    }

    .kc-menu {
        display: none;
        position: absolute;
        top: calc(100% + 10px);
        right: 0;
        left: 0;
        padding: 10px;
        border: 1px solid var(--kc-border);
        border-radius: 17px;
        background: var(--kc-white);
        box-shadow: var(--kc-shadow);
    }

    .kc-menu.is-open {
        display: block;
    }

    .kc-links {
        flex-direction: column;
        align-items: stretch;
        gap: 5px;
    }

    .kc-link {
        width: 100%;
        justify-content: flex-start;
        padding-right: 15px;
        padding-left: 15px;
    }

    .kc-link-login,
    .kc-link-register {
        margin-right: 0;
        justify-content: center;
    }

    .hero-layout,
    .zatca-layout,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .hero-layout {
        gap: 50px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-content h1,
    .hero-description {
        margin-right: auto;
        margin-left: auto;
    }

    .hero-eyebrow {
        margin-right: auto;
        margin-left: auto;
    }

    .hero-actions,
    .hero-trust {
        justify-content: center;
    }

    .hero-preview {
        width: min(620px, 100%);
        margin: 0 auto;
    }

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

    .brand-strip-grid > div:nth-child(2) {
        border-left: 0;
    }

    .brand-strip-grid > div:nth-child(-n+2) {
        border-bottom: 1px solid var(--kc-border-soft);
    }

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

    .zatca-content {
        text-align: center;
    }

    .zatca-content h2,
    .zatca-content > p {
        margin-right: auto;
        margin-left: auto;
    }

    .zatca-points {
        width: min(620px, 100%);
        margin-right: auto;
        margin-left: auto;
        text-align: right;
    }

    .zatca-card {
        width: min(500px, 100%);
        margin: 0 auto;
    }

    
.saving-note.is-visible {
    display: inline-flex;
}

.pricing-card-content {
        grid-template-columns: 1fr;
    }

    .contact-layout {
        gap: 28px;
    }

    .contact-info {
        text-align: center;
    }

    .contact-intro .section-label {
        margin-right: auto;
        margin-left: auto;
    }

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

    .contact-card {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    .footer-layout {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-layout > div:first-child {
        align-items: center;
    }

    .footer-copy {
        text-align: center;
    }
}

@media (max-width: 700px) {
    .kc-container,
    .kc-nav {
        width: calc(100% - 26px);
    }

    .kc-logo-icon {
        width: 43px;
        height: 43px;
        flex-basis: 43px;
        border-radius: 13px;
    }

    .kc-logo-icon svg {
        width: 28px;
        height: 28px;
    }

    .kc-brand-name {
        font-size: 19px;
    }

    .home-hero {
        padding: 58px 0 64px;
    }

    .hero-content h1 {
        font-size: clamp(37px, 11vw, 49px);
        letter-spacing: -.8px;
    }

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

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

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

    .hero-trust {
        display: grid;
        gap: 7px;
    }

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

    .preview-window {
        padding: 13px;
        border-radius: 21px;
    }

    .preview-body {
        grid-template-columns: 1fr;
    }

    .preview-products {
        min-height: auto;
    }

    .floating-card {
        display: none;
    }

    .brand-strip-grid {
        grid-template-columns: 1fr;
    }

    .brand-strip-grid > div {
        align-items: center;
        text-align: center;
        border-left: 0;
        border-bottom: 1px solid var(--kc-border-soft);
    }

    .brand-strip-grid > div:last-child {
        border-bottom: 0;
    }

    .section {
        padding: 66px 0;
    }

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

    .section-heading h2 {
        font-size: 29px;
    }

    .feature-grid,
    .benefit-grid {
        grid-template-columns: 1fr;
    }

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

    .zatca-layout {
        gap: 35px;
    }

    .zatca-content h2 {
        font-size: 30px;
    }

    .zatca-points {
        grid-template-columns: 1fr;
        text-align: right;
    }

    .home-cta {
        padding-bottom: 55px;
    }

    .home-cta-box {
        padding: 35px 22px;
        flex-direction: column;
        text-align: center;
    }

    .home-cta-actions {
        width: 100%;
    }

    .home-cta-actions .btn {
        width: 100%;
    }

    .page-hero {
        padding: 55px 0 78px;
    }

    .page-hero h1 {
        font-size: 37px;
    }

    .page-hero p {
        font-size: 15px;
    }

    .pricing-area {
        padding-bottom: 60px;
    }

    .pricing-toggle {
        width: 100%;
    }

    .pricing-toggle button {
        flex: 1;
        min-width: 0;
        padding-right: 8px;
        padding-left: 8px;
    }

    .pricing-card-main {
        padding: 24px 18px;
        border-radius: 21px;
    }

    .pricing-card-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .pricing-price {
        width: 100%;
        justify-content: center;
    }

    .pricing-features {
        grid-template-columns: 1fr;
    }

    .pricing-help {
        align-items: stretch;
        flex-direction: column;
        text-align: center;
    }

    .pricing-help .btn {
        width: 100%;
    }

    .contact-section {
        padding: 56px 0 65px;
    }

    .contact-cards,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .contact-card {
        flex-direction: row;
        justify-content: flex-start;
        text-align: right;
    }

    .contact-form-card {
        padding: 23px 17px;
        border-radius: 20px;
    }

    .footer-links {
        gap: 10px 14px;
    }
}

@media (max-width: 420px) {
    .kc-brand-text {
        max-width: 155px;
    }

    .hero-content h1 {
        font-size: 35px;
    }

    .preview-stats {
        grid-template-columns: 1fr;
    }

    .pricing-price > span {
        font-size: 52px;
    }
}
