/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

/* Variables extracted from Presentation */
:root {
    --primary-green: #5ae495;  /* Mint Green from Brand Name */
    --primary-blue: #1674dc;   /* Standard Blue from shapes */
    --dark-blue: #1e55b8;      /* Darker Blue from shapes */
    --light-blue: #6cabf0;     /* Light Blue from shapes */

    --text-main: #000000;
    --text-secondary: #4a4a4a;
    --bg-white: #ffffff;
    --bg-light: #e6eff8; /* Higher contrast premium light blue-grey */

    --radius-pill: 50px;
    --radius-card: 16px;
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
}

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

/* Components */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-fluid {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 24px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 36px; /* Slightly larger buttons */
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 18px; /* Slightly larger text */
    border: none;
    cursor: pointer;
    transition: transform 0.1s ease, filter 0.2s;
}

.btn:active {
    transform: scale(0.98);
}

.btn-primary {
    background-color: var(--primary-blue);
    color: #ffffff;
}

.btn-secondary {
    background-color: var(--primary-blue);
    color: #ffffff;
}

.btn-primary:hover, .btn-secondary:hover {
    filter: brightness(1.05);
}

/* Navbar */
.navbar {
    position: relative;
    top: 0;
    /* removed background per user edit */
    /* background-color: var(--bg-white); */
    background-color: var(--bg-light);
    opacity: 0.9;
    backdrop-filter: blur(10px);
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03); /* Slightly stronger shadow */
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 120px; /* Significantly larger logo */
    width: auto;
    display: block;
    transition: height 0.3s ease;
    padding: 8px
}

.nav-contact {
    font-weight: 700;
    color: var(--primary-blue);
    font-size: 20px; /* Larger phone number to match logo weight */
    background: rgba(22, 116, 220, 0.1);
    padding: 10px 24px;
    border-radius: var(--radius-pill);
}

/* Hero Section */
.hero {
    padding: 60px 0;
    text-align: center;
    max-width: 1000px; /* Wider measure */
    margin: 0 auto;
}

.hero h1 {
    font-size: 64px; /* Larger headline */
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-main);
    letter-spacing: -1px;
}

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

.hero p {
    font-size: 20px; /* Larger body text */
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    margin-top: 32px;
}

/* Features/Benefits */
.section {
    padding: 100px 0; /* Increased vertical spacing for professional look */
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 42px; /* Larger section titles */
    font-weight: 700;
    margin-bottom: 64px;
    color: var(--primary-blue);
    position: relative;
    padding-bottom: 24px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary-green);
    border-radius: 2px;
}

.section-title.text-white {
    color: #ffffff;
}

.section-title.text-green {
    color: var(--primary-green);
}

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

.benefit-card {
    background: var(--bg-white);
    padding: 24px; /* Reduced padding */
    border-radius: 20px; /* Rounder corners */
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0,0,0,0.05);
    border-top: 6px solid var(--primary-blue);
    transition: transform 0.2s;
}

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

.benefit-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-main);
}

.benefit-desc {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.7;
}

/* Pricing/Vehicles */
.bg-light {
    background-color: var(--bg-light);
}

.proposition-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    font-size: 18px;
    color: var(--text-secondary);
}

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

.pricing-card {
    background: var(--bg-white);
    padding: 32px;
    border-radius: 24px;
    border: 1px solid rgba(0,0,0,0.05); /* Subtle border for definition */
    box-shadow: var(--shadow-soft);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s;
}

.pricing-card:hover {
    transform: scale(1.02);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px; /* Thicker accent */
    background: var(--primary-blue);
}

.price-tag {
    font-size: 40px; /* Bigger pricing */
    font-weight: 700;
    color: var(--primary-blue);
    margin: 20px 0;
    display: block;
}

.price-period {
    font-size: 18px;
    color: var(--text-secondary);
    font-weight: 500;
}

.pricing-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
}

.pricing-desc {
    color: var(--text-secondary);
    margin-bottom: 32px;
    font-size: 16px;
}

/* Footer */
.footer {
    padding: 60px 0 30px;
    background-color: var(--dark-blue);
    color: #ffffff;
    font-size: 16px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
}

.footer-brand h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary-green);
}

.footer-brand p {
    font-size: 18px;
    opacity: 0.8;
    max-width: 300px;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: right;
}

.footer-contact-info h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--bg-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-link {
    color: #ffffff;
    opacity: 0.9;
    transition: opacity 0.2s, color 0.2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}

.footer-link:hover {
    opacity: 1;
    color: var(--primary-green);
}

.footer-phones {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
}

.separator {
    opacity: 0.5;
}

.footer-bottom {
    text-align: center;
    font-size: 14px;
    opacity: 0.6;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
        align-items: center;
    }

    .footer-contact-info {
        text-align: center;
        align-items: center;
    }

    .footer-link, .footer-phones {
        justify-content: center;
    }
}

/* Process Section */
.process-steps {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-top: 60px;
}

.process-step {
    flex: 1;
    text-align: center;
}

.step-circle {
    width: 60px;
    height: 60px;
    background-color: var(--primary-blue); /* Solid blue circle */
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 4px 10px rgba(22, 116, 220, 0.3);
}

.process-step h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--dark-blue);
    text-transform: uppercase;
}

.process-step p {
    color: var(--text-secondary);
    font-size: 16px;
}

.flow-container {
    text-align: center;
    margin-top: 60px;
}

.flow-title {
    color: var(--primary-blue);
    margin-bottom: 24px;
}

.operational-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-main);
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    max-width: 900px;
    margin: 0 auto;
}

.flow-step {
    display: flex;
    align-items: center;
    text-align: left;
    gap: 12px;
}

.flow-step span {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background-color: var(--primary-blue);
    color: white;
    border-radius: 50%;
    font-size: 16px;
    line-height: 1;
}

.flow-arrow {
    color: var(--primary-green);
    font-size: 24px;
}

/* Stats Section */
.bg-blue {
    background-color: var(--primary-blue);
    color: #ffffff;
}

.text-white {
    color: #ffffff !important;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-card {
    text-align: center;
    /* Leaf shape logic simulation with radius */
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 4px 60px 4px 60px; /* Leaf-like shape */
    padding: 32px 16px;
    transition: transform 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px) scale(1.05);
    background: rgba(255, 255, 255, 0.2);
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-green); /* Contrast accents */
    margin-bottom: 8px;
    text-transform: uppercase;
}

.stat-sub {
    font-size: 14px;
    opacity: 0.9;
}

/* Financial Section */
.bg-dark-blue {
    background-color: var(--dark-blue); /* Deeper blue */
    color: #ffffff;
}

.text-green {
    color: var(--primary-green) !important;
}

.financial-subtitle {
    text-align: center;
    font-size: 32px;
    color: #fff;
    margin-bottom: 48px;
    font-weight: 600;
}

.financial-explanation {
    max-width: 900px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.8;
}

.financial-explanation ol {
    margin-left: 24px;
    margin-bottom: 32px;
}

.financial-explanation li {
    margin-bottom: 12px;
}

.comparison-box {
    background: rgba(255, 255, 255, 0.05); /* subtle bg */
    border-left: 5px solid var(--primary-green);
    padding: 32px;
    margin: 32px 0;
    border-radius: 0 16px 16px 0;
}

.comparison-box ul {
    list-style: none;
    margin-top: 16px;
    margin-bottom: 24px;
}

.comparison-box li {
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.comparison-box li::before {
    content: "•";
    color: var(--primary-green);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.highlight-result {
    font-size: 20px;
    color: var(--primary-green);
    font-weight: 700;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 16px;
}

.closing-argument {
    text-align: center;
    font-weight: 500;
    opacity: 0.9;
    margin-top: 40px;
    font-style: italic;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .section {
        padding: 60px 0; /* Reduced padding on mobile */
    }

    .section-title {
        font-size: 32px; /* Smaller section title on mobile */
        margin-bottom: 40px;
    }

    .hero h1 {
        font-size: 36px; /* Smaller hero title on mobile */
    }

    .hero p {
        font-size: 18px;
    }

    .benefits-grid, .pricing-grid {
        grid-template-columns: 1fr; /* Stack grids on mobile */
        gap: 24px; /* Reduced gap */
    }

    .process-steps {
        flex-direction: column;
        align-items: flex-start;
        margin-top: 40px;
    }

    .process-step {
        text-align: left;
        margin-bottom: 32px;
    }

    .operational-flow {
        flex-direction: column;
        align-items: flex-start; /* Align flow items to start */
        gap: 20px;
        padding: 24px;
        width: 100%;
    }

    .flow-arrow {
        transform: rotate(90deg); /* Down arrow */
        align-self: center; /* Center arrow */
        margin: -10px 0; /* Reduce gap around arrow */
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .navbar {
        padding: 12px 0;
    }

    .logo img {
        height: 110px;
    }

    .nav-contact {
        padding: 8px 16px;
        font-size: 14px;
    }

    .nav-content {
        flex-direction: column;
        gap: 12px;
    }

    .footer {
        padding: 40px 0 20px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
        align-items: center;
    }

    .footer-contact-info {
        text-align: center;
        align-items: center;
    }

    .footer-link, .footer-phones {
        justify-content: center;
    }
}
