/* --- Variables & Reset --- */
:root {
    --navy: #001F3F;
    --green: #228B22;
    --green-hover: #1e7a1e;
    --gray-light: #f4f4f4;
    --gray-dark: #333;
    --white: #ffffff;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Open Sans', sans-serif;
}

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

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--gray-dark);
    background-color: var(--white);
}

img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }

/* --- Typography --- */
h1, h2, h3 {
    font-family: var(--font-heading);
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2rem; }
p { margin-bottom: 1.5rem; font-size: 1.1rem; }

/* --- Utilities --- */
.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1rem;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--green);
    color: var(--white);
    font-size: 1.2rem;
}

.btn-primary:hover { background-color: var(--green-hover); }

.btn-nav {
    background-color: var(--green);
    color: var(--white);
    padding: 8px 20px;
}

/* --- Header --- */
.site-header {
    background: var(--navy);
    color: var(--white);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

/* Logo & Powered By */
.logo-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--white);
    letter-spacing: 0.5px;
}

.powered-by {
    font-size: 0.75rem;
    font-family: var(--font-body);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2px;
}

.main-nav ul { display: flex; gap: 2rem; align-items: center; }
.mobile-menu-btn { display: none; background: none; border: none; cursor: pointer; }
.mobile-menu-btn span { display: block; width: 25px; height: 3px; background: var(--white); margin: 5px 0; }

/* --- Hero Section (Centered) --- */
.hero {
    /* Background Image: Finance/Strategy Theme */
    background: linear-gradient(rgba(0,31,63,0.9), rgba(0,31,63,0.8)), url('https://images.unsplash.com/photo-1554224155-6726b3ff858f?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    color: var(--white);
    
    /* Flexbox for perfect centering */
    display: flex;
    justify-content: center;
    align-items: center;
    
    /* Height and spacing */
    min-height: 50vh;
    padding: 4rem 1rem;
    text-align: center;
}

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

.hero h1 { color: var(--white); margin-bottom: 1.5rem; }
.hero p { font-size: 1.3rem; max-width: 700px; margin-bottom: 2.5rem; line-height: 1.6; }

/* Mobile prevent button stretch */
.hero .btn { align-self: center; }

.trust-badges { 
    margin-top: 2rem; 
    display: flex; 
    justify-content: center; 
    gap: 2rem; 
    font-size: 0.9rem; 
    opacity: 0.9; 
}

/* --- Sections General --- */
section { padding: 4rem 0; }

/* --- Problem (Peace/Empathy) --- */
.section-problem { background-color: var(--gray-light); text-align: center; }
.text-block { max-width: 800px; margin: 0 auto; }
.empathy-box { 
    border-left: 4px solid var(--green); 
    background: var(--white); 
    padding: 1.5rem; 
    text-align: left; 
    margin-top: 2rem;
}

/* --- Solution (Answer) - Image Cards --- */
.section-solution { text-align: center; }
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.step-card {
    background: var(--white);
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden; /* Round corners for image */
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}
/* Card Hover Effect */
.step-card:hover { 
    transform: translateY(-10px); 
    box-shadow: 0 15px 30px rgba(0,0,0,0.15); 
}

/* Image Wrapper */
.card-img-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden; /* Hide zoom overflow */
    position: relative;
}
.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
/* Image Zoom on Hover */
.step-card:hover .card-img-wrapper img { transform: scale(1.1); }

/* Card Content */
.card-content {
    padding: 2rem;
    flex-grow: 1;
    position: relative;
}
.step-number {
    background: var(--navy);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    /* Overlap effect */
    margin: -45px auto 1.5rem;
    position: relative;
    z-index: 10;
    border: 4px solid var(--white);
}

/* --- Change (Transformation) --- */
.section-change { background-color: var(--navy); color: var(--white); }
.section-change h2 { color: var(--white); text-align: center; }
.comparison-wrapper { max-width: 900px; margin: 0 auto; }
.comparison-table {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}
.col { flex: 1; padding: 2rem; border-radius: 8px; min-width: 300px; }

/* Old Way - White Card Style */
.old-way { 
    background: var(--white);
    color: var(--gray-dark);
    border: 1px solid #ddd;
}
.old-way h3 { color: var(--navy); }

/* New Way - Highlight Style */
.new-way { 
    background: var(--white); 
    color: var(--navy); 
    border: 3px solid var(--green); 
    transform: scale(1.05); 
}
.new-way h3 { color: var(--green); }

.col ul li { margin-bottom: 1rem; font-weight: 600; }

/* --- Footer (End Result) --- */
.site-footer {
    background: var(--gray-light);
    padding: 5rem 0 2rem;
    text-align: center;
}
.footer-content { max-width: 600px; margin: 0 auto; }
.lead-form {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-top: 2rem;
}
.form-group { margin-bottom: 1rem; }
.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}
.btn-block { width: 100%; }
.disclaimer { margin-top: 3rem; font-size: 0.8rem; color: #777; }

/* --- Mobile Queries --- */
@media (max-width: 768px) {
    .hero { min-height: auto; padding: 6rem 1rem; }
    h1 { font-size: 2rem; }
    
    .logo { font-size: 1.2rem; }
    .powered-by { font-size: 0.6rem; }
    
    .main-nav { 
        display: none; 
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--navy);
        padding: 1rem 0;
    }
    .main-nav.active { display: block; }
    .main-nav ul { flex-direction: column; gap: 1rem; }
    .mobile-menu-btn { display: block; }
    
    .comparison-table { flex-direction: column; }
    .new-way { transform: scale(1); }
}