/*
Theme Name: AttorneyIntake Theme
Theme URI: https://attorneyintake.com
Description: Minimal theme for AttorneyIntake - paste content approach
Version: 1.0
Author: Complete SEO
Author URI: https://completeseo.com
*/

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

:root {
    --black: #000000;
    --dark-gray: #0a0a0a;
    --lighter-black: #1a1a1a;
    --orange-primary: #ff6b35;
    --orange-secondary: #ff8c42;
    --orange-dark: #e85d2c;
    --white: #ffffff;
    --gray-light: #a0a0a0;
    --gray-mid: #666666;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Spectral', serif;
    font-weight: 400;
    line-height: 1.2;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
}

.logo {
    font-family: 'Spectral', serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--white);
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--gray-light);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 2rem;
    padding-top: 6rem;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.03) 0%, var(--black) 70%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.02) 50%, transparent 100%),
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255, 255, 255, 0.02) 2px, rgba(255, 255, 255, 0.02) 4px);
    opacity: 0.4;
    pointer-events: none;
}

.hero-content {
    max-width: 1000px;
    text-align: center;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease;
      padding-bottom: 10em;
}

.hero-label {
    display: inline-block;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 2rem;
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border: 1px solid var(--white);
    border-radius: 50px;
}

.hero h1 {
    font-size: 5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.hero h1 .highlight {
    color: var(--white);
    font-weight: 400;
}

.hero p {
    font-size: 1.4rem;
    color: var(--gray-light);
    margin-bottom: 3rem;
    line-height: 1.7;
    font-weight: 300;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--white);
    color: var(--black);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: 2px solid var(--white);
}

.cta-button:hover {
    background: transparent;
    color: var(--white);
    transform: translateY(-2px);
    border: 1px solid var(--white);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stats Bar */
.stats-bar {
    background: var(--lighter-black);
    padding: 4rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat-item {
    padding: 1rem;
}

.stat-item .number {
    font-family: 'Spectral', serif;
    font-size: 4rem;
    color: var(--white);
    font-weight: 300;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-item .label {
    font-size: 1rem;
    color: var(--gray-light);
    line-height: 1.4;
}

/* Section Styling */
section {
    padding: 6rem 2rem;
    position: relative;
}

.section-content {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    display: inline-block;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray-light);
    margin-bottom: 1rem;
    font-weight: 600;
}

.section-header h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
    line-height: 1.2;
}

.section-header p {
    font-size: 1.3rem;
    color: var(--gray-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.feature {
    padding: 2.5rem;
    background: var(--lighter-black);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feature:hover {
    background: rgba(26, 26, 26, 0.8);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.feature h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.feature p {
    color: var(--gray-light);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* How It Works */
.how-it-works {
    background: var(--lighter-black);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    background: var(--white);
    color: var(--black);
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.step p {
    color: var(--gray-light);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Integrations */
.integrations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.integration-card {
    background: var(--lighter-black);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 1.5rem;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.integration-card:hover {
    background: rgba(26, 26, 26, 0.8);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.integration-card h4 {
    font-size: 1.2rem;
    color: var(--white);
    font-weight: 500;
}

/* Use Cases / Practice Areas */
.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.use-case {
    padding: 2.5rem;
    background: var(--lighter-black);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.use-case:hover {
    background: rgba(26, 26, 26, 0.8);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

.use-case h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.use-case p {
    color: var(--gray-light);
    line-height: 1.7;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.use-case ul {
    list-style: none;
    padding: 0;
}

.use-case li {
    color: var(--gray-light);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.use-case li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--white);
}

/* Testimonials */
.testimonials-section {
    background: var(--lighter-black);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.testimonial {
    padding: 2.5rem;
    background: var(--black);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.testimonial-text {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--white);
    margin-bottom: 2rem;
}

.testimonial-metric {
    font-family: 'Spectral', serif;
    font-size: 3rem;
    color: var(--white);
    font-weight: 300;
    margin-bottom: 0.5rem;
}

.testimonial-author {
    font-size: 1rem;
    color: var(--gray-light);
    margin-bottom: 0.5rem;
}

.testimonial-firm {
    font-size: 0.95rem;
    color: var(--gray-mid);
}

/* Final CTA */
.final-cta {
    background: var(--black);
    text-align: center;
    padding: 8rem 2rem;
}

.final-cta h2 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.final-cta p {
    font-size: 1.4rem;
    color: var(--gray-light);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* Footer */
footer {
    background: var(--lighter-black);
    padding: 3rem 2rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.footer-content a {
    color: var(--gray-light);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-content a:hover {
    color: var(--white);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--gray-mid);
    font-size: 0.9rem;
}

/* Animation utilities */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 1.5rem;
    }

    .nav-links {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

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

    .hero p {
        font-size: 1.1rem;
    }

    .section-header h2 {
        font-size: 2.5rem;
    }

    .section-header p {
        font-size: 1.1rem;
    }

    .final-cta h2 {
        font-size: 2.5rem;
    }

    .final-cta p {
        font-size: 1.1rem;
    }

    .features-grid,
    .steps-grid,
    .use-cases-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .integrations-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
}

/* Main content area */
.page-content {
    padding-top: 5rem;
}

/* Problem Grid */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.problem-card {
    background: var(--lighter-black);
    padding: 2.5rem;
    border-radius: 8px;
    border-left: 3px solid var(--white);
    transition: all 0.3s ease;
}

.problem-card:hover {
    transform: translateX(10px);
    border-left-width: 5px;
}

.problem-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.problem-card p {
    color: var(--gray-light);
    line-height: 1.7;
}

/* Problem Section Background */
.problem-section {
    background: var(--dark-gray);
}

/* Two Column Layout */
.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-top: 4rem;
}

.two-column h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.two-column p {
    color: var(--gray-light);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.two-column ul {
    list-style: none;
    padding: 0;
}

.two-column li {
    color: var(--gray-light);
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.two-column li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--white);
    font-weight: bold;
}

/* Integrations Section Background */
.integrations-section {
    background: var(--dark-gray);
}

/* Testimonials Section */
.testimonials-section {
    background: var(--lighter-black);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.testimonial {
    padding: 2.5rem;
    background: var(--black);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.testimonial-text {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--white);
    margin-bottom: 2rem;
}

.testimonial-metric {
    font-family: 'Spectral', serif;
    font-size: 3rem;
    color: var(--white);
    font-weight: 300;
    margin-bottom: 0.5rem;
}

.testimonial-author {
    font-size: 1rem;
    color: var(--gray-light);
    margin-bottom: 0.5rem;
}

.testimonial-firm {
    font-size: 0.95rem;
    color: var(--gray-mid);
}

/* Feature Cards Enhancement */
.feature-card {
    background: var(--lighter-black);
    padding: 3rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--white);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-card:hover {
    border-color: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.1);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.feature-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--white);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    color: var(--gray-light);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
}

.feature-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--white);
    font-weight: bold;
}

/* Responsive adjustments for two-column */
@media (max-width: 968px) {
    .two-column {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .two-column h3 {
        font-size: 2rem;
    }
}
