/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    line-height: 1.7;
    color: #1a1a1a;
    background: #f9fafb;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0;
}

/* Typography */
h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #111827;
    letter-spacing: -0.025em;
}

h2 {
    font-size: 1.875rem;
    font-weight: 700;
    margin: 3.5rem 0 1.5rem;
    color: #111827;
    letter-spacing: -0.025em;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #111827;
}

p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: #374151;
    line-height: 1.8;
}

strong {
    font-weight: 600;
}

/* Layout Components */
.container {
    background: white;
    margin: 0 auto;
    padding: 40px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    margin-top: 20px;
}

.highlight {
    background: #fef3c7;
    padding: 0.2em 0.4em;
    font-weight: 500;
    border-radius: 4px;
    color: #92400e;
}

/* Stats Section */
.stats {
    background: #f8fafc;
    padding: 1.5rem;
    margin: 2.5rem 0;
    border-left: 4px solid #f97316;
    border-radius: 0 8px 8px 0;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.stats p {
    margin: 10px 0;
    font-size: 16px;
}

/* List Styles */
li {
    margin: 12px 0;
    font-size: 17px;
}

/* Pricing Section */
.pricing {
    background: #f8fafc;
    padding: 2rem;
    margin: 2.5rem 0;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease;
}

.pricing:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.price {
    font-size: 2.25rem;
    font-weight: 700;
    color: #ea580c;
    margin: 1rem 0;
    display: block;
}

/* Call to Action */
.cta {
    background: #ea580c;
    color: white;
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
    margin: 2rem 0;
    transition: all 0.2s ease;
    box-shadow: 0 4px 6px -1px rgba(249, 115, 22, 0.2);
}

.cta:hover {
    background: #c2410c;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(249, 115, 22, 0.3);
}

/* Contact Form */
.contact {
    margin: 4rem 0;
    padding: 2.5rem;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

input, textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    margin: 0.5rem 0 1.25rem;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.2s ease;
}

input:focus, textarea:focus {
    outline: none;
    border-color: #f97316;
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.2);
}

button[type="submit"] {
    background: #ea580c;
    color: white;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 0.5rem;
    transition: all 0.2s ease;
    width: 100%;
}

button[type="submit"]:hover {
    background: #c2410c;
    transform: translateY(-1px);
}

/* Footer */
.footer {
    margin-top: 5rem;
    padding: 2rem 0;
    border-top: 1px solid #e5e7eb;
    text-align: center;
    color: #6b7280;
    font-size: 0.875rem;
    background: #f9fafb;
    border-radius: 0 0 8px 8px;
}

/* How it works section */
.workflow-step {
    display: flex;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.step-number {
    background: #ffedd5;
    color: #9a3412;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-right: 1rem;
    flex-shrink: 0;
}

.workflow-container {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}
