:root {
    --forest: #12241a;
    --neon: #00ff85;
    --logo-green: #00FF7F;
    --off-white: #f8faf9;
    --finance-green: #00d26a;
    --care-gold: #8b9467;
    --tech-blue: #1b2a4e;
    --card-shadow: 0 4px 20px rgba(0,0,0,0.08);
    --text-gray: #555;
    --white: #ffffff;
    --golf-green: #cc7a2e;
}

/* Ecosystem Section */
.ecosystem { 
    padding: 100px 0; 
    background: var(--white); /* Pure white to pop against the hero */
}
.ecosystem-flex { display: flex; align-items: center; gap: 50px; flex-wrap: wrap; }
.eco-text { flex: 1; min-width: 300px; }
.neon-text { color: var(--finance-green); }
.check-list { list-style: none; margin-top: 20px; }
.check-list li { margin-bottom: 15px; position: relative; padding-left: 30px; }
.check-list li::before { content: '✓'; position: absolute; left: 0; color: var(--neon); font-weight: bold; }

/* Visual Orbit Graphic */
.eco-visual { flex: 1; display: flex; justify-content: center; }
.circle-graphic { 
    width: 300px; height: 300px; border: 1px dashed #ccc; 
    border-radius: 50%; position: relative; display: flex; 
    align-items: center; justify-content: center; 
}
.center-logo {
    /* Exact font family and weight from your logo source */
    font-family: 'Arial Black', 'Arial', sans-serif;
    font-weight: 900;
    
    /* Increased size and tight letter spacing to match logo brand */
    font-size: 2.2rem; 
    letter-spacing: -2px;
    color: var(--forest);
    
    /* Ensure it stays perfectly centered */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    
    /* Optional: subtle text shadow to give it depth like the logo */
    text-shadow: 2px 2px 0px rgba(0,0,0,0.05);
}
.orbit { 
    position: absolute; padding: 10px 20px; border-radius: 50px; 
    color: white; font-size: 0.8rem; font-weight: 600; 
}
.orbit.finance { top: -15px; background: var(--finance-green); } /* Change text to "AI Logic" */
.orbit.care { bottom: 20px; left: -20px; background: var(--care-gold); } /* Change text to "Privacy" */
.orbit.tech { bottom: 20px; right: -20px; background: var(--tech-blue); } /* Change text to "Scalable" */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--off-white);
    color: var(--forest);
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 5%;
}

/* Header */
.main-header {
    background-color: var(--logo-green); /* Header matches logo bg */
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid rgba(0,0,0,0.1);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* --- Integrated Logo Styles --- */
.header-logo {
    display: flex;
    align-items: stretch;
}

.logo-bar {
    width: 4px;
    background: #000;
    margin-right: 12px;
}

.logo-brand {
    font-family: 'Arial Black', sans-serif;
    font-weight: 900;
    font-size: 32px;
    color: #000;
    line-height: 0.9;
    letter-spacing: -1px;
}

.underline-bar {
    display: block;
    height: 3px;
    background: #000;
    width: 100%;
    margin: 4px 0; /* Matches the deconstructed logo feel */
}

.logo-inc {
    font-family: 'Arial', sans-serif;
    font-weight: 700;
    font-size: 10px;
    letter-spacing: 4px;
    color: #000;
}

/* --- Header Navigation --- */
nav a {
    text-decoration: none;
    color: #000; /* Black text looks best on neon green */
    margin-left: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: opacity 0.3s;
}

nav a:hover {
    opacity: 0.7;
}

.logo-text-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Ensures everything starts at the bar */
}

.underline-bar {
    display: block;
    height: 3px;
    background: #000;
    width: 100%; /* Spans the width of 'LYDRA' */
    margin: 2px 0 4px 0; 
}

/* --- Header Button Hover Fix --- */
.btn-nav {
    background: #12241a; /* Dark forest green */
    color: var(--logo-green) !important;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    border: none;
}

.btn-nav:hover {
    background: #ffffff; /* Becomes white on hover */
    color: #000000 !important; /* Text becomes black */
    opacity: 1; /* Ensures it doesn't fade out */
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
/* Hero Section */
.hero {
    padding: 100px 0;
    background-color: var(--forest);
    color: var(--white);
    text-align: center;
}

.badge {
    background: rgba(0, 255, 133, 0.1);
    color: var(--neon);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 700;
}

.hero h2 {
    font-size: 3rem;
    margin: 20px 0;
    line-height: 1.25;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    opacity: 0.8;
}

/* Products */
.products { 
    padding: 100px 0; 
    /* A very subtle gray-green tint to separate from Ecosystem */
    background-color: #f2f5f3; 
    border-top: 1px solid rgba(0,0,0,0.03);
    border-bottom: 1px solid rgba(0,0,0,0.03);
}
.section-title { text-align: center; margin-bottom: 50px; font-size: 2rem; }

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.05);
    padding: 30px;
    border-radius: 24px; /* Matches the "app icon" rounded look */
    text-align: center;
    transition: all 0.3s ease;
}

/* Specific card accents to match screenshot intensity */
.finance-border:hover { border-color: var(--finance-green); box-shadow: 0 10px 30px rgba(0, 210, 106, 0.1); }
.care-border:hover { border-color: var(--care-gold); box-shadow: 0 10px 30px rgba(139, 148, 103, 0.1); }
.tech-border:hover { border-color: var(--tech-blue); box-shadow: 0 10px 30px rgba(27, 42, 78, 0.1); }
.golf-border:hover { border-color: var(--golf-green); box-shadow: 0 10px 30px rgba(46, 204, 113, 0.1); }

.icon-box {
    width: 100px; /* Bigger to match screenshot */
    height: 100px;
    margin: 0 auto 25px;
    border-radius: 22%; /* Perfect "App Icon" squirclish shape */
    display: flex;
    align-items: center;
    justify-content: center;
}

.finance-bg { background: var(--finance-green); }
.care-bg { background: var(--care-gold); }
.tech-bg { background: var(--tech-blue); }

.product-card h3 {
    margin-bottom: 15px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 1px;
}
/* Contact Section */
.contact-section {
    background-image: url('your-background-image.jpg'); /* Upload your image to Hostinger */
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect */
    position: relative;
}

.contact-overlay {
    background: rgba(18, 36, 26, 0.7); /* Dark forest green tint to make form pop */
    padding: 100px 0;
}

.contact-card {
    background: var(--white);
    max-width: 550px;
    margin: 0 auto;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.2);
}

.input-group { margin-bottom: 20px; }
.input-group label { display: block; margin-bottom: 8px; font-weight: 600; }

input, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
}

.btn-primary {
    background: var(--forest);
    color: var(--white);
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 700;
    width: 100%;
    transition: 0.3s;
}

.btn-primary:hover {
    background: var(--neon);
    color: var(--forest);
}

/* Join Us CTA Box */
.join-us {
    padding: 80px 0;
    background-color: #f0fdf4; /* Very light mint/off-white */
    text-align: center;
}

.join-box h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.join-box p {
    max-width: 600px;
    margin: 0 auto 30px;
    color: var(--text-gray);
}

.btn-secondary {
    display: inline-block;
    padding: 12px 40px;
    border: 1px solid var(--forest);
    border-radius: 30px;
    text-decoration: none;
    color: var(--forest);
    font-weight: 600;
    transition: 0.3s;
}

.btn-secondary:hover {
    background: var(--forest);
    color: white;
}

footer {
    background: var(--forest);
    color: white;
    padding: 80px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 100px;
    padding-bottom: 50px;
}

.footer-brand {
    flex: 1.5;
}

.footer-desc {
    margin-top: 25px;
    color: rgba(255,255,255,0.7);
    max-width: 400px;
    line-height: 1.8;
}

.footer-contact {
    flex: 1;
}

.footer-contact h3 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: var(--neon);
}

.contact-list {
    list-style: none;
}

.contact-list li {
    margin-bottom: 12px;
    color: rgba(255,255,255,0.8);
}

.contact-list strong {
    color: white;
    margin-right: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 0.8rem;
    opacity: 0.5;
}
/* --- Footer Logo Specific Fix --- */
.footer-logo-light {
    display: flex;
    align-items: flex-start; /* Aligns bar with the top of the text */
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo-light .logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Fix for the bar in footer to match your screenshot's green accent */
.footer-logo-light .logo-bar {
    width: 4px;
    height: 38px; /* Slightly shorter to match the LYDRA text height */
    background-color: var(--white) !important;
    margin-right: 0; /* Gap is handled by parent container */
}

/* Fix for the underline in footer */
.footer-logo-light .underline-bar {
    height: 2px;
    background-color: var(--white) !important;
    width: 100%;
    margin: 2px 0 4px 0;
}

.footer-logo-light .logo-brand {
    color: #ffffff !important;
    font-size: 28px;
    letter-spacing: -1px;
}

.footer-logo-light .logo-inc {
    color: rgba(255,255,255,0.5) !important;
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
}
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 50px;
    }
}
.visual-hero {
    /* Sets height to exactly the screen height minus the header (80px approx) */
    min-height: calc(100vh - 80px); 
    display: flex;
    align-items: center; /* Centers content vertically */
    padding: 0; /* Remove fixed large padding */
    background: #fff;
    overflow: hidden;
}

.hero-split {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    width: 100%; /* Ensure it uses full container width */
}

/* Slightly scale down the graphic for smaller laptop screens */
.hero-graphic-card {
    background: var(--logo-green);
    padding: 40px; /* Reduced from 60px */
    border-radius: 40px;
    transform: rotateX(15deg) rotateY(-20deg);
    box-shadow: 25px 25px 0 var(--forest);
    animation: float 5s ease-in-out infinite;
    min-width: 280px; /* Scaled down slightly */
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Ensure the heading doesn't push things down too far */
.hero-left h1 {
    font-size: 3.5rem; /* Slightly smaller to fit better */
    line-height: 1.1;
    margin: 15px 0;
    color: var(--forest);
}

.hero-left { flex: 1.2; }
.hero-right { flex: 0.8; display: flex; justify-content: center; position: relative; }

.hero-tag {
    color: var(--finance-green);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
}

.text-neon { color: var(--finance-green); }

.hero-btns {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.btn-primary-hero {
    background: var(--forest);
    color: #fff;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
}

.btn-secondary-hero {
    border: 2px solid var(--forest);
    color: var(--forest);
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
}

/* Abstract Graphic Style */
.abstract-graphic {
    width: 300px;
    height: 300px;
    background: var(--logo-green);
    border-radius: 30px;
    position: relative;
    transform: rotate(-10deg);
    box-shadow: 20px 20px 0 var(--forest);
}

.graphic-bar {
    position: absolute;
    width: 10px;
    height: 150px;
    background: #000;
    top: 50px;
    left: 40px;
}

@media (max-width: 992px) {
    .hero-split { flex-direction: column; text-align: center; }
    .hero-btns { justify-content: center; }
    .hero-left h1 { font-size: 3rem; }
}
/* --- High-Tech Geometric Hero Graphic --- */
.hero-graphic-card {
    background: var(--logo-green);
    padding: 40px; 
    border-radius: 40px;
    
    /* Slightly increased scale (0.9) to make it look prominent but not huge */
    transform: rotateX(15deg) rotateY(-20deg) scale(0.99);
    
    box-shadow: 25px 25px 0 var(--forest);
    animation: float 5s ease-in-out infinite;
    
    /* Increased min-dimensions so it fills more vertical space */
    min-width: 320px; 
    min-height: 320px;
    
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.geometric-grid {
    position: relative;
    width: 150px;
    height: 150px;
    margin-left: 20px;
}

/* The "Core" Node */
.geo-circle.main {
    width: 80px;
    height: 80px;
    border: 8px solid #000;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Connecting Line */
.geo-line {
    position: absolute;
    width: 120%;
    height: 4px;
    background: #000;
    top: 50%;
    left: -10%;
    transform: rotate(-45deg);
}

/* Data Dots Grid */
.geo-dots {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    position: absolute;
    bottom: -20px;
    right: -20px;
}

.geo-dots span {
    width: 12px;
    height: 12px;
    background: #000;
    border-radius: 50%;
    opacity: 0.6;
}

/* Make the bar stand out */
.graphic-v-bar {
    width: 12px;
    height: 180px;
    background: #000;
    border-radius: 10px;
}
/* --- Mobile Responsive Fixes --- */

@media (max-width: 768px) {
    /* 1. Mobile Header & Menu */
    .menu-icon {
        display: block;
        cursor: pointer;
        padding: 10px;
        z-index: 2000;
    }
    .menu-icon span, .menu-icon span::before, .menu-icon span::after {
        display: block;
        width: 25px;
        height: 3px;
        background: #000;
        position: relative;
        transition: 0.3s;
    }
    .menu-icon span::before { content: ''; position: absolute; top: -8px; }
    .menu-icon span::after { content: ''; position: absolute; bottom: -8px; }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%; /* Hidden by default */
        width: 70%;
        height: 100vh;
        background: var(--logo-green);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: 0.4s;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    }

    .menu-toggle:checked ~ .nav-links { right: 0; }
    .menu-toggle { display: none; }
    
    nav a { margin: 20px 0; font-size: 1.2rem; }

    /* 2. Hero Section Mobile */
    .visual-hero {
        min-height: auto;
        padding: 60px 0;
    }
    .hero-split {
        flex-direction: column; /* Graphic on top for mobile */
        text-align: center;
        gap: 30px;
    }
    .hero-left h1 { font-size: 2.5rem; }
    .hero-btns { justify-content: center; flex-direction: column; }
    
    /* Scale graphic even more for mobile */
    .hero-graphic-card {
        transform: rotateX(10deg) rotateY(-10deg) scale(0.7);
        min-width: 320px;
        min-height: 320px;
    }

    /* 3. About Section Fix */
    .hero h2 { font-size: 1.8rem; }
    .hero p { 
    font-size: 0.95rem; /* Standard mobile reading size */
    padding: 0 20px; 
}
    .eco-text h2 { 
    font-size: 1.8rem; 
    text-align: center; 
}
.eco-text p { 
    font-size: 0.95rem; 
    padding: 0 10px; 
    text-align: left; /* Center text to match the header on mobile */
}
.check-list li {
    font-size: 0.9rem;
    padding-left: 25px;
    text-align: left;
}
.check-list li::before {
    padding-left: 5px;
}
    /* 4. Orbital Graphic Fix */
    .circle-graphic {
        width: 240px;
        height: 240px;
    }
    .center-logo { font-size: 1.6rem; }
    .orbit {
        padding: 6px 12px;
        font-size: 0.7rem;
    }
    .ecosystem-flex {
        text-align: center;
    }
}

/* Hide toggle on desktop */
@media (min-width: 769px) {
    .menu-toggle, .menu-icon { display: none; }
}
.icon-box img {
    width: 100%;  /* Adjust this percentage to control the padding inside the box */
    height: auto;
    object-fit: contain; /* Prevents distortion if images have different ratios */
    display: block;
}
/* Hide the Honeypot */
.hidden {
    display: none;
    visibility: hidden;
}
.form-status {
    margin-top: 15px;
    font-size: 14px;
    text-align: center;
    min-height: 20px;
    font-weight: 600;
}

.form-status.success {
    color: #008040; /* Darker green for readability */
}

.form-status.error {
    color: #ff4d4d; /* Professional red */
}
.product-link {
    text-decoration: none; /* Removes underline */
    color: inherit;       /* Keeps text black/dark as you intended */
    display: block;        /* Ensures the whole area is clickable */
    transition: transform 0.3s ease;
}

.product-link:hover {
    transform: translateY(-5px); /* Optional: Adds a lift effect to the link itself */
}