/* ==========================================================
   PPC Landing Page Styles — Distill Works
   Single-product, high-conversion, no-nav layout.
   Shared across all /lp/{trade}-website-design pages.
   ========================================================== */

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: #0f172a;
    background: #ffffff;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
.container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }
h1, h2, h3 { font-family: 'Instrument Serif', Georgia, serif; font-weight: 400; }
a { color: inherit; }

/* ---- Hero ---- */
.lp-hero {
    padding: 3rem 0 4rem;
    background: #0f172a;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}
.lp-hero::before {
    content: "";
    position: absolute;
    top: -30%;
    right: -10%;
    width: 600px;
    height: 500px;
    background: radial-gradient(ellipse at center, rgba(245, 158, 11, 0.1) 0%, transparent 60%);
    pointer-events: none;
}
.lp-hero .container { position: relative; z-index: 1; }
.lp-hero-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 3rem;
    align-items: start;
}
.lp-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.05;
    margin-bottom: 1rem;
}
.lp-hero h1 .accent { color: #fbbf24; }
.lp-hero-sub {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #cbd5e1;
    margin-bottom: 1.5rem;
}
.lp-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 0;
}
.lp-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: #fbbf24;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.25);
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
    white-space: nowrap;
}

/* ---- Hero Form ---- */
.lp-form-card {
    background: #ffffff;
    border-radius: 0.75rem;
    padding: 1.75rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}
.lp-form-card h3 {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.35rem;
}
.lp-form-card .form-sub {
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 1.25rem;
}
.lp-form .form-group { margin-bottom: 0.75rem; }
.lp-form .form-group input,
.lp-form .form-group select {
    width: 100%;
    padding: 0.75rem 0.9rem;
    border: 2px solid #e2e8f0;
    border-radius: 0.5rem;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.95rem;
    color: #0f172a;
    background: #ffffff;
    transition: border-color 0.2s;
    appearance: auto;
}
.lp-form .form-group input::placeholder { color: #94a3b8; }
.lp-form .form-group input:focus,
.lp-form .form-group select:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}
.lp-form-submit {
    display: block;
    width: 100%;
    padding: 0.85rem;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    border: none;
    border-radius: 0.5rem;
    background: #fbbf24;
    color: #0f172a;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 16px rgba(251, 191, 36, 0.25);
}
.lp-form-submit:hover {
    background: #fcd34d;
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(251, 191, 36, 0.4);
}
.lp-form-submit:disabled { opacity: 0.7; cursor: wait; }
.lp-form-success {
    text-align: center;
    padding: 1.5rem 0;
}
.lp-form-success h3 {
    color: #10b981;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}
.lp-form-success p { color: #475569; font-size: 0.95rem; }

/* ---- Social Proof Bar ---- */
.lp-proof-bar {
    padding: 1.25rem 0;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}
.lp-proof-bar-inner {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem 2.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #64748b;
}
.lp-proof-bar-inner span { color: #f59e0b; }

/* ---- Features Grid ---- */
.lp-features {
    padding: 4rem 0;
}
.lp-features h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    text-align: center;
    margin-bottom: 0.5rem;
    color: #0f172a;
}
.lp-features .section-sub {
    text-align: center;
    color: #64748b;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.lp-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.lp-feature-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    padding: 1.5rem;
}
.lp-feature-card h3 {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
}
.lp-feature-card p {
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.5;
}

/* ---- Pricing ---- */
.lp-pricing {
    padding: 4rem 0;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
}
.lp-pricing h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    text-align: center;
    margin-bottom: 0.5rem;
}
.lp-pricing .section-sub {
    text-align: center;
    color: #64748b;
    margin-bottom: 2.5rem;
}
.lp-pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 700px;
    margin: 0 auto;
}
.lp-pricing-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
}
.lp-pricing-card.featured {
    border-color: #fbbf24;
    box-shadow: 0 4px 20px rgba(251, 191, 36, 0.15);
    position: relative;
}
.lp-pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #fbbf24;
    color: #0f172a;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.lp-pricing-card h3 {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}
.lp-pricing-card .price {
    font-size: 2.25rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1;
}
.lp-pricing-card .price-period {
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 1.25rem;
}
.lp-pricing-card ul {
    list-style: none;
    flex: 1;
    margin-bottom: 1.5rem;
}
.lp-pricing-card ul li {
    font-size: 0.9rem;
    color: #334155;
    padding: 0.35rem 0;
    padding-left: 1.5rem;
    position: relative;
}
.lp-pricing-card ul li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
}
.lp-pricing-cta {
    display: block;
    text-align: center;
    padding: 0.8rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.2s;
    margin-top: auto;
}
.lp-pricing-cta.primary {
    background: #fbbf24;
    color: #0f172a;
}
.lp-pricing-cta.primary:hover { background: #fcd34d; }
.lp-pricing-cta.secondary {
    border: 1px solid #cbd5e1;
    color: #334155;
}
.lp-pricing-cta.secondary:hover { border-color: #3b82f6; color: #2563eb; }

/* ---- How It Works ---- */
.lp-how {
    padding: 4rem 0;
}
.lp-how h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    text-align: center;
    margin-bottom: 2.5rem;
}
.lp-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}
.lp-step { text-align: center; }
.lp-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #0f172a;
    color: #fbbf24;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}
.lp-step h3 {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.lp-step p { font-size: 0.9rem; color: #475569; }

/* ---- Proof Section ---- */
.lp-proof {
    padding: 4rem 0;
    background: #0f172a;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}
.lp-proof::before {
    content: "";
    position: absolute;
    top: -30%;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 400px;
    background: radial-gradient(ellipse at center, rgba(245, 158, 11, 0.1) 0%, transparent 60%);
    pointer-events: none;
}
.lp-proof .container { position: relative; z-index: 1; }
.lp-proof h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    text-align: center;
    margin-bottom: 0.5rem;
}
.lp-proof .section-sub {
    text-align: center;
    color: #94a3b8;
    margin-bottom: 2.5rem;
}
.lp-proof-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    max-width: 400px;
    margin: 0 auto 2rem;
}

/* Faux browser card (reused from inventory strip) */
.lp-proof-card {
    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}
.lp-card-chrome {
    display: flex;
    gap: 0.35rem;
    padding: 0.55rem 0.75rem;
    background: #f1f5f9;
    border-bottom: 1px solid #e2e8f0;
}
.lp-card-chrome span {
    width: 10px; height: 10px;
    border-radius: 50%;
}
.lp-card-chrome span:nth-child(1) { background: #ef4444; }
.lp-card-chrome span:nth-child(2) { background: #fbbf24; }
.lp-card-chrome span:nth-child(3) { background: #10b981; }
.lp-card-preview {
    aspect-ratio: 16 / 10;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    background-size: cover;
    background-position: center;
}
.lp-card-preview > * { position: relative; z-index: 2; }
.lp-card-nav {
    font-size: 0.55rem;
    color: rgba(255,255,255,0.85);
    font-weight: 600;
    letter-spacing: 0.05em;
    display: flex;
    justify-content: space-between;
}
.lp-card-nav .dot {
    display: inline-block;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #fbbf24;
    margin-right: 4px;
    vertical-align: middle;
}
.lp-card-headline {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: 1.35rem;
    line-height: 1.1;
    color: #ffffff;
}
.lp-card-tagline {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.85);
    margin: 0.35rem 0 0.6rem;
}
.lp-card-cta-pill {
    display: inline-block;
    font-size: 0.6rem;
    font-weight: 700;
    color: #0f172a;
    background: #fbbf24;
    padding: 0.35rem 0.6rem;
    border-radius: 4px;
    width: fit-content;
}
.lp-card-meta {
    padding: 0.9rem 1rem;
}
.lp-card-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.25rem;
}
.lp-card-industry {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #fbbf24;
}
.lp-card-status {
    font-size: 0.72rem;
    color: #64748b;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}
.lp-card-status::before {
    content: "";
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
}
.lp-card-name {
    font-size: 0.88rem;
    font-weight: 600;
    color: #0f172a;
}

/* Proof metrics */
.lp-proof-quote {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}
.lp-proof-quote blockquote {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: 1.15rem;
    font-style: italic;
    line-height: 1.5;
    color: #e2e8f0;
    margin: 0 0 0.75rem;
}
.lp-proof-quote cite {
    display: block;
    font-size: 0.85rem;
    font-style: normal;
    color: #94a3b8;
}
.lp-proof-quote cite a {
    color: #fbbf24;
    text-decoration: none;
    margin-left: 0.5rem;
}

/* ---- FAQ ---- */
.lp-faq {
    padding: 4rem 0;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
}
.lp-faq h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    text-align: center;
    margin-bottom: 2.5rem;
}
.lp-faq-grid {
    max-width: 750px;
    margin: 0 auto;
}
.lp-faq-item {
    border-bottom: 1px solid #e2e8f0;
    padding: 1.25rem 0;
}
.lp-faq-item h3 {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #0f172a;
    cursor: pointer;
    margin-bottom: 0.5rem;
}
.lp-faq-item p {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.6;
}

/* ---- Bottom CTA ---- */
.lp-bottom-cta {
    padding: 4rem 0;
    text-align: center;
}
.lp-bottom-cta h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 0.5rem;
}
.lp-bottom-cta p {
    color: #64748b;
    margin-bottom: 1.5rem;
}
.lp-bottom-cta .scroll-btn {
    display: inline-block;
    background: #fbbf24;
    color: #0f172a;
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 4px 16px rgba(251, 191, 36, 0.25);
}
.lp-bottom-cta .scroll-btn:hover {
    background: #fcd34d;
    transform: translateY(-1px);
}

/* ---- Sticky Mobile CTA ---- */
.lp-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 0.75rem 1rem;
    background: #0f172a;
    text-align: center;
    z-index: 100;
    display: none;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
}
.lp-sticky-cta a {
    display: inline-block;
    background: #fbbf24;
    color: #0f172a;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    width: 100%;
    max-width: 400px;
}

/* ---- Minimal Footer ---- */
.lp-footer {
    padding: 1.5rem 0;
    border-top: 1px solid #e2e8f0;
    text-align: center;
    font-size: 0.8rem;
    color: #94a3b8;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
    .lp-hero-grid { grid-template-columns: 1fr; gap: 2rem; }
    .lp-features-grid { grid-template-columns: 1fr; }
    .lp-pricing-grid { grid-template-columns: 1fr; }
    .lp-steps { grid-template-columns: 1fr; gap: 1.5rem; }
    .lp-proof-grid { grid-template-columns: 1fr; }
    .lp-hero h1 { font-size: 2rem; }
    .lp-sticky-cta { display: block; }
    body { padding-bottom: 60px; }
}
@media (min-width: 769px) {
    .lp-sticky-cta { display: none !important; }
}
