/* ===== ORDRIA LANDING — MINIMAL, SCREENSHOT-FIRST ===== */

:root {
    --primary: #4F46E5;
    --primary-dark: #4338CA;
    --bg: #FAFAFA;
    --bg-alt: #FFFFFF;
    --text: #111827;
    --text-muted: #6B7280;
    --border: #E5E7EB;
    --success: #10B981;
    --error: #EF4444;
    --radius: 0.75rem;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --font: 'Inter', system-ui, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.5;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: var(--primary);
    text-decoration: none;
}

ul {
    list-style: none;
}

/* === TOP BAR === */
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 32px;
    background: #111827;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 101;
}

/* === NAV === */
.nav {
    position: fixed;
    top: 0px;
    left: 0;
    right: 0;
    height: 56px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border);
    z-index: 100;
}

.nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--text);
}

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

.nav-link {
    font-size: 0.875rem;
    color: var(--text-muted);
}

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

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.25rem;
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: all 0.15s;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
}

.btn-primary:hover {
    background: var(--primary-dark);
}

.btn-secondary {
    background: #fff;
    color: var(--text);
    border: 1px solid var(--border);
}

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

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
}

.btn-block {
    width: 100%;
}

/* === LAYOUT === */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section {
    padding: 3rem 0;
    text-align: center;
}

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

h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.section-sub {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.note {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 1rem 0;
}

/* === HERO === */
.hero {
    padding: 6rem 0 2.5rem;
    background: linear-gradient(180deg, #fff 0%, var(--bg) 100%);
}

.hero .container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Hero Stat Badges */
.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.hero-stat {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: #10B981;
    color: #fff;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
}

.hero-stat.trust {
    background: var(--primary);
}

.stat-number {
    font-weight: 800;
}

.stat-text {
    opacity: 0.95;
}

.stat-proof {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.stat-proof a {
    color: var(--primary);
    text-decoration: underline;
}

.example-note {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: -0.5rem;
    margin-bottom: 1rem;
    font-style: italic;
}

.hero-proof-line {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    background: #F0FDF4;
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    border: 1px solid #BBF7D0;
    color: #166534;
}

.hero-proof-line strong {
    font-weight: 700;
}

.hero-text {
    text-align: center;
    margin-top: 2rem;
}

.hero h1 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.hero-sub {
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.hero-target {
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.hero-btns {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

/* Old styles kept if needed */
.trust-chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.chip {
    background: #fff;
    border: 1px solid var(--border);
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-muted);
}

.hero-visual {
    text-align: center;
    display: none;
}

.hero-img {
    max-width: 420px;
    margin: 0 auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.img-caption {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

/* === SCREENSHOT === */
.screenshot-wrap {
    margin-bottom: 1rem;
}

.screenshot-main {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

/* === BUYER SECTION === */
.buyer-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.trust-list {
    text-align: left;
}

.trust-list ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.trust-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    font-weight: 500;
}

.trust-icon {
    font-size: 1.25rem;
}

@media (min-width: 768px) {
    .buyer-section {
        flex-direction: row;
        justify-content: center;
        gap: 3rem;
    }

    .screenshot-main {
        max-width: 450px;
    }

    .trust-list li {
        font-size: 1rem;
    }
}

.callouts {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.callout {
    background: #fff;
    border: 1px solid var(--border);
    padding: 0.4rem 0.65rem;
    border-radius: var(--radius);
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    white-space: nowrap;
}

.callout span {
    background: var(--primary);
    color: #fff;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    font-size: 0.65rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* === STATS STRIP === */
.stats-strip {
    background: #fff;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 1.25rem 0;
}

.stats-inline {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stat-item.highlight .stat-num {
    color: #10B981;
}

.stat-num {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text);
}

.stat-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.stat-divider {
    display: none;
    width: 1px;
    height: 24px;
    background: var(--border);
}

@media (min-width: 480px) {
    .stats-inline {
        flex-direction: row;
        justify-content: center;
        gap: 1.5rem;
    }

    .stat-divider {
        display: block;
    }
}

@media (min-width: 768px) {
    .stats-inline {
        gap: 2.5rem;
    }

    .stat-num {
        font-size: 1.5rem;
    }

    .stat-desc {
        font-size: 0.85rem;
    }
}

.stats-source {
    text-align: center;
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 0.75rem;
    opacity: 0.7;
}

.carousel {
    position: relative;
    max-width: 100%;
    margin: 0 auto 1rem;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    background: #fff;
}

.slide {
    display: none;
}

.slide.active {
    display: block;
}

.slide img {
    width: 100%;
    filter: none;
    image-rendering: -webkit-optimize-contrast;
}

.slide-caption {
    display: block;
    padding: 0.5rem;
    font-size: 0.75rem;
    color: var(--text-muted);
    background: var(--bg);
    text-align: center;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: var(--border);
    cursor: pointer;
}

.dot.active {
    background: var(--primary);
}

/* === FEATURE GRID === */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    max-width: 400px;
    margin: 0 auto;
}

.feature-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1rem;
    text-align: center;
}

.feature-card .feature-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 0.75rem;
    background: linear-gradient(135deg, var(--primary) 0%, #818CF8 100%);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card .feature-icon svg {
    stroke: #fff;
}

.feature-card h3 {
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.feature-card p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* === PAYPAL SECTION === */
.paypal-section {
    background: linear-gradient(135deg, #003087 0%, #001f5c 100%);
    color: #fff;
}

.paypal-section h2 {
    color: #fff;
}

.paypal-section .section-sub {
    color: rgba(255, 255, 255, 0.8);
}

.paypal-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.5rem 1rem;
    border-radius: 999px;
    margin-bottom: 1rem;
}

.paypal-badge svg {
    fill: #fff;
}

.paypal-badge span {
    font-size: 0.85rem;
    font-weight: 600;
}

.paypal-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1rem;
    border-radius: var(--radius);
    min-width: 70px;
}

.flow-step.highlight {
    background: var(--success);
}

.flow-num {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}

.flow-step.highlight .flow-num {
    background: rgba(255, 255, 255, 0.3);
}

.flow-step span:last-child {
    font-size: 0.75rem;
}

.flow-arrow {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.5);
}

.paypal-trust {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.paypal-trust span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
}

.paypal-trust svg {
    transform: translateY(3px);
}

.paypal-safety {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* === STEPS === */
.steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.step-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem;
    text-align: center;
}

.step-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 0.75rem;
    background: linear-gradient(135deg, #818CF8, var(--primary));
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon svg {
    color: #fff;
}

.step-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.step-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.steps-note {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-style: italic;
}

/* === COMPARE === */
.compare {
    max-width: 500px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.compare-col {
    padding: 1.25rem;
    border-radius: var(--radius);
    text-align: left;
}

.compare-col.old {
    background: #FEF2F2;
    border: 1px solid #FECACA;
}

.compare-col.new {
    background: #F0FDF4;
    border: 2px solid var(--success);
}

.compare-col h3 {
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.compare-col.old h3 {
    color: #991B1B;
}

.compare-col.new h3 {
    color: #166534;
}

.compare-col ul {
    margin: 0;
}

/* === FOOTER === */
footer {
    padding: 4rem 1rem;
    text-align: center;
    border-top: 1px solid var(--border);
    margin-top: auto;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.85rem;
    text-decoration: none;
    transition: color 0.15s;
}

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

footer>a {
    color: var(--text);
    font-weight: 600;
    text-decoration: none;
}

footer p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.compare-col li {
    font-size: 0.8rem;
    padding: 0.3rem 0;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.compare-col.old li::before {
    content: "✗";
    color: #EF4444;
    font-weight: 700;
}

.compare-col.new li::before {
    content: "✓";
    color: var(--success);
    font-weight: 700;
}

/* === PRICING === */
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
    margin-top: 1.5rem;
}

.pricing-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center;
    position: relative;
}

.pricing-card.featured {
    border: 2px solid var(--primary);
    box-shadow: 0 4px 20px rgba(79, 70, 229, 0.15);
}

.pricing-card.trial {
    border: 2px solid #0D9488;
    box-shadow: 0 4px 20px rgba(13, 148, 136, 0.15);
}

.pricing-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
}

.pricing-badge.trial-badge {
    background: #0D9488;
}

.btn-trial {
    background: #0D9488;
    color: #fff;
}

.btn-trial:hover {
    background: #0F766E;
    color: #fff;
}

.pricing-header {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.pricing-header h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.price-amount {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text);
}

.price-period {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.pricing-card ul {
    margin-bottom: 1.25rem;
    text-align: left;
}

.pricing-card li {
    padding: 0.35rem 0;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pricing-card li::before {
    content: "✓";
    color: var(--success);
    font-weight: 700;
}

@media (min-width: 640px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pricing-note {
    text-align: center;
    margin-top: 1.25rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.desktop-trust {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.75rem;
    opacity: 0.8;
}

/* === FAQ === */
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

.faq-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: left;
}

.faq-card .q {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text);
}

.faq-card .a {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}

@media (min-width: 640px) {
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.faq-contact {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.faq-contact a {
    color: var(--primary);
    font-weight: 600;
}

/* === FORM === */
.form-section {
    background: linear-gradient(180deg, var(--bg) 0%, #fff 100%);
}

/* === CONTACT OPTIONS === */
/* === FINAL CTA GROUP === */
.final-cta-group {
    max-width: 380px;
    margin: 0 auto 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.final-micro {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.secondary-link {
    font-size: 0.85rem;
    color: var(--primary);
    text-decoration: underline;
}

/* === SUPPORT === */
.support-area {
    margin-top: 1rem;
}

.support-link {
    font-size: 0.8rem;
    color: var(--text-muted);
}

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

/* === FOOTER === */
footer {
    background: var(--text);
    color: #fff;
    padding: 2rem 1rem;
    text-align: center;
}

footer a {
    color: var(--text-muted);
}

footer p {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.sticky-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid var(--border);
    padding: 0.75rem 1rem;
    gap: 1rem;
    z-index: 99;
    align-items: center;
    justify-content: space-between;
}

.sticky-bar.visible {
    display: flex;
}

.sticky-bar .btn {
    flex: 2;
    /* Main button takes more space */
}

.sticky-link {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-decoration: underline;
    white-space: nowrap;
    font-weight: 500;
}

/* === RESPONSIVE === */
@media (min-width: 640px) {
    .hero h1 {
        font-size: 2.25rem;
    }

    .hero-btns {
        flex-direction: row;
        justify-content: center;
    }

    h2 {
        font-size: 1.75rem;
    }

    .steps {
        flex-direction: row;
        max-width: 700px;
    }

    .step-card {
        flex: 1;
    }

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

    .carousel {
        max-width: 700px;
    }
}

@media (min-width: 768px) {
    .hero-visual {
        display: block;
    }

    .hero .container {
        flex-direction: row;
        align-items: center;
        text-align: left;
    }

    .hero-text {
        flex: 1;
        text-align: left;
        margin-top: 0;
    }

    .hero-btns {
        justify-content: flex-start;
    }

    .trust-chips {
        justify-content: flex-start;
    }

    .hero-visual {
        flex: 1;
    }

    .hero-img {
        max-width: 450px;
    }

    .carousel {
        max-width: 800px;
    }

    .sticky-bar {
        display: none !important;
    }
}

@media (min-width: 1024px) {
    .hero {
        padding-top: 9rem;
    }

    .hero h1 {
        font-size: 2.75rem;
    }

    .hero-img {
        max-width: 600px;
        /* Bigger screenshot */
    }

    .hero-proof-line {
        font-size: 1rem;
        padding: 0.35rem 1rem;
    }

    .section {
        padding: 4rem 0;
    }

    /* Comparison Section Desktop */
    .compare {
        grid-template-columns: 1fr 1fr;
        /* Back to 2 columns on desktop */
        gap: 2rem;
    }

    .compare-col {
        padding: 2rem;
    }

    .compare-col h3 {
        font-size: 1.1rem;
    }

    .compare-col li {
        font-size: 0.95rem;
        padding: 0.5rem 0;
    }

    .desktop-plan-shortcuts {
        display: flex !important;
    }
}

.desktop-plan-shortcuts {
    display: none;
    /* Hidden on mobile */
    margin-top: 1.5rem;
    gap: 0.75rem;
    font-size: 0.8rem;
    align-items: center;
    color: var(--text-muted);
}

.desktop-plan-shortcuts a {
    text-decoration: underline;
    color: var(--primary);
    font-weight: 600;
}

@media (max-width: 768px) {
    .hero-badges {
        justify-content: center;
    }
}

/* === MODAL === */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal {
    background: #fff;
    border-radius: var(--radius);
    padding: 1.5rem;
    max-width: 480px;
    width: 100%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.modal h3 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.modal p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.modal p strong {
    color: var(--text);
}

.modal-close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-muted);
    cursor: pointer;
    line-height: 1;
}

.modal-close:hover {
    color: var(--text);
}