/* --- CORE VARIABLES --- */
:root {
    --bg-color: #ffffff;
    --text-main: #000000;
    --text-secondary: #6F6F6F;
    --accent-green: #485C11;
    --accent-light: #DFECC6;
    --border-radius: 30px;
    --font-serif: 'Crimson Text', serif;
    --font-sans: 'DM Sans', sans-serif;
    --font-mono: 'Roboto Mono', monospace;
}

/* --- RESET & BASE --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-sans);
    line-height: 1.4;
    overflow-x: hidden;
}
.footer-logo {
    width: 40px; /* Adjust size as needed */
    height: auto;
    margin-bottom: 10px;
}
footer {
    padding: 50px 0;
    border-top: 1px solid #eee;
    display: flex;
    flex-direction: column; /* Stack logo, name, and copyright */
    align-items: center;
    gap: 15px; /* Space between elements */
    margin-top: 50px;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; border-radius: var(--border-radius); }

/* --- TYPOGRAPHY UTILITIES --- */
.serif-xl {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 5vw, 5rem);
    line-height: 0.95;
    letter-spacing: -2px;
    margin-bottom: 20px;
}

.serif-lg {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.1;
    letter-spacing: -1px;
}

.text-body {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
}

.mono-label {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: block;
}

/* --- HEADER (Floating Pill Style) --- */
header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    padding: 15px 30px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    width: max-content;
    border: 1px solid #eee;
}

.nav-link {
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: color 0.3s;
}

.nav-link:hover { color: var(--accent-green); }

/* --- BUTTONS --- */
.btn-pill {
    background-color: var(--text-main);
    color: white;
    padding: 10px 24px;
    border-radius: 100px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.2s, background-color 0.2s;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-pill.light {
    background-color: var(--accent-light);
    color: black;
}

.btn-pill:hover { transform: translateY(-2px); }

/* --- LAYOUT CONTAINERS --- */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

section { padding: 100px 0; }

/* --- HERO SECTION --- */
.hero {
    padding-top: 180px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-visual {
    margin-top: 60px;
    width: 100%;
    height: 500px;
    background-color: #f0f0f0;
    border-radius: var(--border-radius);
    position: relative;
    overflow: hidden;
    background-image: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-visual::after {
    content: "TheKamui.com";
    font-family: var(--font-serif);
    font-size: 3rem;
    color: #ccc;
}

/* --- TRUSTED BY --- */
.trusted-by {
    padding: 40px 0;
    border-bottom: 1px solid #eee;
}
.logos {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    opacity: 0.6;
    font-weight: bold;
    font-size: 1.2rem;
    color: #999;
}

/* --- SERVICES GRID --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 60px;
}

.service-card {
    background: #FAFAFA;
    padding: 40px 30px;
    border-radius: var(--border-radius);
    transition: 0.3s;
}

.service-card:hover { background: #F0F0F0; }

.icon-box {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- NUMBERED LIST --- */
.steps-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.step-item {
    border-bottom: 1px solid #eee;
    padding-bottom: 40px;
}

.step-number {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 10px;
    display: block;
}

.big-number {
    font-size: 4rem;
    color: #e0e0e0;
    font-family: var(--font-sans);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 20px;
}

/* --- COMPARISON TABLE --- */
.comparison-wrapper {
    background-color: #FAFAFA;
    border-radius: var(--border-radius);
    padding: 80px 40px;
    margin-top: 50px;
}

.comparison-header { text-align: center; margin-bottom: 60px; }

.comparison-table {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.comp-col {
    background: white;
    padding: 30px;
    border-radius: 20px;
}

.comp-col.highlight {
    border: 2px solid var(--accent-green);
    position: relative;
}

.comp-col.highlight::before {
    content: "Recommended";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-green);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: bold;
}

.comp-title {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 20px;
    text-align: center;
    font-family: var(--font-sans);
}

.comp-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.check { color: var(--accent-green); font-weight: bold; }
.cross { color: #ccc; }

/* --- CONTACT FORM PAGE STYLES --- */
.contact-section {
    padding-top: 150px;
    display: flex;
    justify-content: center;
}

.contact-card {
    background: #FAFAFA;
    padding: 60px;
    border-radius: var(--border-radius);
    width: 100%;
    max-width: 600px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
}

/* New Helper for Side-by-Side inputs */
.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1; /* Makes items take equal width */
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    margin-bottom: 10px;
    font-weight: 700;
    font-size: 0.9rem;
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid #ddd;
    font-family: var(--font-sans);
    font-size: 1rem;
    background: white;
    transition: border-color 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-green);
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23000000%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 20px top 50%;
    background-size: 10px auto;
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* --- FOOTER --- */
footer {
    padding: 50px 0;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
}

/* --- MOBILE --- */
@media (max-width: 768px) {
    .steps-section, .comparison-table { grid-template-columns: 1fr; }
    header { width: 90%; justify-content: space-between; padding: 10px 20px; }
    .nav-link { display: none; }
    .serif-xl { font-size: 3rem; }
    .contact-card { padding: 30px; }
    .form-row { flex-direction: column; gap: 0; } /* Stack inputs on mobile */
}