/* =========================================
   1. VARIABLES & SETUP
   ========================================= */
:root {
    /* Brand Colors from Branding Board */
    --primary-orange: #FF9900;       /* Source 1 */
    --deep-charcoal: #36453B;        /* Source 2 */
    --slate-grey:    #596869;        /* Source 3 */
    --dark-grey:     #515751;        /* Source 4 */
    --off-white:     #F5F9E9;        /* Source 5 */
    --white:         #FFFFFF;
    
    /* Typography */
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    
    /* Spacing & Layout */
    --container-width: 1100px;
    --border-radius: 8px;
    --shadow-soft: 0 10px 30px rgba(0,0,0,0.05);
    --shadow-hover: 0 15px 40px rgba(0,0,0,0.12);
}

/* Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-main);
    background-color: var(--off-white);
    color: var(--dark-grey);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

/* =========================================
   2. UTILITIES & COMPONENTS
   ========================================= */

/* Container */
.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 15px;
}

/* Typography Helpers */
.text-center { text-align: center; }

h1, h2, h3, h4 {
    color: var(--deep-charcoal);
    font-weight: 800;
    line-height: 1.2;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s;
}

.btn-primary {
    background-color: var(--primary-orange);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 153, 0, 0.4);
}

.btn-primary:hover {
    background-color: #e68a00; /* Slightly darker orange */
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 153, 0, 0.6);
}

.btn-full {
    width: 100%;
    text-align: center;
    background-color: var(--primary-orange);
    color: var(--white);
}

.btn-full:hover {
    background-color: #e68a00;
}

.btn:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

/* =========================================
   3. HERO SECTION (CENTERED & TIGHTENED)
   ========================================= */
.hero {
    background-color: var(--deep-charcoal);
    color: var(--white);
    padding: 40px 0 60px; /* Tight padding to reduce gap */
    position: relative;
    text-align: center;
}

.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.badge {
    background: rgba(255, 153, 0, 0.15);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-orange);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
    border: 1px solid var(--primary-orange);
    display: inline-block;
}

.hero h1 {
    color: var(--white);
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.subheadline {
    font-size: 1.25rem;
    margin-bottom: 40px;
    color: #e0e0e0;
    font-weight: 400;
    max-width: 650px;
    line-height: 1.5;
}

.cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.micro-copy {
    font-size: 0.85rem;
    opacity: 0.7;
    font-weight: 400;
}

/* --- HERO IMAGE STYLES --- */
.hero-image-container {
    margin-top: 50px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.hero-img {
    max-width: 100%;
    width: 600px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

/* =========================================
   4. P.E.A.C.E. GRID (Problem & Empathy)
   ========================================= */
.problem-empathy {
    padding: 80px 0;
    background: var(--white);
}

.problem-empathy h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-align: center;
}

.peace-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.card {
    background: var(--off-white);
    padding: 40px;
    border-radius: var(--border-radius);
    border-left: 6px solid var(--slate-grey);
    box-shadow: var(--shadow-soft);
    transition: transform 0.2s;
}

.card:hover {
    transform: translateY(-5px);
}

.card h3 {
    color: var(--deep-charcoal);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.card p {
    color: var(--dark-grey);
    font-size: 1.1rem;
}

/* =========================================
   5. SOLUTION SECTION (Answer)
   ========================================= */
.solution {
    padding: 100px 0;
    background-color: var(--off-white);
}

.split-layout {
    display: flex;
    align-items: flex-start;
    gap: 60px;
}

/* Content Side */
.content-side {
    flex: 1;
    padding-top: 20px;
}

.content-side h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
}

.content-side p {
    font-size: 1.15rem;
    margin-bottom: 30px;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--deep-charcoal);
    display: flex;
    align-items: center;
}

/* Form Side */
.form-side {
    flex: 1;
    max-width: 500px;
    width: 100%;
}

.capture-form {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-hover);
    border-top: 6px solid var(--primary-orange);
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h3 {
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.form-header p {
    color: var(--slate-grey);
    font-size: 0.95rem;
}

/* Form Inputs */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    color: var(--deep-charcoal);
    font-size: 0.95rem;
}

.form-group input, 
.form-group select {
    width: 100%;
    padding: 14px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-size: 1rem;
    font-family: var(--font-main);
    color: var(--deep-charcoal);
    background: #fff;
    transition: border-color 0.2s;
}

.form-group input:focus, 
.form-group select:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(255, 153, 0, 0.1);
}

.error-msg {
    color: #d32f2f;
    font-size: 0.85rem;
    font-weight: 600;
    display: none; /* Hidden by default */
    margin-top: 6px;
}

/* =========================================
   6. TRANSFORMATION (Change & End Result)
   ========================================= */
.transformation {
    padding: 100px 0;
    background-color: var(--deep-charcoal);
    color: var(--white);
    text-align: center;
}

.transformation h2 {
    color: var(--white);
    margin-bottom: 60px;
    font-size: 2.5rem;
}

.steps {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 200px;
    max-width: 280px;
}

.step-num {
    width: 60px;
    height: 60px;
    background: var(--primary-orange);
    color: var(--white);
    border-radius: 50%;
    line-height: 60px;
    font-weight: 800;
    font-size: 1.5rem;
    margin: 0 auto 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.step h4 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.step p {
    color: #ccc;
    font-size: 1rem;
}

.arrow {
    font-size: 2rem;
    color: var(--primary-orange);
    margin-top: 15px;
    font-weight: bold;
}

/* =========================================
   7. FOOTER
   ========================================= */
footer {
    background-color: #2c3630; /* Darker shade of charcoal */
    color: #889;
    text-align: center;
    padding: 50px 0;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

footer .disclaimer {
    max-width: 600px;
    margin: 10px auto 0;
    font-size: 0.8rem;
    line-height: 1.5;
    opacity: 0.6;
}

/* =========================================
   8. MOBILE RESPONSIVE (Media Queries)
   ========================================= */
@media (max-width: 768px) {
    /* Fonts */
    h1 { font-size: 2.2rem; }
    .hero h1 { font-size: 2.4rem; }
    h2 { font-size: 2rem; }
    
    /* Hero */
    .hero { padding: 30px 0 50px; }
    .subheadline { font-size: 1.1rem; }
    
    /* Grids & Layouts */
    .peace-grid {
        grid-template-columns: 1fr; /* Stack vertically */
    }
    
    .split-layout {
        flex-direction: column; /* Stack content over form */
    }
    
    .form-side {
        max-width: 100%;
    }

    /* Transformation Steps */
    .steps {
        flex-direction: column;
        align-items: center;
    }
    
    .arrow {
        transform: rotate(90deg); /* Point arrow down */
        margin: 10px 0;
    }
    
    .step {
        margin-bottom: 20px;
    }
    
    /* Container Padding */
    .container {
        padding: 0 20px;
    }
}