/* General Styling & Reset */
:root {
    /* New Palette: Empathy, Collaboration, Professionalism */
    --primary-color: #2C7A7B; /* Teal - Calm, empathetic, stable */
    --primary-dark: #234E52; /* Darker Teal for hover/accents */
    --secondary-color: #ED8936; /* Soft Orange - Collaborative, human, energetic */
    --text-dark: #2D3748; /* Deep Charcoal - Professional, data-driven */
    --text-light: #F7FAFC; /* Off-white for text on dark backgrounds */
    --bg-light: #F7FAFC; /* Very light gray/blue tint - Clean but not harsh */
    --bg-white: #FFFFFF; /* Pure white for cards/sections */
    --bg-dark: #1A202C; /* Very dark blue-gray - Modern tech feel */
    
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Arial', sans-serif; /* Fallback */
    --font-mono: 'Roboto Mono', monospace;
}

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

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
    position: relative;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    margin-bottom: 0.8em;
    line-height: 1.2;
}

h1 { font-size: 3em; }
h2 { font-size: 2.5em; }
h3 { font-size: 1.8em; }

p {
    margin-bottom: 1em;
}

.tagline {
    font-size: 1.2em;
    color: var(--text-light); /* Adjusted for Hero visibility */
    margin-bottom: 1.5em;
    font-weight: 300;
}

.mono-text {
    font-family: var(--font-mono);
    background-color: #E2E8F0;
    padding: 2px 5px;
    border-radius: 3px;
    font-size: 0.9em;
    color: #2D3748;
}

/* Links & Buttons */
a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

.primary-btn {
    background-color: var(--secondary-color);
    color: var(--bg-white);
}

.primary-btn:hover {
    background-color: #DD6B20; /* Darker orange */
    transform: translateY(-2px);
}

.secondary-btn {
    background-color: transparent;
    color: var(--bg-white);
    border: 2px solid var(--bg-white);
}

.secondary-btn:hover {
    background-color: var(--bg-white);
    color: var(--primary-color);
}

/* Header & Navigation */
header {
    background-color: var(--bg-white);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8em;
    font-weight: bold;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

nav ul {
    list-style: none;
}

nav ul li {
    display: inline-block;
    margin-left: 25px;
}

nav ul li a {
    color: var(--text-dark);
    font-weight: 500;
}

nav ul li a:hover {
    color: var(--primary-color);
}

/* Sections */
section {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.section-dark {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.section-dark h2, .section-dark h3 {
    color: var(--bg-white);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--bg-white);
    text-align: center;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.hero h1 {
    color: var(--bg-white);
    font-size: 3.5em;
    max-width: 900px;
    margin: 0 auto 20px auto;
}

/* Image Handling */
.img-container {
    margin: 40px 0;
    text-align: center;
}

.img-container img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.split-layout {
    display: flex;
    align-items: center;
    gap: 40px;
}

.split-layout > div {
    flex: 1;
}

/* Specific Layouts */
#problem ul {
    list-style: none;
    margin: 30px 0;
    text-align: left;
}

#problem ul li {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23ED8936" width="24px" height="24px"><path d="M0 0h24v24H0z" fill="none"/><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z"/></svg>') no-repeat left center;
    background-size: 20px;
    padding-left: 35px;
    margin-bottom: 15px;
    color: var(--text-light);
}

.how-it-works-grid, .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: left;
}

.how-it-works-grid .step, .benefits-grid .benefit-item {
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-top: 4px solid var(--primary-color);
}

.section-dark .how-it-works-grid .step, .section-dark .benefits-grid .benefit-item {
    background-color: #2D3748; 
    color: var(--text-light);
    border-top: 4px solid var(--secondary-color);
}

.how-it-works-grid .step h4, .benefits-grid .benefit-item h3 {
    color: var(--primary-color);
    margin-top: 15px;
    font-size: 1.4em;
}

.section-dark .benefit-item h3 {
    color: var(--secondary-color);
}

.how-it-works-grid .step .icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--bg-white);
    font-weight: bold;
    font-size: 1.2em;
    margin-bottom: 15px;
}

.benefits-grid .benefit-item .icon {
    font-size: 2.5em;
    display: block;
    margin-bottom: 15px;
}

/* Testimonial */
#testimonial {
    background-color: var(--bg-light);
    text-align: center;
    padding: 80px 0;
}

.testimonial-card {
    max-width: 800px;
    margin: 0 auto;
    padding: 50px;
    background-color: var(--bg-white);
    border-left: 5px solid var(--secondary-color);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    text-align: left;
}

.testimonial-card p {
    font-style: italic;
    font-size: 1.2em;
    color: #4A5568;
    margin-bottom: 20px;
}

.testimonial-card .author {
    font-weight: bold;
    font-size: 1em;
    color: var(--primary-color);
    font-style: normal;
}

/* Services Page */
.component-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.component-item {
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.component-item h4 {
    color: var(--primary-color);
}

/* Contact Page */
#contactForm {
    max-width: 600px;
    margin: 40px auto;
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: left;
    border-top: 5px solid var(--primary-color);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(44, 122, 123, 0.2);
}

/* Footer */
footer {
    background-color: var(--bg-dark);
    color: #A0AEC0;
    text-align: center;
    padding: 40px 0;
}

footer a {
    color: var(--bg-white);
}

footer a:hover {
    color: var(--secondary-color);
}

/* Responsive */
@media (max-width: 768px) {
    .split-layout {
        flex-direction: column;
    }
    h1 { font-size: 2.5em; }
}
