/* Reset & Base Styles */
:root {
    /* Brand Colors extracted from ei.one - Light Theme */
    --bg-color: #ffffff;
    --bg-darker: #f5f7f9;
    /* Very light grey for alternate sections */

    --text-primary: #10222e;
    /* Deep petrol for text */
    --text-secondary: #5a6b7c;
    /* Lighter petrol/grey for secondary text */

    /* The distinctive green accent */
    --accent-color: #58c913;
    --accent-hover: #46a00f;

    --font-main: 'Inter', sans-serif;
    --font-heading: 'Space Grotesk', sans-serif;
    --spacing-section: 120px;
    --spacing-inner: 60px;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    background-image:
        linear-gradient(#f5f7f9 1px, transparent 1px),
        linear-gradient(90deg, #f5f7f9 1px, transparent 1px);
    background-size: 40px 40px;
    /* Subtle grid */
    background-position: 0 0;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

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

/* Typography */
h1,
h2,
h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.hero-title {
    font-size: 3.5rem;
    background: linear-gradient(90deg, #10222e, #58c913);
    /* Dark Petrol to Green */
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    /* Dark Grey/Blue */
    max-width: 700px;
    margin-bottom: 2rem;
}

.section-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 1.5rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--accent-color);
    color: #fff;
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(88, 201, 19, 0.5);
    /* Neon Glow */
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: -150px;
    /* Hidden initially, ensure it's fully off-screen */
    left: 0;
    width: 100%;
    background-color: #ffffff;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding: 20px 0;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.05);
    z-index: 9999;
    /* Max z-index */
    transition: bottom 0.5s ease-out;
    visibility: hidden;
    /* Ensure hidden initially */
    opacity: 0;
}

.cookie-banner.show {
    bottom: 0;
    visibility: visible;
    opacity: 1;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

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

.btn-secondary:hover {
    border-color: var(--text-primary);
    background-color: rgba(255, 255, 255, 0.05);
}

.btn-outline {
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
}

.btn-outline:hover {
    background-color: var(--accent-color);
    color: #fff;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.9rem;
}

.w-100 {
    width: 100%;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 15px 0;
}

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

.logo-img {
    height: 80px;
    /* Adjust based on logo aspect ratio */
    width: auto;
    display: block;
}

/* Nav Layout */
.nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

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

.nav-list a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--text-primary);
}

/* Language Switcher Dropdown */
.lang-switcher {
    position: relative;
    font-weight: bold;
}

.lang-current {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    border-radius: 4px;
    transition: background-color 0.2s;
}

.lang-current:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.lang-current::after {
    content: '▼';
    font-size: 0.7em;
    margin-left: 5px;
}

.lang-dropdown {
    position: absolute;
    top: 120%;
    right: 0;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    display: none;
    flex-direction: column;
    min-width: 120px;
    z-index: 1001;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.lang-dropdown.show {
    display: flex;
    animation: fadeInDown 0.2s ease;
}

.lang-dropdown a {
    padding: 8px 20px;
    color: var(--text-secondary);
    transition: all 0.2s;
    font-size: 0.95rem;
}

.lang-dropdown a:hover {
    background-color: var(--bg-darker);
    color: var(--accent-color);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-primary);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 160px 0 120px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #f8fcf8;
    /* Very subtle green tint base */
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Graph paper grid pattern */
    background-image:
        linear-gradient(rgba(88, 201, 19, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(88, 201, 19, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 0;
}

/* Add a subtle vignette overlay */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(255, 255, 255, 0.8) 100%);
    z-index: 0;
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
    /* Above background */
}

/* Hero Text Side */
.hero-text-content {
    text-align: left;
}

.hero-logo {
    height: 60px;
    width: auto;
    margin-bottom: 1.5rem;
    display: block;
}

.hero-title {
    font-size: 4rem;
    /* Larger, bolder */
    line-height: 1;
    margin-bottom: 0.5rem;
    color: #10222e;
    /* Dark, solid */
    letter-spacing: -0.03em;
}

.hero-tagline {
    font-size: 2rem;
    color: var(--accent-color);
    font-weight: 400;
    margin-bottom: 1.5rem;
    display: block;
    font-family: var(--font-heading);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: #5a6b7c;
    margin-bottom: 2.5rem;
    max-width: 90%;
    line-height: 1.6;
}

/* Login Card "SaaS Style" - Refined */
.hero-login-card {
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08);
    /* Soft, expansive shadow */
    border: 1px solid rgba(0, 0, 0, 0.03);
    max-width: 420px;
    /* Slightly narrower */
    margin-left: auto;
    position: relative;
    z-index: 2;
}

.login-header {
    margin-bottom: 30px;
    border-bottom: none;
    /* Removed border for cleaner look */
    padding-bottom: 0;
    text-align: center;
}

.login-header h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #10222e;
}

.login-header p {
    font-size: 1rem;
    color: #8899a6;
}

.login-form .form-group {
    margin-bottom: 20px;
}

.login-form input {
    width: 100%;
    padding: 15px;
    background-color: #ffffff;
    border: 1px solid #e1e4e8;
    border-radius: 8px;
    font-size: 1rem;
    color: #10222e;
    transition: all 0.2s;
}

.login-form input:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(88, 201, 19, 0.1);
    outline: none;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    margin-bottom: 25px;
    color: var(--text-secondary);
}

.btn-primary.w-100 {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    border-radius: 8px;
}

.form-footer {
    text-align: center;
    margin-top: 25px;
    font-size: 0.9rem;
    color: #8899a6;
}

.form-footer a {
    color: var(--accent-color);
    font-weight: 600;
}

@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text-content {
        text-align: center;
        margin-bottom: 40px;
    }

    .hero-logo {
        margin: 0 auto 2rem;
    }

    .hero-subtitle {
        margin: 0 auto 2rem;
    }

    .hero-login-card {
        margin: 0 auto;
        padding: 30px 20px;
    }
}

/* Sections */
.section {
    padding: var(--spacing-section) 0;
}

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

.content-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.feature-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: block;
}

/* Contact Form */
.contact-section {
    background-color: var(--bg-darker);
}

.contact-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.contact-header {
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 25px;
    /* Increased spacing for floating labels */
    position: relative;
}

.floating-label label {
    position: absolute;
    top: 14px;
    left: 12px;
    font-size: 1rem;
    color: var(--text-secondary);
    pointer-events: none;
    transition: all 0.2s ease;
    background-color: #ffffff;
    /* To cover input border if needed, or transparent */
    padding: 0 4px;
}

.floating-label input:focus~label,
.floating-label input:not(:placeholder-shown)~label,
.floating-label textarea:focus~label,
.floating-label textarea:not(:placeholder-shown)~label,
.floating-label select:focus~label,
.floating-label select:valid~label {
    top: -10px;
    left: 10px;
    font-size: 0.8rem;
    color: var(--accent-color);
    font-weight: 600;
    background-color: #ffffff;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(88, 201, 19, 0.1);
}

/* Contact Info Details */
.contact-details {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    color: var(--accent-color);
}

.contact-link:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    padding: 40px 0;
    border-top: none;
    background-color: #10222e;
    /* Dark footer on light site */
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

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

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

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .logo-img {
        height: 50px;
        max-width: 180px;
    }

    .content-split {
        grid-template-columns: 1fr;
    }

    .nav {
        position: fixed;
        top: 81px;
        left: 0;
        width: 100%;
        background-color: var(--bg-darker);
        padding: 20px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .lang-switcher {
        margin-left: 0 !important;
        width: 100%;
    }

    .lang-dropdown {
        position: static;
        box-shadow: none;
        border: none;
        background: transparent;
        padding-left: 10px;
        display: none;
        /* Keep hidden until toggled */
    }

    .lang-dropdown.show {
        display: flex;
        padding-top: 10px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .contact-details {
        flex-direction: column;
        gap: 20px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* Animations & UI Polish */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    opacity: 0;
    /* Hidden initially */
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Premium Hover Effects */
.btn:hover {
    box-shadow: 0 5px 15px rgba(88, 201, 19, 0.3);
}

.contact-wrapper {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

/* --- New Premium Utilities & Components --- */

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

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

/* Feature Cards */

/* --- Dynamic Featured Section Styles --- */
.featured-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.featured-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.card-image-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-card:hover .card-image-wrapper img {
    transform: scale(1.05);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.featured-card:hover .card-overlay {
    opacity: 1;
}

.view-btn {
    background: #fff;
    color: #10222e;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.featured-card:hover .view-btn {
    transform: translateY(0);
}

.card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 0.85rem;
}

.meta-date {
    color: #8899a6;
}

.meta-tag {
    color: var(--accent-color);
    font-weight: 600;
    background: rgba(88, 201, 19, 0.1);
    padding: 3px 10px;
    border-radius: 4px;
}

.card-title {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: #10222e;
    line-height: 1.4;
}

.card-excerpt {
    font-size: 0.95rem;
    color: #5a6b7c;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.benefit-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.hover-lift:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.icon-circle {
    width: 60px;
    height: 60px;
    background-color: rgba(88, 201, 19, 0.1);
    color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
}

.icon-large {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, #10222e 0%, #1a3242 100%);
    color: white;
}

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

.text-white-50 {
    color: rgba(255, 255, 255, 0.7) !important;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 20px;
    border-radius: 6px;
    border: none;
    font-size: 1rem;
}

/* Review Cards */
.review-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    border-left: 4px solid var(--accent-color);
}

.stars {
    color: #f1c40f;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

/* Typography Enhancements */
.large-text {
    font-size: 1.3rem;
    line-height: 1.5;
    color: var(--text-primary);
}

.sub-heading {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.feature-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-list i {
    color: var(--accent-color);
}

/* --- NEW PREMIUM UTILITIES & COMPONENTS (Refactoring) --- */

/* Layout & Spacing */
.container-limited {
    max-width: 800px;
    margin: 0 auto;
}

.mt-3 {
    margin-top: 1rem;
}

.mt-4 {
    margin-top: 1.5rem;
}

.mt-5 {
    margin-top: 3rem;
}

.mb-3 {
    margin-bottom: 1rem;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

/* Flex Grids */
.flex-grid-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

/* Typography Utilities */
.text-emphasis {
    font-weight: 700;
    font-size: 1.2rem;
    margin-top: 1.5rem;
    color: var(--text-primary);
}

.text-highlight {
    margin-top: 20px;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-primary);
}

.text-highlight strong {
    color: var(--accent-color);
}

/* List Styles */
.list-styled {
    margin-top: 20px;
    margin-left: 20px;
    line-height: 1.6;
}

.list-clean {
    list-style: none;
    margin: 20px 0;
    padding: 0;
    font-size: 1.1rem;
    line-height: 1.8;
}

.list-clean li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 0;
}

.list-clean-bold {
    list-style: none;
    margin-top: 20px;
    padding: 0;
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Image Styles */
.testimonial-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--accent-color);
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.img-featured {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: auto;
    display: block;
}

.img-featured-sm {
    max-width: 80%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: auto;
    display: block;
}

.img-shadow-lg {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Component Overrides */
.lang-switcher-wrapper {
    margin-left: 20px;
    font-weight: 700;
}

.hero-buttons-start {
    justify-content: flex-start;
    margin-top: 30px;
}

/* Glass Card Enhanced */
.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.05);
}

/* Page Hero (Sub-pages) */
.page-hero {
    background-color: #f8fcf8;
    padding: 160px 0 100px;
    /* Matching Hero spacing but focused */
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(88, 201, 19, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(88, 201, 19, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: 0;
    pointer-events: none;
}

.page-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.page-hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #10222e;
    line-height: 1.1;
    background: linear-gradient(90deg, #10222e, #58c913);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

/* Partner Benefits Grid Adjustments */
.benefit-icon-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.02);
    height: 100%;
}

.benefit-icon-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(88, 201, 19, 0.1);
    border-color: rgba(88, 201, 19, 0.2);
}

.benefit-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 20px;
    display: inline-block;
}

.benefit-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.benefit-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Final Cleanup Utilities */
.hero-tagline-sub {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: block;
    color: var(--accent-color);
}

.hero-buttons-center {
    justify-content: center;
}

.section-text-left {
    margin-left: 0 !important;
    margin-right: 0 !important;
    text-align: left;
}

.glass-card-inline {
    display: inline-block;
    max-width: 800px;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.img-cta {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    display: block;
}