## **styles.css**

```css
/* LORA Marketing - DFY 3D Ads Landing Page */
/* Optimized for mobile-first, high conversion */

:root {
    --primary-color: #6366f1;
    --primary-dark: #4f46e5;
    --secondary-color: #0ea5e9;
    --accent-color: #f59e0b;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --bg-white: #ffffff;
    --bg-light: #f9fafb;
    --bg-dark: #111827;
    --border-color: #e5e7eb;
    --success: #10b981;
    --error: #ef4444;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    font-size: 16px;
    background: var(--bg-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* TYPOGRAPHY */
h1, h2, h3 {
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

/* SECTIONS */
section {
    padding: 60px 0;
}

.section-headline {
    text-align: center;
    margin-bottom: 2rem;
}

.section-subheadline {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.section-caption {
    text-align: center;
    color: var(--text-secondary);
    margin-top: 1.5rem;
}

.section-intro {
    text-align: center;
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.section-close {
    text-align: center;
    font-weight: 600;
    font-size: 1.125rem;
    margin-top: 1.5rem;
}

/* BUTTONS */
.cta-button {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.125rem;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.cta-button.primary {
    background: var(--primary-color);
    color: white;
}

.cta-button.primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.3);
}

.cta-button.secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.cta-button.secondary:hover {
    background: var(--primary-color);
    color: white;
}

.cta-button.large {
    padding: 20px 40px;
    font-size: 1.25rem;
}

/* HERO SECTION */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-headline {
    color: white;
    margin-bottom: 1.5rem;
}

.hero-subheadline {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.trust-bullets {
    display: flex;
    gap: 20px;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.micro-trust {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 1rem;
}

.hero-visual {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
}

.visual-placeholder {
    background: rgba(255, 255, 255, 0.2);
    padding: 100px 20px;
    border-radius: 8px;
    font-weight: 600;
}

/* EXAMPLES SECTION */
.examples {
    background: var(--bg-light);
}

.examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 2rem;
}

.example-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.example-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.example-placeholder {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 120px 20px;
    text-align: center;
    font-weight: 600;
}

/* WHY WORKS SECTION */
.why-works {
    background: var(--primary-color);
    color: white;
    padding: 40px 0;
}

.benefits-strip {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.benefit-item {
    font-weight: 600;
}

/* PROBLEM SECTION */
.problem {
    background: var(--bg-light);
}

.problem-list {
    max-width: 600px;
    margin: 2rem auto;
}

.problem-item {
    background: white;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    border-left: 4px solid var(--error);
    font-weight: 600;
}

/* SOLUTION SECTION */
.solution-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 2rem;
}

.benefit-box {
    background: var(--bg-light);
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    border: 2px solid var(--border-color);
}

/* HOW IT WORKS */
.how-it-works {
    background: var(--bg-light);
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 3rem;
}

.step {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 1rem;
}

/* WHAT YOU GET */
.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    max-width: 800px;
    margin: 2rem auto;
}

.feature {
    padding: 15px 20px;
    background: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--success);
}

/* MID-CTA */
.mid-cta {
    background: var(--bg-dark);
    color: white;
    text-align: center;
    padding: 60px 0;
}

.mid-cta h3 {
    margin-bottom: 1.5rem;
}

/* WHO FOR */
.criteria-list {
    max-width: 600px;
    margin: 2rem auto;
}

.criteria-item {
    background: var(--bg-light);
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

/* VALUE STACK */
.value-stack {
    background: var(--bg-light);
}

.value-blocks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 2rem;
}

.value-block {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.value-block h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* PRICING */
.pricing {
    background: var(--bg-light);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.pricing-card {
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.pricing-card.popular {
    border: 3px solid var(--primary-color);
}

.card-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
}

.pricing-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.pricing-card li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.pricing-card li:last-child {
    border-bottom: none;
}

.trust-elements {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.trust-element {
    font-weight: 600;
    color: var(--success);
}

/* NOT FOR */
.not-for {
    background: var(--bg-light);
}

.not-for-list {
    max-width: 600px;
    margin: 2rem auto;
}

.not-for-item {
    background: white;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    border-left: 4px solid var(--text-secondary);
}

/* OBJECTIONS */
.objection-list {
    max-width: 600px;
    margin: 2rem auto;
}

.objection-item {
    background: var(--bg-light);
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    border-left: 4px solid var(--success);
}

/* NO FRICTION */
.no-friction {
    background: var(--bg-light);
    text-align: center;
    padding: 40px 0;
}

.friction-remove {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.friction-item {
    font-weight: 600;
}

/* FAQ */
.faq {
    background: var(--bg-light);
}

.faq-list {
    max-width: 800px;
    margin: 2rem auto;
}

.faq-item {
    background: white;
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* FINAL CTA */
.final-cta {
    background: var(--bg-dark);
    color: white;
    text-align: center;
    padding: 80px 0;
}

.cta-headline {
    color: white;
    margin-bottom: 1rem;
}

.cta-subheadline {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.risk-reducer {
    margin-top: 1.5rem;
    opacity: 0.8;
}

/* FOOTER */
footer {
    background: var(--bg-dark);
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;