/* ============================================
   Lessor — Premium Landing Page
   Inspired by: dark hero, floating dots, emoji-rich
   ============================================ */

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

:root {
    --coral: #F4613C;
    --coral-dark: #E04D2A;
    --coral-light: #FFF0EC;
    --navy: #1A1035;
    --navy-light: #2A1F4E;
    --purple: #7C5CFC;
    --purple-light: #E8D5FF;
    --green: #10B981;
    --yellow: #FBBF24;
    --red: #EF4444;
    --blue: #3B82F6;
    --bg: #FAFBFF;
    --bg-white: #FFFFFF;
    --text: #1A1035;
    --text-secondary: #6B6B80;
    --text-muted: #9CA3AF;
    --border: #E8E8F0;
    --border-light: #F3F3F8;
    --radius-sm: 10px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --shadow-sm: 0 1px 3px rgba(26,16,53,0.04);
    --shadow-md: 0 4px 12px rgba(26,16,53,0.06);
    --shadow-lg: 0 12px 32px rgba(26,16,53,0.08);
    --shadow-xl: 0 24px 48px rgba(26,16,53,0.12);
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

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

/* ============================================
   Navigation
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
}

.nav.scrolled {
    background: rgba(26, 16, 53, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

.nav-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.25rem;
    color: white;
}

.logo-emoji {
    font-size: 1.5rem;
}

.nav-links {
    display: flex;
    gap: 36px;
}

.nav-links a {
    font-size: 0.925rem;
    font-weight: 500;
    color: rgba(255,255,255,0.6);
    transition: color var(--transition);
}

.nav-links a:hover { color: white; }

.nav-right { display: flex; align-items: center; }

.nav-cta {
    background: var(--coral);
    color: white !important;
    padding: 10px 24px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all var(--transition);
}

.nav-cta:hover {
    background: var(--coral-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(244, 97, 60, 0.35);
}

.nav-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-mobile-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: var(--transition);
}

.nav-mobile {
    display: none;
    flex-direction: column;
    padding: 0 24px 20px;
    gap: 4px;
    background: var(--navy);
}

.nav-mobile a {
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}

.nav-mobile a:hover {
    background: rgba(255,255,255,0.06);
    color: white;
}

.nav-cta-mobile {
    background: var(--coral) !important;
    color: white !important;
    text-align: center;
    border-radius: 100px !important;
    margin-top: 8px;
}

@media (max-width: 768px) {
    .nav-links, .nav-right { display: none; }
    .nav-mobile-toggle { display: flex; }
    .nav-mobile.open { display: flex; }
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    background: var(--navy);
    padding: 180px 24px 120px;
    text-align: center;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 40%, rgba(124, 92, 252, 0.08) 0%, transparent 70%),
        radial-gradient(ellipse 60% 50% at 30% 60%, rgba(244, 97, 60, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

/* Floating Dots */
.dot {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.dot-red { background: var(--red); }
.dot-purple { background: var(--purple); }
.dot-yellow { background: var(--yellow); }
.dot-green { background: var(--green); }
.dot-coral { background: var(--coral); }
.dot-blue { background: var(--blue); }

.dot-1 { width: 12px; height: 12px; top: 18%; left: 8%; animation: floatDot 7s ease-in-out infinite; }
.dot-2 { width: 8px; height: 8px; top: 55%; left: 5%; animation: floatDot 9s ease-in-out infinite 1s; }
.dot-3 { width: 10px; height: 10px; bottom: 30%; left: 12%; animation: floatDot 8s ease-in-out infinite 0.5s; }
.dot-4 { width: 8px; height: 8px; top: 25%; right: 10%; animation: floatDot 6s ease-in-out infinite 2s; }
.dot-5 { width: 12px; height: 12px; top: 50%; right: 6%; animation: floatDot 10s ease-in-out infinite 1.5s; }
.dot-6 { width: 8px; height: 8px; bottom: 25%; right: 12%; animation: floatDot 7s ease-in-out infinite 3s; }
.dot-7 { width: 6px; height: 6px; top: 40%; left: 18%; animation: floatDot 8s ease-in-out infinite 2.5s; }
.dot-8 { width: 6px; height: 6px; bottom: 45%; right: 18%; animation: floatDot 9s ease-in-out infinite 0.8s; }

@keyframes floatDot {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.8; }
    50% { transform: translateY(-20px) scale(1.15); opacity: 1; }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(244, 97, 60, 0.12);
    color: var(--coral);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    border-radius: 100px;
    margin-bottom: 36px;
}

.hero h1 {
    font-size: clamp(2.5rem, 5.5vw, 4rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: white;
    margin-bottom: 40px;
}

.hero-inline-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    padding: 4px 16px 4px 4px;
    border-radius: 100px;
    font-size: 0.6em;
    vertical-align: middle;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.1);
}

.inline-avatars {
    display: inline-flex;
}

.avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    font-size: 0.8rem;
    margin-left: -6px;
    border: 2px solid var(--navy);
}

.avatar:first-child { margin-left: 0; }

.hero-cta-wrap {
    margin-bottom: 36px;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    background: var(--coral);
    color: white;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: 100px;
    transition: all var(--transition);
    box-shadow: 0 4px 24px rgba(244, 97, 60, 0.3);
}

.btn-hero:hover {
    background: var(--coral-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(244, 97, 60, 0.4);
}

.btn-appstore-hero {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: white;
    color: var(--text);
    border-radius: var(--radius-md);
    transition: all var(--transition);
}

.btn-appstore-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(255,255,255,0.2);
}

.hero-trust {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    font-weight: 500;
}

.trust-star { font-size: 1.1rem; }
.trust-label { color: rgba(255,255,255,0.4); }
.trust-score {
    color: rgba(255,255,255,0.8);
    font-weight: 700;
}
.trust-score sup {
    color: var(--yellow);
    font-size: 0.7em;
}

/* ============================================
   Features
   ============================================ */
.features {
    padding: 100px 0;
    background: linear-gradient(180deg, #F0F0FF 0%, var(--bg) 100%);
    margin-top: -1px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.feature-card {
    text-align: center;
    padding: 40px 28px;
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
    transition: all var(--transition);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.feature-emoji-wrap {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    transition: transform var(--transition);
}

.feature-card:hover .feature-emoji-wrap {
    transform: scale(1.1) rotate(-5deg);
}

.feature-emoji-purple { background: var(--purple-light); }
.feature-emoji-coral { background: var(--coral-light); }
.feature-emoji-yellow { background: #FEF3C7; }

.feature-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 0.925rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* ============================================
   Section Headers
   ============================================ */
.section-header {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: var(--coral-light);
    color: var(--coral);
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 100px;
    margin-bottom: 16px;
    letter-spacing: 0.02em;
}

.section-header h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin-bottom: 12px;
}

.section-sub {
    font-size: 1.05rem;
    color: var(--text-secondary);
}

/* ============================================
   Bento / How It Works
   ============================================ */
.bento {
    padding: 100px 0 120px;
}

.bento-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 24px;
}

.bento-card {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
    padding: 36px;
    transition: all var(--transition);
    overflow: hidden;
}

.bento-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.bento-card-lg {
    grid-row: 1 / 3;
}

.bento-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--border);
    line-height: 1;
    margin-bottom: 20px;
    transition: color var(--transition);
}

.bento-card:hover .bento-number {
    color: var(--coral-light);
}

.bento-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.bento-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Mini phone screen in bento */
.bento-phone {
    margin: 0 auto 24px;
    max-width: 220px;
}

.mini-screen {
    background: linear-gradient(135deg, #F0FDF4, #ECFDF5);
    border-radius: var(--radius-lg);
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    border: 1px solid var(--border-light);
}

.mini-greeting {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
}

.mini-input {
    padding: 12px 16px;
    background: white;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    color: var(--text-muted);
    border: 1px solid var(--border);
}

.mini-btn {
    padding: 10px;
    background: var(--coral);
    color: white;
    border-radius: var(--radius-sm);
    text-align: center;
    font-size: 0.85rem;
    font-weight: 700;
}

/* Bento icon row */
.bento-icon-row {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.bento-emoji {
    width: 48px;
    height: 48px;
    background: var(--border-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: transform var(--transition);
}

.bento-card:hover .bento-emoji {
    transform: scale(1.1);
}

/* Bento chart */
.bento-chart {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 100px;
    margin-bottom: 24px;
    padding: 0 8px;
}

.chart-bar {
    flex: 1;
    height: var(--h);
    background: var(--border-light);
    border-radius: 6px 6px 0 0;
    transition: all var(--transition);
}

.chart-bar.active {
    background: linear-gradient(180deg, var(--coral), var(--coral-dark));
}

.bento-card:hover .chart-bar {
    background: var(--purple-light);
}

.bento-card:hover .chart-bar.active {
    background: linear-gradient(180deg, var(--coral), var(--coral-dark));
}

/* ============================================
   App Preview
   ============================================ */
.app-preview {
    padding: 120px 0;
    background: var(--bg-white);
}

.preview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.preview-content .section-tag {
    margin-bottom: 20px;
}

.preview-content h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin-bottom: 16px;
}

.preview-content > p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
}

.preview-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.preview-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text);
}

.pl-check {
    width: 24px;
    height: 24px;
    background: #D1FAE5;
    color: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

/* Phone mockup */
.preview-phone {
    display: flex;
    justify-content: center;
}

.phone-frame {
    width: 280px;
    background: #111;
    border-radius: 40px;
    padding: 10px;
    box-shadow:
        0 0 0 2px #222,
        var(--shadow-xl);
    position: relative;
}

.phone-notch {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 24px;
    background: #111;
    border-radius: 0 0 14px 14px;
    z-index: 10;
}

.phone-screen {
    background: linear-gradient(180deg, #F0FDF4 0%, #FFFFFF 30%);
    border-radius: 32px;
    padding: 48px 16px 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 520px;
}

.ps-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 4px;
}

.ps-hi {
    font-size: 0.95rem;
    font-weight: 700;
}

.ps-date {
    font-size: 0.65rem;
    color: var(--text-muted);
}

.ps-card-main {
    background: linear-gradient(135deg, var(--coral), var(--coral-dark));
    border-radius: 16px;
    padding: 18px;
    color: white;
}

.ps-label {
    font-size: 0.7rem;
    opacity: 0.85;
    margin-bottom: 4px;
}

.ps-amount {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.ps-amount span {
    font-size: 0.9rem;
    opacity: 0.8;
}

.ps-due {
    font-size: 0.75rem;
    opacity: 0.9;
    margin-bottom: 10px;
}

.ps-progress {
    height: 5px;
    background: rgba(255,255,255,0.3);
    border-radius: 3px;
    overflow: hidden;
}

.ps-progress-fill {
    height: 100%;
    width: 90%;
    background: white;
    border-radius: 3px;
    animation: progressAnim 2s ease-out 0.8s both;
}

@keyframes progressAnim {
    from { width: 0; }
    to { width: 90%; }
}

.ps-card-sm {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

.ps-sm-icon { font-size: 1.1rem; }

.ps-sm-text {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.ps-sm-text strong {
    font-size: 0.78rem;
    font-weight: 600;
}

.ps-sm-text span {
    font-size: 0.65rem;
    color: var(--text-muted);
}

.ps-sm-check {
    width: 22px;
    height: 22px;
    background: #D1FAE5;
    color: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 700;
}

.ps-sm-arrow {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.ps-history {
    padding: 14px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ps-hist-title {
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.ps-hist-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
    color: var(--text-secondary);
}

.ps-paid {
    color: var(--green);
    font-weight: 600;
}

.ps-maint {
    color: var(--coral);
    font-weight: 600;
}

/* ============================================
   Pricing
   ============================================ */
.pricing {
    padding: 120px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.pricing-card {
    background: var(--bg-white);
    border: 1.5px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 36px;
    transition: all var(--transition);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.pricing-featured {
    border-color: var(--coral);
    box-shadow: 0 0 0 1px var(--coral), var(--shadow-lg);
    transform: scale(1.03);
}

.pricing-featured:hover {
    transform: scale(1.03) translateY(-6px);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--coral);
    color: white;
    padding: 6px 20px;
    font-size: 0.78rem;
    font-weight: 700;
    border-radius: 100px;
    white-space: nowrap;
}

.pricing-top {
    margin-bottom: 28px;
}

.pricing-top h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 4px;
}

.pricing-price span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
}

.pricing-top p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.pricing-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 13px;
    margin-bottom: 32px;
}

.pricing-card li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.pricing-card li span {
    color: var(--green);
    font-weight: 700;
    font-size: 0.85rem;
}

.btn-pricing {
    display: block;
    width: 100%;
    padding: 14px;
    text-align: center;
    font-weight: 700;
    font-size: 0.925rem;
    border-radius: 100px;
    border: 1.5px solid var(--border);
    color: var(--text);
    background: transparent;
    transition: all var(--transition);
}

.btn-pricing:hover {
    border-color: var(--coral);
    color: var(--coral);
    background: var(--coral-light);
}

.btn-pricing-featured {
    background: var(--coral);
    color: white;
    border-color: var(--coral);
}

.btn-pricing-featured:hover {
    background: var(--coral-dark);
    border-color: var(--coral-dark);
    color: white;
    box-shadow: 0 8px 24px rgba(244, 97, 60, 0.3);
}

/* ============================================
   Reviews
   ============================================ */
.reviews {
    padding: 120px 0;
    background: var(--bg-white);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

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

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.review-stars {
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.review-card > p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text);
}

.review-author strong {
    display: block;
    font-size: 0.9rem;
}

.review-author span {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
    padding: 80px 0 120px;
}

.cta-card {
    position: relative;
    background: var(--navy);
    border-radius: var(--radius-xl);
    padding: 80px 40px;
    text-align: center;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 60% at 50% 30%, rgba(124, 92, 252, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.cta-dot-1 { width: 10px; height: 10px; top: 15%; left: 10%; animation: floatDot 7s ease-in-out infinite; }
.cta-dot-2 { width: 8px; height: 8px; top: 25%; right: 12%; animation: floatDot 9s ease-in-out infinite 1s; }
.cta-dot-3 { width: 6px; height: 6px; bottom: 20%; left: 15%; animation: floatDot 8s ease-in-out infinite 2s; }
.cta-dot-4 { width: 10px; height: 10px; bottom: 30%; right: 8%; animation: floatDot 6s ease-in-out infinite 0.5s; }

.cta-inner {
    position: relative;
    z-index: 2;
}

.cta-card h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: white;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 16px;
}

.cta-card p {
    font-size: 1rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
    margin-bottom: 36px;
}

.btn-appstore {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: white;
    color: var(--text);
    border-radius: var(--radius-md);
    transition: all var(--transition);
}

.btn-appstore:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(255,255,255,0.15);
}

.as-small {
    display: block;
    font-size: 0.62rem;
    font-weight: 500;
    text-align: left;
    line-height: 1.2;
}

.as-big {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    text-align: left;
    line-height: 1.2;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    padding: 80px 0 40px;
    background: var(--bg);
    border-top: 1px solid var(--border-light);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-brand p {
    margin-top: 12px;
    font-size: 0.875rem;
    color: var(--text-muted);
    max-width: 280px;
    line-height: 1.6;
}

.footer-brand .nav-logo {
    color: var(--text);
}

.footer-col h4 {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text);
    margin-bottom: 16px;
}

.footer-col a {
    display: block;
    font-size: 0.875rem;
    color: var(--text-muted);
    padding: 5px 0;
    transition: color var(--transition);
}

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

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid var(--border-light);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.footer-sub {
    margin-top: 4px;
    font-size: 0.78rem;
    opacity: 0.6;
}

/* ============================================
   Animations
   ============================================ */
[data-animate] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
    .features-grid,
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .bento-grid {
        grid-template-columns: 1fr;
    }
    .bento-card-lg {
        grid-row: auto;
    }
    .preview-grid {
        gap: 48px;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 140px 24px 80px;
        min-height: auto;
    }
    .hero h1 {
        font-size: clamp(2rem, 7vw, 2.75rem);
    }
    .features-grid,
    .pricing-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    .pricing-featured {
        transform: none;
    }
    .pricing-featured:hover {
        transform: translateY(-6px);
    }
    .pricing-grid {
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }
    .preview-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .preview-phone { order: -1; }
    .preview-list {
        align-items: center;
    }
    .features, .bento, .pricing, .reviews {
        padding: 80px 0;
    }
    .app-preview {
        padding: 80px 0;
    }
    .cta-card {
        padding: 48px 24px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 480px) {
    .hero h1 br { display: none; }
    .hero-inline-badge { display: none; }
}

/* ============================================
   Legal Pages (shared)
   ============================================ */
.legal-page {
    padding: 120px 0 80px;
    min-height: 100vh;
    background: var(--bg);
}

.legal-page .container {
    max-width: 780px;
}

.legal-nav {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-light);
}

.legal-nav .nav-logo { color: var(--text); }
.legal-nav .nav-links a { color: var(--text-secondary); }
.legal-nav .nav-links a:hover { color: var(--text); }
.legal-nav.scrolled {
    background: rgba(255,255,255,0.95);
}

.legal-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 32px;
    transition: color var(--transition);
}

.legal-back:hover { color: var(--coral); }

.legal-page h1 {
    font-size: 2.25rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 8px;
}

.legal-date {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 48px;
}

.legal-page h2 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 16px;
}

.legal-page p,
.legal-page li {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 12px;
}

.legal-page ul {
    padding-left: 24px;
    margin-bottom: 16px;
}

.legal-page a {
    color: var(--coral);
    text-decoration: underline;
}
