:root {
    --bg-white: #ffffff;
    --text-main: #2d2d2d;
    --text-muted: #666666;
    --accent-yellow: #fdfd96;
    --border-gray: #e0e0e0;
    --hero-gray: #f9f9f9;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-main);
    background-color: var(--bg-white);
}

.container { 
    max-width: 1100px; 
    margin: 0 auto; 
    padding: 0 2rem;
}

nav .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0.5rem 0;
}

.logo-container img {
    height: 50px; 
    width: auto;
}

.hero { 
    background-color: var(--hero-gray); 
    padding: 5rem 0; 
    text-align: center; 
}

h1 { 
    font-size: 3.5rem; 
    line-height: 1.1; 
    margin-bottom: 1.5rem; 
    letter-spacing: -1.5px; 
    font-weight: 800; 
}

.subtitle { 
    font-size: 1.4rem; 
    color: var(--text-muted); 
    max-width: 700px; 
    text-align: center;
    margin: 0 auto 2.5rem; 
}

.legalese { 
    font-size: 1.4rem; 
    color: var(--text-muted); 
    max-width: 700px; 
    text-align: left;
    margin: 0 auto 2.5rem; 
}

.cta-button {
    background-color: var(--text-main);
    color: white;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: transform 0.2s;
    display: inline-block;
    margin-top: 5px;
    margin-bottom: 5px;
}

img.topLogo {
    width: 100%;
    height: auto;
}

.cta-button:hover { 
    transform: translateY(-2px); 
    background-color: #000; 
}

section { 
    padding: 2rem; 
}

.section-nar p {
    margin-bottom: 0;
    margin-top: 2rem;
}

h2 { 
    font-size: 2rem; 
    margin-bottom: 1rem; 
    letter-spacing: -0.5px; 
}

a.footer {
    text-decoration: none;
    color: #888888;
}

        .split { 
            display: grid; 
            grid-template-columns: 1fr 1fr; gap: 4rem; 
            align-items: center; 
        }

        .highlight-box { 
            background-color: var(--accent-yellow); 
            padding: 2.5rem; 
            font-style: italic; 
            font-size: 1.2rem; 
            border-radius: 4px;
        }

.grid { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); gap: 2rem; 
    margin-top: 3rem; 
}

.card { 
    padding: 2rem; 
    border: 1px solid var(--border-gray); 
    border-radius: 4px; 
    transition: border-color 0.3s;
}

footer {
    padding: 3rem 0;
    border-top: 1px solid var(--border-gray);
    text-align: center;
}

.card:hover { 
    border-color: var(--text-main); 
}

.card h3 { 
    margin-bottom: 1rem; 
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    .split, .grid { grid-template-columns: 1fr; }
}

.pricing-section {
    padding: 5rem 0;
    background-color: #f9f9f9; /* Subtle shift to distinguish from the white sections */
    text-align: center;
}

.pricing-container {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.pricing-card {
    background: #fff;
    border: 1px solid #ddd;
    padding: 3rem;
    max-width: 500px;
    width: 100%;
    box-shadow: 4px 4px 0px rgba(0,0,0,0.1); /* The "Meticulous" hard shadow */
}

.plan-header h3 {
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 2rem;
}

.price span {
    font-size: 1rem;
    font-weight: normal;
    color: #666;
}

.features {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-bottom: 2.5rem;
}

.features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
}

.features li:last-child {
    border-bottom: none;
}

.disclaimer {
    font-size: 0.8rem;
    color: #888;
    margin-top: 1.5rem;
}

.signup-button {
    width: 100%;
    display: block;
    box-sizing: border-box;
}

/* Process Section Layout */
.process {
    padding: 5rem 0;
    border-bottom: 1px solid #eee;
}

.process h2 {
    text-align: center;
    margin-bottom: 4rem;
}

.process-steps {
    display: flex;
    gap: 3rem;
    justify-content: space-between;
}

.step {
    flex: 1;
    position: relative;
}

.step-number {
    display: block;
    font-size: 0.85rem;
    font-weight: bold;
    color: #888;
    margin-bottom: 1rem;
    font-family: monospace; /* Gives it that technical, data-driven feel */
    border-bottom: 2px solid #333;
    width: 25px;
    padding-bottom: 2px;
}

.step p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

.step p strong {
    display: block;
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 0.5rem;
}

/* Responsive fix for smaller screens */
@media (max-width: 768px) {
    .process-steps {
        flex-direction: column;
        gap: 2.5rem;
    }
}

