/* ═══════════════════════════════════════════════════
   ZAIT CASH — SHARED STYLES
   ═══════════════════════════════════════════════════ */

:root {
    --bg: #FFFFFF;
    --surface: #f6f7f8;
    --border: #e2e3e5;
    --font: #21252c;
    --font-secondary: #555b66;
    --accent: #2E7D32;
    --accent-transparent: #e8f5e976;
    --accent-hover: #43A047;
    --accent-light: #E8F5E9;
    --accent-lighter: #f1f8f1;
    --disabled: #f5f5f7;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 4px 16px rgba(0, 0, 0, 0.06);
    --radius: 2px;
    --font-display: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --max-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-body);
    color: var(--font);
    background: var(--bg);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ═══════════ TYPOGRAPHY ═══════════ */
h1,
h2,
h3,
h4 {
    font-family: var(--font-display);
    line-height: 1.15;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 800;
}

h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
}

h3 {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 600;
}

p {
    color: var(--font-secondary);
    font-size: 1.05rem;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent);
    margin-bottom: 14px;
}

.section-label::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
}

.page-header {
    padding: 120px 0 60px;
    text-align: center;
}

.page-header h1 {
    margin-bottom: 16px;
}

.page-header p {
    max-width: 560px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.breadcrumb {
    padding: 90px 0 0;
    font-size: 0.85rem;
    color: var(--font-secondary);
}

.breadcrumb a {
    color: var(--font-secondary);
    transition: color var(--transition);
}

.breadcrumb a:hover {
    color: var(--accent);
}

.breadcrumb span {
    margin: 0 8px;
    opacity: 0.4;
}

/* ═══════════ BUTTONS ═══════════ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    border-radius: var(--radius);
    font-size: 0.95rem;
    font-weight: 600;
    transition: all var(--transition);
}

.btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.btn-primary {
    background: var(--accent);
    color: white;
    box-shadow: 0 2px 8px rgba(46, 125, 50, 0.15);
}

.btn-primary:hover {
    background: var(--accent-hover);
    box-shadow: 0 4px 12px rgba(46, 125, 50, 0.2);
    transform: translateY(-1px);
}

.btn-secondary {
    background: var(--bg);
    color: var(--font);
    border: 1.5px solid var(--border);
}

.btn-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.btn-outline-white:hover {
    background: white;
    color: var(--accent);
}

/* ═══════════ NAVBAR ═══════════ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--transition);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    background: rgba(255, 255, 255, 0.408);
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}

.navbar.scrolled {
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.4rem;
}

.nav-logo img {
    width: 54px;
    height: 54px;
    object-fit: contain;
    border-radius: var(--radius);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--font-secondary);
    transition: color var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-cta {
    padding: 10px 22px !important;
    font-size: 0.85rem !important;
    color: white !important;
}

.nav-mobile-toggle {
    display: none;
    width: 32px;
    height: 32px;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
}

.nav-mobile-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--font);
    border-radius: 2px;
    transition: all var(--transition);
}

/* Mobile menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
}

.mobile-menu.open {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu a {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--font);
}

.mobile-menu a:hover {
    color: var(--accent);
}

.mobile-menu-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ═══════════ PHOTO PLACEHOLDER ═══════════ */
.photo-placeholder {
    background: #c8e6c9;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
}

.photo-placeholder svg {
    width: 40px;
    height: 40px;
    opacity: 0.5;
}

.photo-placeholder span {
    opacity: 0.6;
    font-size: 0.78rem;
}

/* ═══════════ STORE BADGES ═══════════ */
.store-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.store-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: var(--font);
    color: white;
    border-radius: var(--radius);
    transition: all var(--transition);
}

.store-badge:hover {
    background: var(--accent);
    transform: translateY(-1px);
}

.store-badge svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.store-badge-small {
    display: block;
    font-size: 0.6rem;
    opacity: 0.85;
    line-height: 1.2;
}

.store-badge-large {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.2;
}

/* ═══════════ FOOTER ═══════════ */
.footer {
    padding: 60px 0 28px;
    background: var(--font);
    color: rgba(255, 255, 255, 0.7);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr) 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.88rem;
    margin-top: 12px;
    max-width: 260px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.2rem;
    color: white;
}

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

.footer-col h4 {
    color: white;
    font-size: 0.85rem;
    margin-bottom: 16px;
    font-weight: 600;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col a {
    font-size: 0.85rem;
    transition: color var(--transition);
}

.footer-col a:hover {
    color: var(--accent-hover);
}

.footer-download h4 {
    color: white;
    font-size: 0.85rem;
    margin-bottom: 16px;
    font-weight: 600;
}

.footer-download .store-badge {
    padding: 8px 14px;
    font-size: 0.85rem;
    margin-bottom: 8px;
    width: fit-content;
}

.footer-download .store-badge-large {
    font-size: 0.85rem;
}

.footer-download .store-badge-small {
    font-size: 0.55rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    font-size: 0.8rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.8rem;
}

/* ═══════════ SCROLL REVEAL ═══════════ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-d1 {
    transition-delay: 0.1s;
}

.reveal-d2 {
    transition-delay: 0.2s;
}

.reveal-d3 {
    transition-delay: 0.3s;
}

/* ═══════════ SECTION SPACING ═══════════ */
.section {
    padding: 90px 0;
}

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

.section-dark {
    background: var(--font);
    color: white;
}

.section-dark p {
    color: rgba(255, 255, 255, 0.7);
}

/* ═══════════ TRUST STRIP ═══════════ */
.trust-strip {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    padding: 40px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.trust-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trust-icon svg {
    width: 22px;
    height: 22px;
    color: var(--accent);
}

.trust-item h4 {
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.trust-item p {
    font-size: 0.82rem;
    margin: 0;
}

/* ═══════════ QUICK STRIP ═══════════ */
.quick-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.quick-strip-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 28px 32px;
    border-right: 1px solid var(--border);
    transition: background 0.3s, transform 0.3s;
    position: relative;
    overflow: hidden;
}

.quick-strip-item:last-child {
    border-right: none;
}

.quick-strip-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.quick-strip-item:hover::before {
    transform: scaleX(1);
}

.quick-strip-item:hover {
    background: var(--accent-light);
}

.quick-strip-item:hover .quick-strip-arrow {
    transform: translateX(4px);
    color: var(--accent);
}

.quick-strip-icon {
    width: 48px;
    height: 48px;
    background: var(--accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.3s, transform 0.3s;
}

.quick-strip-item:hover .quick-strip-icon {
    background: var(--accent);
    transform: scale(1.05);
}

.quick-strip-item:hover .quick-strip-icon svg {
    color: white;
}

.quick-strip-icon svg {
    width: 22px;
    height: 22px;
    color: var(--accent);
    transition: color 0.3s;
}

.quick-strip-item h4 {
    font-size: 0.95rem;
    margin-bottom: 2px;
    color: var(--font);
}

.quick-strip-item p {
    font-size: 0.82rem;
    margin: 0;
    color: var(--font-secondary);
}

.quick-strip-arrow {
    width: 20px;
    height: 20px;
    margin-left: auto;
    flex-shrink: 0;
    color: var(--border);
    transition: transform 0.3s, color 0.3s;
}

/* ═══════════ CARD GRID ═══════════ */
.card-grid {
    display: grid;
    gap: 24px;
}

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

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

.card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    transition: all var(--transition);
}

.card:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.card-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius);
    background: var(--accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.card-icon svg {
    width: 24px;
    height: 24px;
    color: var(--accent);
}

.card h3 {
    margin-bottom: 8px;
}

.card p {
    font-size: 0.92rem;
}

.card .learn-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--accent);
    transition: gap var(--transition);
}

.card .learn-more:hover {
    gap: 10px;
}

/* ═══════════ HOW IT WORKS STEPS ═══════════ */
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    text-align: center;
}

.step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--accent);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 auto 16px;
}

.step-visual {
    width: 160px;
    height: 160px;
    margin: 0 auto 20px;
    border-radius: 50%;
}

.step h3 {
    margin-bottom: 8px;
}

.step p {
    font-size: 0.9rem;
    max-width: 280px;
    margin: 0 auto;
}

/* ═══════════ FAQ ═══════════ */
.faq-list {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color var(--transition);
}

.faq-item:hover {
    border-color: var(--accent);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--font);
    transition: color var(--transition);
}

.faq-question:hover {
    color: var(--accent);
}

.faq-chevron {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform var(--transition);
    color: var(--font-secondary);
}

.faq-item.open .faq-chevron {
    transform: rotate(180deg);
    color: var(--accent);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.open .faq-answer {
    max-height: 300px;
}

.faq-answer-inner {
    padding: 0 24px 20px;
    font-size: 0.92rem;
    color: var(--font-secondary);
    line-height: 1.7;
}

/* ═══════════ FORMS ═══════════ */
.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--font);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: var(--font);
    transition: border-color var(--transition);
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 968px) {

    .card-grid-2,
    .card-grid-3 {
        grid-template-columns: 1fr;
    }

    .steps {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }

    .nav-links {
        display: none;
    }

    .nav-mobile-toggle {
        display: flex;
    }

    .trust-strip {
        gap: 28px;
    }

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

    .quick-strip-item {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .quick-strip-item:last-child {
        border-bottom: none;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 16px;
    }

    .section {
        padding: 60px 0;
    }

    .page-header {
        padding: 100px 0 40px;
    }

    .trust-strip {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }

    .trust-item {
        flex-direction: column;
    }

    .store-buttons {
        flex-direction: column;
    }

    .store-badge {
        justify-content: center;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

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

/* ═══════════ CUSTOM CURSOR ═══════════ */
.cursor-outer {
    position: fixed;
    width: 36px;
    height: 36px;
    border: 1.5px solid var(--accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1),
        height 0.3s cubic-bezier(0.16, 1, 0.3, 1),
        opacity 0.3s ease,
        border-color 0.3s ease;
    opacity: 0;
}

.cursor-inner {
    position: fixed;
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.15s ease, height 0.15s ease, opacity 0.3s ease;
    opacity: 0;
}

.cursor-outer.visible,
.cursor-inner.visible {
    opacity: 1;
}

.cursor-outer.hovering {
    width: 50px;
    height: 50px;
    border-color: var(--accent-hover);
    opacity: 0.6;
}

.cursor-inner.hovering {
    width: 4px;
    height: 4px;
}

@media (hover: none),
(pointer: coarse) {

    .cursor-outer,
    .cursor-inner {
        display: none !important;
    }
}

body.custom-cursor-active,
body.custom-cursor-active a,
body.custom-cursor-active button,
body.custom-cursor-active input,
body.custom-cursor-active textarea,
body.custom-cursor-active [role="button"] {
    cursor: none !important;
}