:root {
    --primary: #6d28d9;
    --primary-hover: #5b21b6;
    --text-main: #111827;
    --text-muted: #6b7280;
    --bg-main: #ffffff;
    --bg-light: #f9fafb;
    --border-color: #f3f4f6;
    --icon-bg: #ffffff;
    --icon-color: #6d28d9;
    --card-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
    --diffuse-shadow: 0 10px 30px rgba(109, 40, 217, 0.05);
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: #f9f7ff; /* Soft lavender/grey base for mobile */
    line-height: 1.5;
    position: relative;
}

/* Dappled background only on desktop */
@media (min-width: 768px) {
    body {
        background-color: #f4f0ff;
    }
    
    body::before {
        content: '';
        position: fixed;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background-image: 
            radial-gradient(circle at 15% 15%, rgba(255, 255, 255, 0.95) 0%, transparent 20%),
            radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.8) 0%, transparent 25%),
            radial-gradient(circle at 65% 15%, rgba(255, 255, 255, 0.9) 0%, transparent 18%),
            radial-gradient(circle at 85% 30%, rgba(255, 255, 255, 0.85) 0%, transparent 20%),
            radial-gradient(circle at 25% 65%, rgba(255, 255, 255, 0.9) 0%, transparent 22%),
            radial-gradient(circle at 50% 55%, rgba(255, 255, 255, 0.85) 0%, transparent 25%),
            radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.9) 0%, transparent 20%),
            radial-gradient(circle at 90% 85%, rgba(255, 255, 255, 0.75) 0%, transparent 25%),
            radial-gradient(circle at 40% 85%, rgba(255, 255, 255, 0.8) 0%, transparent 22%),
            radial-gradient(circle at 70% 30%, rgba(109, 40, 217, 0.08) 0%, transparent 25%),
            radial-gradient(circle at 30% 60%, rgba(139, 92, 246, 0.07) 0%, transparent 30%),
            radial-gradient(circle at 10% 80%, rgba(124, 58, 237, 0.08) 0%, transparent 25%),
            radial-gradient(circle at 80% 60%, rgba(109, 40, 217, 0.07) 0%, transparent 28%),
            radial-gradient(circle at 50% 10%, rgba(139, 92, 246, 0.08) 0%, transparent 25%);
        z-index: -2;
        filter: blur(35px);
        animation: dappledAnimation 25s ease-in-out infinite alternate; 
        pointer-events: none;
        opacity: 0.8;
    }
}



@keyframes dappledAnimation {
    0% { transform: translate(-8%, -12%) scale(1) rotate(0deg); opacity: 0.7; }
    25% { transform: translate(12%, -5%) scale(1.08) rotate(3deg); opacity: 0.85; }
    50% { transform: translate(5%, 15%) scale(0.95) rotate(-2deg); opacity: 0.75; }
    75% { transform: translate(-15%, 8%) scale(1.12) rotate(4deg); opacity: 0.9; }
    100% { transform: translate(-8%, -12%) scale(1) rotate(0deg); opacity: 0.7; }
}

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

.container {
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.desktop-only {
    display: none;
}

.mobile-only {
    display: block;
}

/* Utility Spacing */
.mb-8 { margin-bottom: 8px; }
.mb-24 { margin-bottom: 24px; }
.mt-8 { margin-top: 8px; }

.mobile-banner {
    background-color: var(--primary);
    color: white;
    text-align: center;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
}

/* Navbar */
.navbar {
    display: none;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
    background: var(--bg-main);
}

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

.logo {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-main);
}

/* Hero Section */
.hero-section {
    padding-top: 40px;
    padding-bottom: 80px; /* Increased whitespace beneath hero */
}

.mobile-hero-header {
    text-align: center;
    padding-bottom: 24px;
}

.mobile-logo {
    font-size: 28px; /* Slightly smaller */
    font-weight: 800;
    margin-bottom: 16px; /* Tighter */
    color: #000000;
    letter-spacing: -1px;
}

.mobile-title {
    font-size: 24px; /* Slightly smaller for compactness */
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 8px;
    color: #000000;
    padding: 0 10px;
}

.mobile-subtitle {
    font-size: 16px; /* Slightly smaller */
    color: #000000;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 20px;
}

.mobile-app-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 12px; /* Move image closer to buttons */
}

.app-badge img {
    height: 40px;
    width: auto;
}

.phone-img-mobile {
    max-width: 400px; /* Bigger */
    width: 100%;
    margin: 0 auto;
    display: block;
    border-radius: 12px; /* Less rounded */
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.verification-card-mobile {
    background: #ffffff;
    border-radius: 24px 24px 0 0; /* Less rounded */
    margin-top: -120px; /* Significant overlap with hero image */
    padding: 48px 24px;
    position: relative;
    z-index: 1;
    box-shadow: 0 -20px 40px rgba(0, 0, 0, 0.08);
}

.editorial-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 0 20px;
}

.editorial-header h2 {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 8px;
    color: #111827;
}

.editorial-header p {
    font-weight: 400;
    font-size: 16px;
    color: var(--text-muted);
}

.mobile-hero-image {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
}

.phone-img-mobile {
    max-width: 280px; /* Constrain massive hero on mobile */
    width: 100%;
    height: auto;
}

.desc {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 4px;
}

.desc-sub {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

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

.app-buttons img {
    height: 44px; /* Standardized height */
}

.icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
    border: 1px solid var(--border-color);
}

.feature-text {
    display: flex;
    flex-direction: column;
    font-size: 14px;
}

.feature-text strong {
    font-weight: 600;
}

.feature-text span {
    color: var(--text-muted);
}

.highlight-color {
    color: var(--primary);
}

.highlight-link {
    color: var(--primary);
    font-weight: 600;
}

.mobile-br {
    display: block;
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px;
    border-radius: 12px; /* Matched to input radius */
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-primary {
    background: linear-gradient(to right, #6366f1, #6d28d9); /* More blue in gradient */
    color: white;
    border: none;
    box-shadow: 0 8px 20px rgba(109, 40, 217, 0.2);
}

.btn-primary:hover {
    opacity: 0.95; /* Subtle hint of interaction without animation */
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background-color: var(--bg-light);
}

.secondary-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.subtext {
    font-size: 12px;
    color: var(--text-muted);
    text-align: center;
}

.btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.btn-text-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-grow: 1;
}

.btn-subtext {
    font-size: 13px;
    font-weight: 400;
    color: var(--text-muted);
    margin-top: 2px;
}

.reference-card {
    border-radius: 16px; /* Less rounded */
    padding: 32px 24px;
    margin-bottom: 24px;
    box-shadow: var(--card-shadow);
}

.reference-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.reference-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background-color: #ffffff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.reference-header-text {
    text-align: center;
}

.reference-header-text h3 {
    font-size: 16px; /* Matched to steps-header */
    font-weight: 600;
    color: var(--text-main);
    line-height: 1.3;
    margin-bottom: 6px;
}

.reference-header-text p {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 400;
    line-height: 1.4;
}

.reference-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 16px;
    color: #9ca3af;
}

.reference-input-styled {
    width: 100%;
    padding: 18px 18px 18px 48px;
    border-radius: 12px; /* Less rounded */
    border: none;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.03); /* Softer inset shadow */
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.6); /* Lighter fill */
}

.reference-input-styled:focus {
    background-color: #ffffff;
    box-shadow: 0 0 0 2px rgba(109, 40, 217, 0.1);
}

.retrieve-btn-full {
    width: 100%;
    padding: 18px;
    border-radius: 12px; /* Matched to input radius */
    font-size: 16px;
    font-weight: 600;
    background: linear-gradient(to right, #6366f1, #6d28d9); /* More blue in gradient */
    color: white;
    border: none;
    box-shadow: 0 10px 25px rgba(109, 40, 217, 0.25);
    transition: all 0.2s ease;
}

.retrieve-btn-full:hover {
    opacity: 0.95;
}

/* Animation removed */

.reference-footer {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    text-align: center;
    color: var(--text-muted);
}

.reference-footer svg {
    margin-top: 2px;
    flex-shrink: 0;
}

.reference-footer p {
    font-size: 12px;
    line-height: 1.5;
}

/* Steps Section */
.steps-section {
    padding-bottom: 40px;
}

.steps-card {
    border-radius: 24px;
    padding: 40px 24px; /* Increased padding */
    display: flex;
    flex-direction: column;
    gap: 32px; /* Increased spacing between steps */
    box-shadow: var(--card-shadow);
}

.steps-header {
    font-weight: 700;
    font-size: 16px;
    text-align: center;
}

.steps-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
}

.step-icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background-color: #ffffff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.step-content {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.step-number {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
}

.step-subtext {
    font-size: 14px; /* Unified to 14px */
    font-weight: 400;
    color: var(--text-muted);
}

.step-text {
    display: flex;
    flex-direction: column;
    font-size: 14px;
}

.step-text strong {
    font-weight: 600;
    font-size: 15px;
    color: #000000; /* Explicitly black */
}

.step-text span {
    color: var(--text-muted);
}

.desktop-br {
    display: none;
}

.step-arrow {
    display: flex;
    justify-content: center;
}

.text-purple {
    color: var(--primary);
}

.text-underline {
    text-decoration: underline;
}

/* Promo Section */
.promo-section {
    display: none; /* Hidden on mobile, content moved to top */
    padding-top: 40px;
    padding-bottom: 40px;
    text-align: center;
}

.editorial-text {
    max-width: 800px;
    margin: 0 auto;
}

.editorial-text h2 {
    font-size: 38px;
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.15;
    color: var(--text-main);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.editorial-text p {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.editorial-text .highlight {
    color: var(--text-main);
    display: block;
    margin-top: 12px;
}

/* Unused promo styles removed */

/* Footer */
.footer {
    padding: 24px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--text-muted);
    border-top: 1px solid var(--border-color);
}

.footer-right {
    display: flex;
    gap: 16px;
}

.gradient-card-top {
    background: #f8f6ff; /* Lightest lavender for mobile tiles */
    border: 1px solid rgba(109, 40, 217, 0.05);
    border-radius: 16px; /* Less rounded */
    padding: 24px;
    position: relative;
    box-shadow: none;
}

.gradient-card-bottom {
    background: #f8f6ff; /* Lightest lavender for mobile tiles */
    border: 1px solid rgba(109, 40, 217, 0.05);
    border-radius: 16px; /* Less rounded */
    padding: 24px;
    position: relative;
    box-shadow: none;
}

.save-contact-section {
    padding-top: 40px;
    padding-bottom: 120px;
}

.save-contact-container {
    max-width: 500px;
    margin: 0 auto;
}

.contact-card-v2 {
    background: #f8f6ff; /* Lightest lavender for mobile tiles */
    border: 1px solid rgba(109, 40, 217, 0.05);
    border-radius: 16px; /* Less rounded */
    padding: 24px;
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    text-align: left;
    box-shadow: none;
}

.card-header-v2 {
    text-align: center;
    font-size: 24px;
    font-weight: 800;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    color: #1f2937;
    letter-spacing: -1px;
}

.card-body-v2 {
    padding-top: 4px;
}

.card-section-v2 {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.card-section-v2:last-child {
    border-bottom: none;
}

.card-label-v2 {
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 4px;
    font-weight: 500;
}

.card-value-v2 {
    font-size: 17px;
    color: var(--primary);
    font-weight: 600;
}

.card-footer-v2 {
    margin-top: 20px;
}

.btn-save-contact-v2 {
    display: block;
    background: linear-gradient(to right, #6366f1, #6d28d9); /* More blue in gradient */
    color: white;
    text-align: center;
    padding: 16px;
    border-radius: 12px; /* Matched to input radius */
    font-weight: 700;
    text-decoration: none;
    font-size: 16px;
    box-shadow: 0 8px 20px rgba(109, 40, 217, 0.25);
    transition: all 0.2s ease;
}

.btn-save-contact-v2:hover {
    opacity: 0.95;
}

/* Animation removed */

/* FAQ Section */
.faq-section {
    padding-top: 80px;
    padding-bottom: 80px;
}

.faq-section h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    max-width: 600px;
    margin: 0 auto;
}

.faq-item-simple {
    padding: 24px 0;
    border-bottom: 1px solid var(--border-color);
}

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

.faq-question {
    font-weight: 600;
    font-size: 17px;
    color: var(--text-main);
    display: block;
    margin-bottom: 8px;
}

.faq-answer {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* FAQ List cleanup */


/* DESKTOP STYLES */
@media (min-width: 768px) {
    .mobile-only {
        display: none !important;
    }

    .desktop-only {
        display: flex;
    }
    
    .desktop-br {
        display: block;
    }
    
    .mobile-br {
        display: none;
    }

    .navbar {
        display: none !important;
    }

    .nav-links {
        display: flex;
        gap: 32px;
        font-weight: 500;
        font-size: 15px;
    }

    .hero-section {
        min-height: calc(100vh - 80px); /* Fill most of the viewport */
        padding-top: 40px;
        padding-bottom: 40px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
    }

    .desktop-hero-layout {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .hero-content {
        max-width: 600px; /* Allow cards to be wider if needed */
    }

    .hero-action-cards {
        margin-top: 48px;
    }

    .hero-action-cards .steps-card,
    .hero-action-cards .reference-card {
        max-width: 100%;
        margin-bottom: 24px;
    }

    .hero-header {
        display: block;
        margin-bottom: 32px;
    }

    .editorial-header {
        text-align: left;
        margin-bottom: 0;
    }

    .main-title {
        font-size: 64px;
        font-weight: 800;
        letter-spacing: -2px;
        margin-bottom: 8px;
    }

    .subtitle {
        font-size: 24px;
        font-weight: 600;
        line-height: 1.2;
    }

    .subtitle .highlight {
        color: var(--text-main); /* Change to black on desktop */
    }

    .verification-content h2 {
        font-size: 32px;
    }

    .hero-image-desktop {
        display: flex;
        justify-content: center;
        perspective: 1000px;
    }

    .phone-img-desktop {
        max-width: 100%;
    }

    .btn {
        width: auto;
        padding: 16px 32px;
    }

    .secondary-action {
        flex-direction: row;
        align-items: center;
        gap: 16px;
    }

    .btn-secondary {
        border: 1px solid var(--primary);
        justify-content: space-between;
        min-width: 400px;
        padding: 12px 24px;
    }

    .btn-text-content {
        align-items: flex-start;
    }

    .subtext {
        text-align: left;
    }

    /* New Section Styles */
    body {
        height: 100vh;
        overflow: hidden;
        display: flex;
        flex-direction: column;
    }

    main {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Simplified Desktop Layout: Promo Only */
    .hero-section, .contact-section, .faq-section {
        display: none !important;
    }

    .promo-section {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
    }

    .footer {
        padding-bottom: 40px;
    }

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

    .editorial-text {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .editorial-text h2 {
        max-width: 600px;
        margin-bottom: 0;
    }

    .editorial-text h2:first-of-type {
        margin-bottom: 24px;
    }

    .feed-img-desktop {
        max-width: 420px;
        margin: 0 auto;
        display: block;
    }

    .verification-content-wrapper {
        width: 100%;
        max-width: 800px;
        margin: 0 auto;
    }

    .steps-card {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 32px;
        border-radius: 24px;
    }

    .steps-header {
        text-align: left;
        margin-bottom: 16px;
    }

    .steps-grid {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .step-arrow {
        display: none; /* Cleaner for the vertical stack */
    }

    .step-item {
        width: auto;
    }

    .reference-card {
        max-width: 600px;
        margin: 0 auto;
    }

    .save-contact-card {
        max-width: 600px;
        margin: 0 auto;
    }

    /* FAQ Section */
    .faq-section h2 {
        font-size: 32px;
        margin-bottom: 48px;
    }

    .faq-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0 80px;
        max-width: 900px;
    }

    .gradient-card-top {
        background: 
            radial-gradient(circle at 15% 15%, rgba(255, 255, 255, 0.6) 0%, transparent 50%),
            radial-gradient(circle at 85% 85%, rgba(109, 40, 217, 0.1) 0%, transparent 60%),
            linear-gradient(180deg, #f0e5ff 0%, #e8d9ff 100%);
        border: none;
        box-shadow: 0 10px 40px rgba(109, 40, 217, 0.1);
    }

    .gradient-card-bottom,
    .contact-card-v2 {
        background: 
            radial-gradient(circle at 5% 85%, rgba(255, 255, 255, 0.5) 0%, transparent 50%),
            radial-gradient(circle at 95% 15%, rgba(109, 40, 217, 0.1) 0%, transparent 60%),
            linear-gradient(180deg, #e8d9ff 0%, #dec6ff 100%);
        border: none;
        box-shadow: 0 10px 40px rgba(109, 40, 217, 0.1);
    }
}
