/* ✅ File: wwwroot/landing/site.css */

:root {
    --bg: #f8fbff;
    --bg-soft: #eef5ff;
    --surface: rgba(255, 255, 255, 0.96);
    --surface-strong: #ffffff;
    --surface-solid: #ffffff;
    --text: #0f172a;
    --text-dark: #0f172a;
    --text-muted: #64748b;
    --text-soft: #64748b;
    --primary: #3b82f6;
    --primary-strong: #2563eb;
    --primary-soft: rgba(59, 130, 246, 0.10);
    --border: rgba(15, 23, 42, 0.08);
    --border-soft: rgba(15, 23, 42, 0.06);
    --success: #22c55e;
    --shadow-xl: 0 22px 60px rgba(15, 23, 42, 0.10);
    --shadow-lg: 0 14px 30px rgba(15, 23, 42, 0.07);
    --radius-xl: 24px;
    --radius-lg: 18px;
    --radius-md: 14px;
    --container: 1120px;
}

* {
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Cairo", Arial, sans-serif;
    background:
        radial-gradient(circle at top right, rgba(59, 130, 246, 0.10), transparent 26%),
        radial-gradient(circle at left center, rgba(37, 99, 235, 0.06), transparent 22%),
        linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%);
    color: var(--text);
    overflow-x: hidden;
    user-select: none;
}

img {
    -webkit-user-drag: none;
    user-select: none;
    pointer-events: none;
}

.container {
    width: min(var(--container), calc(100% - 24px));
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(18px);
    background: rgba(255, 255, 255, 0.82);
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.nav {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #0f172a;
    font-weight: 900;
    font-size: 1rem;
}

.brand-logo {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #60a5fa 0%, #2563eb 55%, #1d4ed8 100%);
    color: #ffffff;
    box-shadow: 0 14px 28px rgba(37, 99, 235, 0.24);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.nav-links,
.nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links a {
    color: #334155;
    text-decoration: none;
    font-weight: 700;
    padding: 8px 11px;
    border-radius: 12px;
    transition: 0.22s ease;
    font-size: 0.92rem;
}

.nav-links a:hover {
    color: #0f172a;
    background: rgba(59, 130, 246, 0.08);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 14px;
    padding: 10px 15px;
    font-weight: 800;
    font-size: 0.92rem;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease;
    border: 1px solid transparent;
    cursor: pointer;
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-lg {
    min-height: 48px;
    padding: 12px 20px;
    font-size: 0.94rem;
}

.btn-primary {
    background: linear-gradient(135deg, #60a5fa 0%, #2563eb 55%, #1d4ed8 100%);
    color: #ffffff;
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.28);
}

.btn-outline {
    border-color: rgba(15, 23, 42, 0.10);
    color: #0f172a;
    background: rgba(255, 255, 255, 0.92);
}

.btn-glass {
    border-color: rgba(15, 23, 42, 0.08);
    color: #0f172a;
    background: rgba(255, 255, 255, 0.80);
    backdrop-filter: blur(12px);
}

.btn-white {
    background: #ffffff;
    color: #0f172a;
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.16);
}

.btn-outline-light {
    border-color: rgba(255, 255, 255, 0.38);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(10px);
}

.hero {
    position: relative;
    padding: 56px 0 40px;
    overflow: hidden;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(8px);
    pointer-events: none;
}

.hero-orb-1 {
    width: 420px;
    height: 420px;
    top: -120px;
    right: -120px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.22) 0%, rgba(59, 130, 246, 0.02) 70%);
}

.hero-orb-2 {
    width: 340px;
    height: 340px;
    bottom: -120px;
    left: -100px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.14) 0%, rgba(14, 165, 233, 0.02) 72%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    gap: 24px;
    align-items: center;
}

.eyebrow,
.section-kicker {
    display: inline-block;
    padding: 7px 13px;
    border-radius: 999px;
    background: rgba(59, 130, 246, 0.10);
    color: #2563eb;
    font-size: 0.76rem;
    font-weight: 900;
    margin-bottom: 14px;
    border: 1px solid rgba(37, 99, 235, 0.12);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.section-kicker-light {
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
}

.hero-title {
    margin: 0 0 14px;
    font-size: clamp(2rem, 4.2vw, 3.4rem);
    line-height: 1.06;
    font-weight: 900;
    letter-spacing: -0.04em;
    color: #0f172a;
}

.hero-title span {
    color: #2563eb;
}

.hero-text {
    max-width: 620px;
    font-size: 0.97rem;
    line-height: 1.85;
    color: #64748b;
    margin: 0 0 20px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 16px;
}

.center-actions {
    justify-content: center;
}

.trust-badges {
    margin-top: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.trust-badges span {
    background: rgba(255, 255, 255, 0.88);
    padding: 7px 11px;
    border-radius: 10px;
    font-size: 0.76rem;
    border: 1px solid rgba(15, 23, 42, 0.06);
    color: #334155;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.05);
    backdrop-filter: blur(12px);
}

.hero-proof-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 16px;
}

.hero-proof-card {
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 18px;
    padding: 14px;
    backdrop-filter: blur(14px);
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.06);
}

.hero-proof-card strong {
    display: block;
    color: #0f172a;
    font-size: 1rem;
    font-weight: 900;
    margin-bottom: 6px;
}

.hero-proof-card span {
    color: #64748b;
    font-size: 0.84rem;
    line-height: 1.6;
}

.hero-card-wrap {
    position: relative;
}

.hero-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 248, 255, 0.96) 100%);
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

.hero-card-premium {
    position: relative;
}

.hero-card-premium::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.10), transparent 45%, rgba(37, 99, 235, 0.08));
    pointer-events: none;
}

.card-top {
    display: flex;
    gap: 8px;
    padding: 12px 14px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    background: #eef5ff;
}

.card-top span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #93c5fd;
}

.dashboard-preview {
    padding: 18px;
    position: relative;
    z-index: 1;
}

.dashboard-main-stat {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.12) 0%, rgba(37, 99, 235, 0.18) 100%);
    border: 1px solid rgba(37, 99, 235, 0.14);
    border-radius: 18px;
    padding: 18px;
    margin-bottom: 14px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.stat-label {
    font-size: 0.95rem;
    color: #475569;
    margin-bottom: 8px;
}

.stat-value {
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 8px;
    color: #0f172a;
}

.stat-note {
    color: #64748b;
    font-size: 0.92rem;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 14px;
}

.mini-card {
    background: #f8fbff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 14px;
    padding: 12px;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.04);
}

.mini-title {
    font-size: 0.86rem;
    color: #64748b;
    margin-bottom: 8px;
}

.mini-value {
    font-size: 1.05rem;
    font-weight: 900;
    color: #0f172a;
}

.progress-card {
    background: #f8fbff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 14px;
    padding: 12px;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.04);
}

.progress-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
    color: #334155;
    font-size: 0.94rem;
}

.progress-bar {
    height: 10px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.08);
    overflow: hidden;
}

.progress-fill {
    width: 78%;
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, #60a5fa 0%, #2563eb 100%);
}

.preview-footer-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 12px;
}

.preview-footer-stats div {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 14px;
    padding: 12px;
    text-align: center;
}

.preview-footer-stats span {
    display: block;
    color: #64748b;
    font-size: 0.82rem;
    margin-bottom: 6px;
}

.preview-footer-stats strong {
    color: #0f172a;
    font-size: 0.96rem;
    font-weight: 900;
}

.section {
    padding: 64px 0;
    color: var(--text-dark);
}

.section-soft {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(239, 246, 255, 0.96) 100%);
}

.section-head {
    max-width: 680px;
    margin: 0 auto 30px;
    text-align: center;
}

.section-head h2,
.cta-box h2 {
    margin: 0 0 12px;
    font-size: clamp(1.7rem, 2.4vw, 2.45rem);
    line-height: 1.16;
    font-weight: 900;
    color: #0f172a;
    letter-spacing: -0.02em;
}

.section-head p,
.cta-box p {
    margin: 0;
    color: #64748b;
    line-height: 1.8;
    font-size: 0.95rem;
}

.section-soft .section-head p,
.story-section p {
    color: #64748b;
}

.story-section {
    position: relative;
}

.story-shell {
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    gap: 18px;
    align-items: stretch;
}

.story-content,
.story-points {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 24px;
    padding: 24px;
    box-shadow: var(--shadow-lg);
}

.story-content h2 {
    margin: 0 0 12px;
    font-size: clamp(1.6rem, 2.2vw, 2.2rem);
    font-weight: 900;
    line-height: 1.2;
}

.story-content p {
    margin: 0 0 12px;
    line-height: 1.85;
    font-size: 0.95rem;
}

.story-points {
    display: grid;
    gap: 12px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 250, 255, 0.96) 100%);
}

.story-point-card {
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 18px;
    padding: 14px 16px;
    background: #f8fbff;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.04);
}

.story-point-card strong {
    display: block;
    color: #0f172a;
    font-size: 1rem;
    font-weight: 900;
    margin-bottom: 8px;
}

.story-point-card span {
    display: block;
    color: #64748b;
    line-height: 1.75;
    font-size: 0.9rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--border-soft);
    border-radius: 20px;
    padding: 20px;
    box-shadow: var(--shadow-lg);
}

.premium-card {
    position: relative;
    overflow: hidden;
}

.premium-card::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #60a5fa 0%, #2563eb 100%);
}

.feature-card h3 {
    margin: 0 0 10px;
    color: #0f172a;
    font-weight: 900;
    font-size: 1rem;
}

.feature-card p {
    margin: 0;
    color: #64748b;
    line-height: 1.75;
    font-size: 0.9rem;
}

.shots-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.shot-img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
    display: block;
    border: 1px solid rgba(15, 23, 42, 0.06);
}

.cta-section {
    padding: 0 0 64px;
}

.cta-box {
    background: linear-gradient(135deg, #60a5fa 0%, #2563eb 55%, #1d4ed8 100%);
    color: #ffffff;
    text-align: center;
    padding: 40px 24px;
    border-radius: 24px;
    box-shadow: 0 18px 44px rgba(37, 99, 235, 0.22);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.18), transparent 34%);
    pointer-events: none;
}

.cta-note {
    margin-top: 14px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.88);
}

.whatsapp-float {
    position: fixed;
    bottom: 16px;
    left: 16px;
    background: linear-gradient(135deg, #25D366 0%, #18b95a 100%);
    color: white;
    font-size: 18px;
    padding: 12px 14px;
    border-radius: 50%;
    text-decoration: none;
    z-index: 999;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
    pointer-events: auto;
}

.two-plans {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.pricing-head {
    max-width: 900px;
}

.pricing-modern-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
}

.pricing-modern-card {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 28px;
    padding: 32px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.pricing-modern-card.featured {
    border: 2px solid rgba(37, 99, 235, 0.18);
    box-shadow: 0 24px 50px rgba(37, 99, 235, 0.14);
    transform: translateY(-6px);
}

.pricing-modern-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.10);
    color: #2563eb;
    font-size: 0.82rem;
    font-weight: 800;
    margin-bottom: 18px;
}

.pricing-modern-badge.muted {
    background: rgba(15, 23, 42, 0.06);
    color: #334155;
}

.pricing-modern-card h3 {
    margin: 0 0 14px;
    font-size: 1.7rem;
    font-weight: 900;
    color: #0f172a;
}

.pricing-modern-price {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    margin-bottom: 16px;
}

.pricing-modern-price .amount {
    font-size: 4rem;
    line-height: 0.95;
    font-weight: 900;
    color: #0f172a;
}

.pricing-modern-price .currency {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: #0f172a;
}

.pricing-modern-desc {
    margin: 0 0 22px;
    color: #64748b;
    line-height: 1.9;
}

.pricing-modern-btn {
    width: 100%;
    margin-bottom: 26px;
}

.pricing-modern-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 14px;
}

.pricing-modern-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding-top: 14px;
    border-top: 1px solid rgba(15, 23, 42, 0.06);
    color: #334155;
    font-weight: 700;
    line-height: 1.8;
}

.pricing-modern-features .check {
    width: 26px;
    height: 26px;
    min-width: 26px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(34, 197, 94, 0.12);
    color: #16a34a;
    font-weight: 900;
    margin-top: 2px;
}

.contact-enterprise-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 28px;
}

.contact-enterprise-card {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 20px;
    padding: 24px;
    text-align: center;
}

.contact-enterprise-card h3 {
    margin: 0 0 10px;
    font-size: 1.05rem;
    font-weight: 900;
    color: #ffffff;
}

.contact-enterprise-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    word-break: break-word;
}

.pricing-note-box {
    margin-top: 18px;
    background: #eff6ff;
    border: 1px solid rgba(37, 99, 235, 0.14);
    color: #1e293b;
    border-radius: 18px;
    padding: 18px 20px;
    font-weight: 700;
    line-height: 1.9;
}

.pricing-modern-btn.btn-outline {
    background: #ffffff;
}

@media (max-width: 1200px) {
    .hero-grid,
    .story-shell {
        grid-template-columns: 1fr 1fr;
        gap: 18px;
    }

    .feature-grid,
    .shots-grid,
    .two-plans,
    .pricing-modern-grid,
    .contact-enterprise-grid {
        gap: 14px;
    }

    .nav-links a {
        padding: 7px 9px;
        font-size: 0.88rem;
    }

    .btn {
        padding: 9px 13px;
        font-size: 0.88rem;
    }
}

@media (max-width: 992px) {
    .hero-grid,
    .story-shell,
    .feature-grid,
    .shots-grid,
    .two-plans,
    .pricing-modern-grid,
    .contact-enterprise-grid,
    .hero-proof-grid,
    .preview-footer-stats {
        grid-template-columns: 1fr;
    }

    .nav {
        flex-wrap: wrap;
        justify-content: center;
        padding: 10px 0;
        min-height: auto;
    }

    .nav-links,
    .nav-actions {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero,
    .section {
        padding-top: 44px;
        padding-bottom: 44px;
    }

    .hero-actions,
    .nav-actions {
        flex-direction: column;
    }

    .hero-actions .btn,
    .nav-actions .btn {
        width: 100%;
    }

    .site-header {
        position: relative;
    }

    .hero-title {
        font-size: 2rem;
    }

    .feature-card,
    .cta-box,
    .story-content,
    .story-points,
    .pricing-modern-card {
        padding: 18px;
    }
}