/* Cardy Landing Page Styles */
/* Design System: Dark, Minimal, Professional */

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

:root {
    /* Colors - Cardy Brand */
    --bg-primary: #0A0A0A;
    --bg-secondary: #0F0F0F;
    --bg-card: #1A1A1A;
    --border: #2A2A2A;
    --accent: #3B82F6;
    --accent-hover: #2563EB;
    --text-primary: #FFFFFF;
    --text-secondary: #9CA3AF;
    --text-muted: #6B7280;

    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Spacing */
    --section-padding: 120px;
    --section-padding-mobile: 80px;
    --container-max: 1200px;
    --container-text: 700px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   Navigation
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 24px;
    height: 64px;
    display: flex;
    align-items: center;
    background: transparent;
    transition: background 0.3s ease;
}

.nav-scrolled {
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

.nav-container {
    max-width: var(--container-max);
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.15s ease;
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-btn {
    padding: 10px 20px;
    background: var(--accent);
    color: var(--text-primary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.nav-btn:hover {
    background: var(--accent-hover);
    transform: scale(1.02);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 24px 80px;
    background: linear-gradient(135deg, #0a0a0a 0%, #0d1321 50%, #0a0a0a 100%);
    overflow: hidden;
}

.hero-container {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    max-width: 560px;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    line-height: 1.1;
}

.text-accent {
    color: var(--accent);
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 400;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.app-badges {
    display: flex;
    gap: 12px;
    margin-bottom: 48px;
}

.app-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 8px 16px 8px 12px;
    text-decoration: none;
    color: #fff;
    transition: all 0.2s ease;
}

.app-badge:hover {
    background: #111;
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.app-badge svg {
    flex-shrink: 0;
}

.app-badge-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.app-badge-small {
    font-size: 10px;
    opacity: 0.8;
}

.app-badge-large {
    font-size: 16px;
    font-weight: 600;
}

.hero-microcopy {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 16px;
}

/* Pro Badge */
.pro-badge {
    display: inline-block;
    margin-top: 12px;
    font-size: 11px;
    font-weight: 500;
    color: var(--accent);
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    padding: 4px 10px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* CTA Badges */
.cta-badges {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

.app-badge-large svg {
    width: 28px;
    height: 28px;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    background: transparent;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    border: 1px solid var(--border);
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--text-secondary);
}

.hero-trust {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.trust-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

.trust-logos {
    display: flex;
    gap: 24px;
    align-items: center;
}

.trust-logo {
    width: 28px;
    height: 28px;
    color: var(--text-muted);
    opacity: 0.6;
    transition: opacity 0.2s;
}

.trust-logo:hover {
    opacity: 1;
}

/* Hero Phone Mockup */
.hero-phone {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-frame {
    width: 320px;
    background: #1a1a1a;
    border-radius: 55px;
    padding: 14px;
    box-shadow:
        inset 0 0 0 2px #2a2a2a,
        0 50px 100px -20px rgba(0, 0, 0, 0.7);
}

.phone-screen {
    background: #0a0a0a;
    border-radius: 44px;
    padding: 32px 20px 24px;
    text-align: center;
}

/* Avatar with ring */
.mock-avatar {
    width: 90px;
    height: 90px;
    margin: 0 auto 20px;
    border-radius: 50%;
    border: 2px solid #3B82F6;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #141414;
    box-shadow: 0 0 0 8px rgba(59, 130, 246, 0.1);
}

.mock-avatar span {
    font-size: 32px;
    font-weight: 600;
    color: #fff;
}

/* Profile info */
.mock-name {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.mock-title {
    font-size: 14px;
    color: #9ca3af;
    margin-bottom: 4px;
}

.mock-company {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 24px;
}

/* Section card */
.mock-section {
    background: #141414;
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 12px;
    text-align: left;
}

.mock-section-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: #6b7280;
    margin-bottom: 12px;
}

/* Contact items */
.mock-contact-item {
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #1f1f1f;
}

.mock-contact-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.mock-contact-item:first-of-type {
    padding-top: 0;
}

.mock-contact-icon {
    width: 36px;
    height: 36px;
    background: #1f1f1f;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    flex-shrink: 0;
}

.mock-contact-icon svg {
    width: 18px;
    height: 18px;
    color: #3B82F6;
}

.mock-contact-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mock-contact-label {
    font-size: 11px;
    color: #6b7280;
}

.mock-contact-value {
    font-size: 13px;
    color: #fff;
    font-weight: 500;
}

/* Social grid */
.mock-social-grid {
    display: flex;
    gap: 10px;
}

.mock-social-btn {
    width: 48px;
    height: 48px;
    background: #1f1f1f;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mock-social-btn svg {
    width: 20px;
    height: 20px;
    color: #fff;
}

/* Save button */
.mock-save-btn {
    width: 100%;
    padding: 16px;
    background: #fff;
    color: #000;
    border: none;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 4px;
}

.hero-micro {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 16px;
}

/* ============================================
   Buttons
   ============================================ */
.btn-primary {
    display: inline-block;
    padding: 16px 32px;
    background: var(--accent);
    color: var(--text-primary);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: scale(1.02);
}

.btn-secondary {
    display: inline-block;
    padding: 16px 32px;
    background: transparent;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    border: 1px solid var(--border);
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-secondary:hover {
    background: var(--bg-card);
    border-color: var(--text-secondary);
}

.btn-large {
    padding: 20px 40px;
}

/* ============================================
   Sections
   ============================================ */
.section {
    padding: var(--section-padding) 24px;
}

.section-dark {
    background: var(--bg-primary);
}

.section-shift {
    background: var(--bg-secondary);
}

.section-container {
    max-width: var(--container-max);
    margin: 0 auto;
}

.text-section {
    max-width: var(--container-text);
    margin: 0 auto;
}

.section-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.section-label-accent {
    color: var(--accent);
}

/* ============================================
   Old Way Section - Crumpled Card
   ============================================ */
.section-oldway {
    background: var(--bg-secondary);
}

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

.oldway-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Crumpled Business Card */
.crumpled-card {
    width: 340px;
    height: 200px;
    background: linear-gradient(145deg, #f5f5f0 0%, #e8e4da 50%, #d9d5cc 100%);
    border-radius: 8px;
    padding: 24px;
    position: relative;
    transform: rotate(-3deg);
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.4),
        inset 0 0 30px rgba(0, 0, 0, 0.05);
    filter: saturate(0.4) brightness(0.85);
    overflow: hidden;
}

.crumpled-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(125deg, transparent 40%, rgba(0,0,0,0.03) 45%, transparent 50%),
        linear-gradient(235deg, transparent 40%, rgba(0,0,0,0.03) 45%, transparent 50%),
        linear-gradient(55deg, transparent 45%, rgba(0,0,0,0.02) 50%, transparent 55%);
    pointer-events: none;
}

.card-content {
    position: relative;
    z-index: 1;
}

.card-name {
    font-size: 18px;
    font-weight: 700;
    color: #2a2a2a;
    margin-bottom: 4px;
    font-family: 'Times New Roman', serif;
}

.card-title {
    font-size: 12px;
    color: #666;
    margin-bottom: 2px;
}

.card-company {
    font-size: 13px;
    color: #444;
    font-weight: 600;
    margin-bottom: 24px;
}

.card-contact {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 11px;
    color: #555;
}

/* Coffee stain effect */
.coffee-stain {
    position: absolute;
    bottom: 20px;
    right: 30px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: radial-gradient(ellipse at center,
        rgba(139, 90, 43, 0.15) 0%,
        rgba(139, 90, 43, 0.08) 40%,
        transparent 70%);
    transform: rotate(15deg) scale(1.2, 1);
}

.coffee-stain::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 10px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: radial-gradient(ellipse at center,
        rgba(139, 90, 43, 0.1) 0%,
        transparent 60%);
}

/* Crumple lines / fold marks */
.crumple-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.crumple-lines::before {
    content: '';
    position: absolute;
    top: 30%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(0,0,0,0.08) 20%,
        rgba(0,0,0,0.08) 80%,
        transparent 100%);
}

.crumple-lines::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 40%;
    width: 1px;
    background: linear-gradient(180deg,
        transparent 0%,
        rgba(0,0,0,0.06) 30%,
        rgba(0,0,0,0.06) 70%,
        transparent 100%);
}

/* Corner damage */
.crumpled-card::after {
    content: '';
    position: absolute;
    top: -5px;
    right: 15px;
    width: 30px;
    height: 30px;
    background: var(--bg-secondary);
    transform: rotate(45deg);
    box-shadow: inset 2px 2px 4px rgba(0,0,0,0.1);
}

/* Content styling */
.oldway-content {
    max-width: 480px;
}

.oldway-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.oldway-text {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.oldway-emphasis {
    font-size: 18px;
    color: var(--text-primary);
    font-weight: 500;
    margin-top: 24px;
}

/* Responsive for oldway section */
@media (max-width: 900px) {
    .oldway-container {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }

    .oldway-visual {
        order: -1;
    }

    .oldway-content {
        max-width: 100%;
    }

    .crumpled-card {
        width: 300px;
        height: 180px;
    }
}

@media (max-width: 480px) {
    .crumpled-card {
        width: 260px;
        height: 160px;
        padding: 20px;
    }

    .card-name {
        font-size: 16px;
    }

    .oldway-title {
        font-size: 28px;
    }
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 64px;
    letter-spacing: -0.02em;
}

/* ============================================
   Story/Problem/Shift Sections
   ============================================ */
.story-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.story-lead {
    font-size: 24px;
    font-weight: 500;
    color: var(--text-primary);
}

.story-text {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.story-text em {
    font-style: italic;
}

.story-emphasis {
    font-size: 18px;
    color: var(--text-primary);
    font-weight: 500;
}

/* ============================================
   Product Showcase
   ============================================ */
.showcase-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.showcase-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.showcase-text {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

.showcase-highlight {
    font-size: 18px;
    color: var(--text-primary);
    line-height: 1.7;
}

/* Phone Mockup */
.showcase-phone {
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

/* Showcase QR Card Mockup */
.showcase-frame {
    transform: rotate(-3deg);
    width: 260px;
}

.showcase-frame:hover {
    transform: rotate(0deg) scale(1.02);
}

.qr-screen {
    text-align: center;
    padding: 24px 20px !important;
}

.qr-card-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: var(--accent);
    font-size: 13px;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.qr-avatar {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1e3a5f 0%, #0f2744 100%);
    border: 2px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 22px;
    font-weight: 600;
    color: var(--accent);
    box-shadow: 0 0 25px rgba(59, 130, 246, 0.4);
}

.qr-name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.qr-title {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.qr-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
    margin: 0 20px 20px;
}

.qr-code-wrapper {
    background: #fff;
    border-radius: 16px;
    padding: 16px;
    display: inline-block;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.qr-code-img {
    width: 140px;
    height: 140px;
    display: block;
}

.qr-tap-share {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
}

.qr-tap-share svg {
    opacity: 0.6;
}

.phone-frame {
    width: 280px;
    background: #000;
    border-radius: 40px;
    padding: 12px;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.1),
        0 25px 50px -12px rgba(0, 0, 0, 0.5),
        0 0 100px rgba(59, 130, 246, 0.15);
    transform: rotate(5deg);
    transition: transform 0.4s ease;
}

.phone-screen {
    background: var(--bg-primary);
    border-radius: 30px;
    overflow: hidden;
    padding: 20px 16px;
}

/* Mock Profile Inside Phone */
.mock-profile {
    text-align: center;
}

.mock-avatar {
    width: 80px;
    height: 80px;
    background: var(--bg-card);
    border: 2px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 24px;
    font-weight: 600;
    color: var(--text-secondary);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}

.mock-name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.mock-title {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 2px;
}

.mock-company {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.mock-section {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px;
    margin-bottom: 12px;
    text-align: left;
}

.mock-section-title {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.mock-item {
    display: flex;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
}

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

.mock-icon {
    width: 28px;
    height: 28px;
    background: var(--bg-primary);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

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

.mock-item-content {
    display: flex;
    flex-direction: column;
}

.mock-label {
    font-size: 10px;
    color: var(--text-muted);
}

.mock-value {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-primary);
}

.mock-social {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.mock-social-btn {
    width: 36px;
    height: 36px;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mock-social-btn svg {
    width: 16px;
    height: 16px;
    color: var(--text-primary);
}

.mock-save-btn {
    width: 100%;
    padding: 12px;
    background: var(--text-primary);
    color: var(--bg-primary);
    border: none;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}

/* ============================================
   How It Works - Steps
   ============================================ */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.step-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-2px);
    border-color: rgba(59, 130, 246, 0.3);
}

.step-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
}

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

.step-number {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 12px;
}

.step-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.step-desc {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============================================
   The Feel Section
   ============================================ */
.feel-section {
    text-align: center;
}

.feel-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 48px;
}

.feel-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 48px;
}

.feel-item {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.feel-closer {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
}

/* ============================================
   Features Grid
   ============================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 48px;
    max-width: 900px;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.feature-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}

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

.feature-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.feature-desc {
    font-size: 16px;
    color: var(--text-secondary);
}

/* ============================================
   Objection Cards
   ============================================ */
.objection-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.objection-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
}

.objection-question {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}

.objection-answer {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   Testimonials
   ============================================ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.testimonial-card {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 24px;
}

.testimonial-quote {
    font-size: 18px;
    font-style: italic;
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: 1.6;
}

.testimonial-author {
    font-size: 14px;
    color: var(--text-secondary);
}

/* ============================================
   Pricing
   ============================================ */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 700px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    position: relative;
}

.pricing-featured {
    border-color: var(--accent);
    box-shadow: 0 0 40px rgba(59, 130, 246, 0.15);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--text-primary);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 16px;
    border-radius: 20px;
}

.pricing-tier {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.pricing-price {
    margin-bottom: 24px;
}

.pricing-amount {
    font-size: 48px;
    font-weight: 700;
}

.pricing-period {
    font-size: 16px;
    color: var(--text-secondary);
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-features li {
    font-size: 15px;
    color: var(--text-secondary);
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-card .btn-primary,
.pricing-card .btn-secondary {
    width: 100%;
}

/* ============================================
   Final CTA
   ============================================ */
.section-cta {
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    padding: 160px 24px;
    text-align: center;
}

.cta-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.cta-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-micro {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 16px;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: #050505;
    border-top: 1px solid var(--border);
    padding: 64px 24px;
}

.footer-container {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 3fr 1fr;
    gap: 48px;
    align-items: start;
}

.footer-logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
}

.footer-tagline {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.footer-copyright {
    font-size: 14px;
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    gap: 64px;
}

.footer-column h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.footer-column a {
    display: block;
    font-size: 14px;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 4px 0;
    transition: color 0.15s ease;
}

.footer-column a:hover {
    color: var(--text-primary);
}

.footer-social {
    display: flex;
    gap: 16px;
    justify-content: flex-end;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: color 0.15s ease;
}

.social-icon:hover {
    color: var(--accent);
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

/* ============================================
   Animations
   ============================================ */
.animate-fade-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.6s ease forwards;
}

.delay-1 {
    animation-delay: 0.3s;
}

.delay-2 {
    animation-delay: 0.5s;
}

.delay-3 {
    animation-delay: 0.7s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animations for grids */
.steps-grid .step-card:nth-child(1) { transition-delay: 0s; }
.steps-grid .step-card:nth-child(2) { transition-delay: 0.1s; }
.steps-grid .step-card:nth-child(3) { transition-delay: 0.2s; }

.features-grid .feature-item:nth-child(1) { transition-delay: 0s; }
.features-grid .feature-item:nth-child(2) { transition-delay: 0.05s; }
.features-grid .feature-item:nth-child(3) { transition-delay: 0.1s; }
.features-grid .feature-item:nth-child(4) { transition-delay: 0.15s; }
.features-grid .feature-item:nth-child(5) { transition-delay: 0.2s; }
.features-grid .feature-item:nth-child(6) { transition-delay: 0.25s; }

.testimonials-grid .testimonial-card:nth-child(1) { transition-delay: 0s; }
.testimonials-grid .testimonial-card:nth-child(2) { transition-delay: 0.1s; }
.testimonials-grid .testimonial-card:nth-child(3) { transition-delay: 0.2s; }

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {
    .showcase-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .showcase-phone {
        order: -1;
    }

    .phone-frame {
        transform: rotate(0deg);
    }

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

    .footer-social {
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px;
    }

    .nav {
        padding: 0 16px;
    }

    .hero {
        padding: 100px 16px 60px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-title {
        font-size: 36px;
    }

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

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .app-badges {
        justify-content: center;
        flex-wrap: wrap;
    }

    .cta-badges {
        flex-wrap: wrap;
    }

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

    .hero-trust {
        align-items: center;
    }

    .hero-phone {
        order: -1;
    }

    .phone-frame {
        width: 280px;
        border-radius: 45px;
        padding: 12px;
    }

    .phone-screen {
        border-radius: 36px;
        padding: 24px 16px 20px;
    }

    .mock-avatar {
        width: 70px;
        height: 70px;
    }

    .mock-avatar span {
        font-size: 26px;
    }

    .mock-name {
        font-size: 18px;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 48px;
    }

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

    .features-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .objection-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

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

    .cta-title {
        font-size: 32px;
    }

    .showcase-title {
        font-size: 32px;
    }

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

    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 32px;
    }

    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .nav-links {
        gap: 16px;
    }

    .nav-link {
        display: none;
    }

    .hero {
        padding: 80px 16px 64px;
    }

    .hero-title {
        font-size: 32px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 14px 28px;
        font-size: 15px;
    }

    .phone-frame {
        width: 240px;
    }

    .step-card {
        padding: 24px;
    }

    .pricing-card {
        padding: 24px;
    }

    .section-cta {
        padding: 100px 16px;
    }
}

/* ============================================
   Selection & Focus
   ============================================ */
::selection {
    background: var(--accent);
    color: var(--text-primary);
}

:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

/* ============================================
   Scrollbar Styling
   ============================================ */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}
