/* ═══════════════════════════════════════════════════════════
   Contease Landing Page — Premium Minimal
   ═══════════════════════════════════════════════════════════ */

:root {
    --lp-black: #1d1d1f;
    --lp-gray: #494950;
    --lp-gray-muted: #86868b;
    --lp-gray-light: #f5f5f7;
    --lp-border: #d2d2d7;
    --lp-primary: #0F52BA;
    --lp-primary-hover: #0d47a1;
    --lp-white: #ffffff;
    --lp-radius: 16px;
    --lp-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--lp-font);
    background: var(--lp-white);
    color: var(--lp-black);
    overflow-x: hidden;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

[x-cloak] { display: none !important; }

/* ── Container ── */
.lp-container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 24px;
}
.lp-container-narrow {
    max-width: 720px;
}

@media (min-width: 768px) {
    .lp-container { padding: 0 40px; }
}


/* ═══════════════════════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════════════════════ */
.lp-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.lp-nav-inner {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 24px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.lp-nav-logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
    display: block;
}

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

.lp-nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--lp-gray-muted);
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 980px;
    transition: color 0.2s;
}
.lp-nav-link:hover {
    color: var(--lp-black);
}

.lp-nav-cta {
    font-size: 14px;
    font-weight: 600;
    color: var(--lp-white);
    background: var(--lp-primary);
    padding: 10px 22px;
    border-radius: 980px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
}
.lp-nav-cta:hover {
    background: var(--lp-primary-hover);
    transform: scale(1.02);
}

@media (max-width: 480px) {
    .lp-nav-link { display: none; }
    .lp-nav-link:last-of-type { display: inline; }
}


/* ═══════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════ */
.lp-hero {
    padding: 140px 24px 80px;
    text-align: center;
}

.lp-hero-content {
    max-width: 720px;
    margin: 0 auto 56px;
}

.lp-hero-title {
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.08;
    color: var(--lp-black);
    margin-bottom: 20px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    text-wrap: balance;
}

.lp-hero-desc {
    font-size: clamp(17px, 2.2vw, 21px);
    font-weight: 400;
    color: var(--lp-gray);
    line-height: 1.5;
    max-width: 560px;
    margin: 0 auto 32px;
}

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

.lp-hero-note {
    font-size: 13px;
    color: var(--lp-gray-muted);
}

/* Primary Button */
.lp-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--lp-font);
    font-size: 17px;
    font-weight: 600;
    color: var(--lp-white);
    background: var(--lp-primary);
    padding: 16px 36px;
    border-radius: 980px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
}
.lp-btn-primary:hover {
    background: var(--lp-primary-hover);
    transform: scale(1.02);
}
.lp-btn-lg {
    font-size: 18px;
    padding: 18px 42px;
}

/* Hero Video */
.lp-hero-video-wrap {
    max-width: 960px;
    margin: 0 auto;
    border-radius: var(--lp-radius);
    overflow: hidden;
}

.lp-hero-video {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}


/* ═══════════════════════════════════════════════════════════
   SOCIAL PROOF
   ═══════════════════════════════════════════════════════════ */
.lp-proof {
    padding: 64px 0;
    border-top: 1px solid var(--lp-border);
    border-bottom: 1px solid var(--lp-border);
}

.lp-proof-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.lp-proof-item {
    text-align: center;
    flex: 1;
    max-width: 280px;
}

.lp-proof-divider {
    width: 1px;
    height: 60px;
    background: var(--lp-border);
    flex-shrink: 0;
}

.lp-proof-stars {
    font-size: 18px;
    color: #f59e0b;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.lp-proof-text {
    font-size: 15px;
    font-weight: 500;
    color: var(--lp-black);
    line-height: 1.5;
    font-style: italic;
    margin-bottom: 8px;
}

.lp-proof-author {
    font-size: 13px;
    color: var(--lp-gray-muted);
}

.lp-proof-stat {
    font-size: 28px;
    font-weight: 700;
    color: var(--lp-black);
    margin-bottom: 4px;
}

.lp-proof-stat-label {
    font-size: 14px;
    color: var(--lp-gray-muted);
    line-height: 1.4;
}

@media (max-width: 768px) {
    .lp-proof-inner {
        flex-direction: column;
        gap: 32px;
    }
    .lp-proof-divider {
        width: 48px;
        height: 1px;
    }
}


/* ═══════════════════════════════════════════════════════════
   SECTION HEADERS (shared)
   ═══════════════════════════════════════════════════════════ */
.lp-section-header {
    text-align: center;
    margin-bottom: 56px;
}

.lp-section-title {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.12;
    color: var(--lp-black);
    margin-bottom: 16px;
    text-wrap: balance;
}

.lp-section-desc {
    font-size: clamp(16px, 2vw, 19px);
    color: var(--lp-gray);
    line-height: 1.5;
    max-width: 560px;
    margin: 0 auto;
}


/* ═══════════════════════════════════════════════════════════
   BENEFITS
   ═══════════════════════════════════════════════════════════ */
.lp-benefits {
    padding: 100px 0;
}

.lp-benefits-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.lp-benefit-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    background: var(--lp-gray-light);
    border-radius: 20px;
    overflow: hidden;
}

.lp-benefit-card:nth-child(even) {
    direction: rtl;
}
.lp-benefit-card:nth-child(even) > * {
    direction: ltr;
}

.lp-benefit-img-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    overflow: hidden;
}

.lp-benefit-img-wrap img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
}

.lp-benefit-body {
    padding: 48px;
}

.lp-benefit-title {
    font-size: clamp(22px, 2.5vw, 28px);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: var(--lp-black);
    margin-bottom: 14px;
    text-wrap: balance;
}

.lp-benefit-desc {
    font-size: 16px;
    color: var(--lp-gray);
    line-height: 1.6;
    margin-bottom: 24px;
}

.lp-benefit-link {
    font-size: 16px;
    font-weight: 600;
    color: var(--lp-primary);
    text-decoration: none;
    transition: opacity 0.2s;
}
.lp-benefit-link:hover {
    opacity: 0.75;
}

@media (max-width: 768px) {
    .lp-benefit-card {
        grid-template-columns: 1fr;
    }
    .lp-benefit-card:nth-child(even) { direction: ltr; }
    .lp-benefit-img-wrap { padding: 20px; }
    .lp-benefit-body { padding: 32px 24px; }
}


/* ═══════════════════════════════════════════════════════════
   STATS
   ═══════════════════════════════════════════════════════════ */
.lp-stats {
    padding: 100px 0;
    background: var(--lp-gray-light);
}

.lp-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--lp-border);
    border-radius: var(--lp-radius);
    overflow: hidden;
}

.lp-stat-card {
    background: var(--lp-white);
    padding: 40px 28px;
    text-align: center;
}

.lp-stat-number {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--lp-black);
    margin-bottom: 8px;
}

.lp-stat-label {
    font-size: 14px;
    color: var(--lp-gray);
    line-height: 1.5;
}

@media (max-width: 768px) {
    .lp-stats-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 480px) {
    .lp-stats-grid {
        grid-template-columns: 1fr;
    }
}


/* ═══════════════════════════════════════════════════════════
   HOW IT WORKS
   ═══════════════════════════════════════════════════════════ */
.lp-how {
    padding: 100px 0;
}

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

.lp-how-step {
    text-align: center;
    padding: 40px 24px;
}

.lp-how-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--lp-primary);
    color: var(--lp-white);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 24px;
}

.lp-how-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--lp-black);
    margin-bottom: 10px;
}

.lp-how-desc {
    font-size: 15px;
    color: var(--lp-gray);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .lp-how-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .lp-how-step { padding: 24px; }
}


/* ═══════════════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════════════ */
.lp-faq {
    padding: 100px 0;
    background: var(--lp-gray-light);
}

.lp-faq-list {
    max-width: 640px;
    margin: 0 auto;
}

.lp-faq-item {
    border-bottom: 1px solid var(--lp-border);
}
.lp-faq-item:first-child {
    border-top: 1px solid var(--lp-border);
}

.lp-faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 0;
    font-family: var(--lp-font);
    font-size: 17px;
    font-weight: 600;
    color: var(--lp-black);
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: color 0.2s;
}
.lp-faq-q:hover {
    color: var(--lp-primary);
}

.lp-faq-icon {
    font-size: 24px;
    font-weight: 300;
    color: var(--lp-gray-muted);
    transition: transform 0.3s;
    flex-shrink: 0;
}
.lp-faq-icon.is-open {
    transform: rotate(45deg);
}

.lp-faq-a {
    overflow: hidden;
}

.lp-faq-a p {
    padding: 0 0 20px;
    font-size: 15px;
    color: var(--lp-gray);
    line-height: 1.7;
}

.lp-faq-a a {
    color: var(--lp-primary);
    font-weight: 500;
    text-decoration: none;
}
.lp-faq-a a:hover {
    text-decoration: underline;
}


/* ═══════════════════════════════════════════════════════════
   FOOTER CTA
   ═══════════════════════════════════════════════════════════ */
.lp-footer-cta {
    padding: 100px 24px;
    text-align: center;
}

.lp-cta-title {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.12;
    color: var(--lp-black);
    margin-bottom: 16px;
    text-wrap: balance;
}

.lp-cta-desc {
    font-size: clamp(16px, 2vw, 19px);
    color: var(--lp-gray);
    line-height: 1.5;
    max-width: 520px;
    margin: 0 auto 36px;
}


/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.lp-footer {
    border-top: 1px solid var(--lp-border);
    padding: 40px 0;
}

.lp-footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

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

.lp-footer-icon {
    width: 24px;
    height: 24px;
    border-radius: 6px;
}

.lp-footer-copy {
    font-size: 13px;
    color: var(--lp-gray-muted);
}

.lp-footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px 20px;
}

.lp-footer-links a {
    font-size: 13px;
    color: var(--lp-gray-muted);
    text-decoration: none;
    transition: color 0.2s;
}
.lp-footer-links a:hover {
    color: var(--lp-black);
}

.lp-footer-social {
    display: flex;
    align-items: center;
    gap: 16px;
}

.lp-footer-social a {
    color: var(--lp-gray-muted);
    transition: color 0.2s;
}
.lp-footer-social a:hover {
    color: var(--lp-black);
}
