/* --- Global Variables & Resets --- */
:root {
    --primary-color: #0F172A; 
    --accent-color: #2563EB; 
    --text-main: #334155;
    --bg-light: #F8FAFC;
    --bg-alt: #F1F5F9;
    --white: #FFFFFF;
    --font-main: 'Inter', sans-serif;
    --transition-standard: all 0.3s ease;
}

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

body {
    font-family: var(--font-main);
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
}

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

.section-padding {
    padding: 100px 0;
}

.bg-alt {
    background-color: var(--bg-alt);
}

/* --- Typography --- */
h1, h2, h3 {
    color: var(--primary-color);
    font-weight: 800;
    line-height: 1.2;
}

p {
    margin-bottom: 16px;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 14px 32px;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    transition: var(--transition-standard);
    cursor: pointer;
    text-align: center;
    border: none;
    font-family: var(--font-main);
    font-size: 16px;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--white);
    border: 2px solid var(--accent-color);
}

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

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

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

/* --- Header & Navigation --- */
.site-header {
    background: linear-gradient(90deg, #F0F9FF 0%, #E0F2FE 100%);
    box-shadow: 0 2px 10px rgba(14, 165, 233, 0.15);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    line-height: 0;
}

.logo a {
    display: block;
    line-height: 0;
}

.brand-logo {
    max-height: 140px; 
    width: auto;
    display: block;
    margin-top: 0;
}

.main-nav ul {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 30px;
}

.main-nav a {
    text-decoration: none;
    color: #0C4A6E; 
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition-standard);
}

.main-nav a:hover, .main-nav a.active {
    color: #0284C7; 
}

.btn-nav {
    background-color: var(--accent-color);
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: 4px;
}

.btn-nav:hover {
    background-color: #1d4ed8; 
}

/* --- Homepage Hero Section --- */
.hero {
    background-color: var(--bg-light);
    padding: 120px 0;
    text-align: center;
    border-bottom: 1px solid #E2E8F0;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 56px;
    margin-bottom: 24px;
}

.hero h1 span {
    color: var(--accent-color);
}

.hero p {
    font-size: 20px;
    color: #475569;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* --- Solutions Page Redesign --- */
.solutions-hero {
    background:
        radial-gradient(circle at top left, rgba(37, 99, 235, 0.18), transparent 35%),
        linear-gradient(135deg, #eff6ff 0%, #f8fafc 55%, #dbeafe 100%);
    padding: 110px 0 90px;
    border-bottom: 1px solid #dbe7f6;
}

.solutions-hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 40px;
    align-items: center;
}

.solutions-kicker {
    display: inline-block;
    margin-bottom: 18px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.1);
    color: var(--accent-color);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.solutions-hero-copy h1 {
    font-size: 64px;
    max-width: 680px;
    margin-bottom: 22px;
}

.solutions-hero-copy p {
    max-width: 620px;
    font-size: 20px;
    color: #475569;
    margin-bottom: 34px;
}

.solutions-hero-actions {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.solutions-hero-panel {
    display: flex;
    flex-direction: column;
}

.hero-panel-card {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: 22px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(10px);
}

.hero-panel-card {
    padding: 32px;
}

.hero-panel-card h2 {
    font-size: 30px;
    margin-bottom: 14px;
}

.hero-panel-card p {
    color: #475569;
    margin-bottom: 0;
}

.hero-panel-card-clean {
    padding: 38px 34px;
}

.hero-overview-list {
    list-style: none;
    margin-top: 26px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.hero-overview-list li {
    position: relative;
    padding-left: 24px;
    color: #334155;
    font-size: 16px;
    line-height: 1.6;
}

.hero-overview-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--accent-color);
}

.solutions-band {
    margin-top: -36px;
    position: relative;
    z-index: 5;
}

.solutions-band-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.solutions-band-item {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
    border: 1px solid #e2e8f0;
}

.solutions-band-item span {
    display: inline-block;
    margin-bottom: 18px;
    color: var(--accent-color);
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 0.08em;
}

.solutions-band-item h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.solutions-band-item p {
    margin-bottom: 0;
    color: #475569;
}

.solutions-section {
    background: var(--white);
}

.solutions-section-alt {
    background: linear-gradient(180deg, #f8fbff 0%, #eff6ff 100%);
}

.solutions-section-heading {
    max-width: 760px;
    margin-bottom: 46px;
}

.solutions-section-heading h2 {
    font-size: 48px;
    margin-bottom: 16px;
}

.solutions-section-heading p {
    font-size: 19px;
    color: #475569;
    margin-bottom: 0;
}

.solutions-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.solution-card {
    background: var(--white);
    padding: 34px 30px;
    border-radius: 22px;
    border: 1px solid #dce7f5;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.solution-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 45px rgba(15, 23, 42, 0.12);
    border-color: #bfdbfe;
}

.solution-card-highlight {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.solution-card-number {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    margin-bottom: 22px;
    border-radius: 14px;
    background: #dbeafe;
    color: var(--accent-color);
    font-weight: 800;
    font-size: 14px;
}

.solution-card h3 {
    font-size: 26px;
    margin-bottom: 16px;
}

.solution-card p {
    color: #475569;
    margin-bottom: 24px;
}

.solution-points {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.solution-points li {
    position: relative;
    padding-left: 22px;
    color: #334155;
    font-size: 15px;
}

.solution-points li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--accent-color);
}

.solutions-process {
    background: var(--primary-color);
}

.solutions-process .section-header h2,
.solutions-process .section-header p {
    color: var(--white);
}

.solutions-process .section-header p {
    color: #cbd5e1;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.process-step {
    padding: 32px 28px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.process-step span {
    display: inline-block;
    margin-bottom: 16px;
    color: #93c5fd;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.process-step p {
    color: #e2e8f0;
    margin-bottom: 0;
    font-size: 17px;
}

/* --- Internal Page Headers --- */
.page-header {
    background-color: var(--bg-light);
    padding: 100px 0;
    text-align: left;
    border-bottom: 1px solid #E2E8F0;
}

.page-header h1 {
    color: var(--primary-color);
    font-size: 56px;
    margin-bottom: 15px;
}

.page-header p {
    color: #475569;
    font-size: 22px;
    max-width: 700px;
    margin-bottom: 0;
}

/* --- Split Layouts --- */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr; 
    gap: 60px;
    align-items: flex-start;
}

.section-title {
    font-size: 42px;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 4px;
    background-color: var(--accent-color);
}

.lead-text {
    font-size: 22px;
    color: var(--primary-color);
    font-weight: 300;
    line-height: 1.5;
}

.split-right p {
    font-size: 18px;
    color: #475569;
    margin-bottom: 24px;
}

/* --- Solutions Service List --- */
.service-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-list-item {
    padding-left: 20px;
    border-left: 3px solid #E2E8F0;
    transition: var(--transition-standard);
}

.service-list-item:hover {
    border-left-color: var(--accent-color);
}

.service-list-item h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.service-list-item p {
    margin-bottom: 0;
    font-size: 16px;
}

/* --- Floating Stats Section --- */
.stats-section {
    position: relative;
    z-index: 10;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: -50px; 
    margin-bottom: 50px;
}

.stat-card {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-left: 4px solid var(--accent-color);
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
    line-height: 1.2;
}

.stat-label {
    font-size: 16px;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Value Proposition Grid --- */
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 18px;
    color: #475569;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-card {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid #E2E8F0;
    transition: var(--transition-standard);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-color);
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
}

.feature-card p {
    margin-bottom: 0;
}

/* --- Contact Form & Info Box --- */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid #E2E8F0;
    border-radius: 4px;
    font-family: var(--font-main);
    font-size: 16px;
    color: var(--text-main);
    background-color: var(--bg-light);
    transition: var(--transition-standard);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background-color: var(--white);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.form-btn {
    width: 100%;
    margin-top: 10px;
}

.contact-info-box {
    background-color: var(--primary-color);
    padding: 50px 40px;
    border-radius: 8px;
    color: var(--white);
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-info-box h3 {
    color: var(--white);
    font-size: 28px;
    margin-bottom: 15px;
}

.contact-info-box p {
    color: #94A3B8;
    margin-bottom: 40px;
}

.contact-method {
    margin-bottom: 25px;
}

.contact-method strong {
    display: block;
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.contact-method span {
    color: #CBD5E1;
    font-size: 18px;
    line-height: 1.4;
}

/* --- CTA Banner --- */
.cta-banner {
    background-color: var(--bg-light);
    padding: 80px 0;
    text-align: center;
    border-top: 1px solid #E2E8F0;
    border-bottom: 1px solid #E2E8F0;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    color: #475569;
    margin-bottom: 30px;
}

/* --- Footer --- */
.site-footer {
    background-color: var(--primary-color);
    color: #94A3B8;
    padding: 60px 0 20px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-info h3 {
    color: var(--white);
    margin-bottom: 10px;
}

.footer-info p {
    margin-bottom: 0;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: #94A3B8;
    text-decoration: none;
    transition: var(--transition-standard);
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #334155;
    padding-top: 20px;
    font-size: 14px;
}

/* =========================================
   MOBILE ADAPTIVE (RESPONSIVE) STYLES 
   ========================================= */
@media screen and (max-width: 768px) {
    .section-padding, .hero, .page-header {
        padding: 60px 0;
    }

    .header-container {
        flex-direction: column;
        height: auto;
        padding: 8px 0 10px;
        gap: 8px;
    }
    
    .logo {
        margin-top: -8px;
        margin-bottom: -10px;
    }

    .brand-logo {
        max-height: 110px;
    }

    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .btn-nav {
        padding: 6px 16px;
        font-size: 14px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .solutions-hero {
        padding: 70px 0 60px;
    }

    .solutions-hero-grid,
    .solutions-band-grid,
    .solutions-card-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .solutions-hero-copy h1 {
        font-size: 40px;
    }

    .solutions-hero-copy p,
    .solutions-section-heading p,
    .process-step p {
        font-size: 16px;
    }

    .solutions-hero-actions {
        flex-direction: column;
    }

    .solutions-hero-actions .btn {
        width: 100%;
    }

    .solutions-band {
        margin-top: 0;
        padding-top: 20px;
    }

    .page-header h1 {
        font-size: 36px;
    }

    .split-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        margin-top: 0; 
        gap: 20px;
    }
    
    .stat-number {
        font-size: 28px;
    }

    .hero p, .page-header p, .lead-text, .split-right p, .cta-content p, .section-header p {
        font-size: 16px;
    }

    .section-title, .section-header h2, .cta-content h2, .contact-info-box h3 {
        font-size: 28px;
    }

    .solutions-section-heading h2,
    .hero-panel-card h2 {
        font-size: 30px;
    }

    .solution-card h3,
    .solutions-band-item h3 {
        font-size: 22px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn, .form-btn {
        width: 100%; 
    }
    
    .contact-info-box {
        padding: 40px 30px;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }
}
