/* ================= Base Styles & Variables ================= */
:root {
    --bg-color: #ffffff;
    --text-color: #000000;
    --border-color: #000000;
    --gray: #f5f5f5;
    --transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* ================= Typography ================= */
h1 {
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 1.1;
    letter-spacing: -0.03em;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

p {
    font-size: 1.125rem;
    color: #333;
}

/* ================= Buttons (Interactive) ================= */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    font-weight: 600;
    border-radius: 50px; /* Modern pill shape */
    cursor: pointer;
    border: 2px solid var(--border-color);
    transition: var(--transition);
}

.btn-solid {
    background-color: var(--text-color);
    color: var(--bg-color);
}

.btn-solid:hover {
    background-color: var(--bg-color);
    color: var(--text-color);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-color);
}

.btn-outline:hover {
    background-color: var(--text-color);
    color: var(--bg-color);
}

.btn-solid-white {
    background-color: var(--bg-color);
    color: var(--text-color);
    border-color: var(--bg-color);
}

.btn-solid-white:hover {
    background-color: transparent;
    color: var(--bg-color);
}

.btn-outline-white {
    background-color: transparent;
    color: var(--bg-color);
    border-color: var(--bg-color);
}

.btn-outline-white:hover {
    background-color: var(--bg-color);
    color: var(--text-color);
}

/* ================= Navbar ================= */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid #eaeaea;
}

.logo {
    display: flex;
    align-items: center;
    z-index: 1001; /* Keeps logo clickable when mobile menu is open */
}

.logo img {
    max-height: 40px; /* Adjust this number to make your logo bigger or smaller */
    width: auto;      /* Keeps the aspect ratio perfectly intact */
    display: block;
    transition: var(--transition);
}

.logo img:hover {
    opacity: 0.8; /* Slight fade effect when hovering over the logo */
}

/* Extra breakpoint for very small phones */
@media (max-width: 480px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero {
        padding: 4rem 5% 3rem;
    }

    /* Add this part for the logo */
    .logo img {
        max-height: 30px; 
    }
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links li a:not(.btn) {
    font-weight: 500;
    position: relative;
}

/* Interactive underline effect on links */
.nav-links li a:not(.btn)::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--text-color);
    transition: var(--transition);
}

.nav-links li a:not(.btn):hover::after {
    width: 100%;
}

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

.hamburger span {
    width: 25px;
    height: 2px;
    background-color: var(--text-color);
}

/* ================= Hero Section ================= */
.hero {
    padding: 8rem 5% 5rem;
    min-height: 80vh;
    display: flex;
    align-items: center;
    text-align: center;
}

.hero-container {
    max-width: 900px;
    margin: 0 auto;
}

.hero p {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Load-in Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }

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




/* ================= Clients Section ================= */
.clients {
    padding: 4rem 5%;
    text-align: center;
    border-top: 1px solid #eaeaea;
    border-bottom: 1px solid #eaeaea;
}

.clients p {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
    font-weight: 600;
}

.client-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    font-weight: 800;
    font-size: 1.5rem;
    color: #999;
}

.client-logos span {
    transition: var(--transition);
    cursor: default;
}

.client-logos span:hover {
    color: var(--text-color); /* Hover effect to pop out */
}

/* ================= Testimonial Section ================= */
.testimonial {
    padding: 8rem 5%;
    background-color: var(--text-color);
    color: var(--bg-color);
    text-align: center;
}

.quote-container {
    max-width: 1000px;
    margin: 0 auto;
}

blockquote {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 300;
    line-height: 1.4;
    margin-bottom: 2rem;
}

cite {
    font-style: normal;
    font-weight: 600;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ================= Services Section ================= */
.services {
    padding: 8rem 5%;
}

.services-header {
    max-width: 800px;
    margin-bottom: 4rem;
}

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

/* Interactive Service Cards */
.service-card {
    padding: 3rem 2rem;
    border: 1px solid #eaeaea;
    background-color: var(--bg-color);
    border-radius: 12px;
    transition: var(--transition);
    cursor: pointer;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.service-card p {
    font-size: 1rem;
    transition: var(--transition);
}

/* Invert colors and scale up slightly on hover */
.service-card:hover {
    background-color: var(--text-color);
    color: var(--bg-color);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.service-card:hover h3, 
.service-card:hover p {
    color: var(--bg-color);
}

/* ================= Call to Action ================= */
.cta {
    padding: 8rem 5%;
    background-color: var(--text-color);
    color: var(--bg-color);
    text-align: center;
}

.cta h2 {
    margin-bottom: 3rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* ================= Footer ================= */
.footer {
    padding: 6rem 5% 2rem;
    background-color: #fafafa;
    border-top: 1px solid #eaeaea;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

/* Interactive Newsletter Form */
.newsletter {
    display: flex;
    border-bottom: 2px solid var(--text-color);
    padding-bottom: 0.5rem;
}

.newsletter input {
    border: none;
    background: transparent;
    outline: none;
    flex-grow: 1;
    font-size: 1rem;
    color: var(--text-color);
}

.newsletter button {
    background: transparent;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    transition: transform var(--transition);
}

.newsletter button:hover {
    transform: translateX(5px);
}

.footer-links h4 {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #666;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--text-color);
    padding-left: 5px; /* Subtle hover indent */
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #eaeaea;
    color: #666;
    font-size: 0.9rem;
}

/* ================= Media Queries & Mobile Menu ================= */
@media (max-width: 900px) {
    /* Make the menu a full-screen overlay */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%; /* Hidden off-screen by default */
        width: 100%;
        height: 100vh;
        background-color: var(--bg-color);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        z-index: 999;
    }

    /* Slide the menu in when active */
    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 1.5rem 0;
    }

    .nav-links li a {
        font-size: 1.5rem;
        font-weight: 600;
    }

    .nav-links li a.btn {
        font-size: 1.2rem;
        margin-top: 1rem;
    }

    /* Keep hamburger visible and above the menu overlay */
    .hamburger {
        display: flex;
        z-index: 1000; 
        position: relative;
    }

    .hamburger span {
        transition: transform 0.3s ease, opacity 0.3s ease;
        transform-origin: center;
    }

    /* Hamburger to 'X' Animation */
    .hamburger.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    /* Adjust Footer Grid for Mobile */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    /* Adjust padding for smaller screens */
    .hero, .services, .cta, .testimonial {
        padding: 5rem 5%;
    }

    .client-logos {
        gap: 1.5rem;
        font-size: 1.2rem;
    }
}



/* ================= Contact Form Styles ================= */
.contact-section {
    padding: 2rem 5% 8rem;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--bg-color);
    padding: 3rem;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
}

.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ccc;
    background: var(--bg-color);
    color: var(--text-color);
    font-family: inherit;
    font-size: 1rem;
    border-radius: 8px;
    outline: none;
    transition: var(--transition);
}

.form-group input:focus, 
.form-group textarea:focus {
    border-color: var(--text-color);
    box-shadow: 0 0 0 1px var(--text-color); /* Crisp focus ring */
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.submit-btn {
    width: 100%;
    font-size: 1.1rem;
    padding: 1rem;
    margin-top: 1rem;
}

/* Form Responsive adjustments */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-container {
        padding: 2rem 1.5rem;
    }
}

/* Extra breakpoint for very small phones */
@media (max-width: 480px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero {
        padding: 4rem 5% 3rem;
    }
}

.success-message {
    text-align: center;
    padding: 3rem 1rem;
    animation: fadeIn 0.5s ease forwards;
}

.success-message h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.success-message p {
    color: #666;
    margin-bottom: 2rem;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ================= Checkbox Styles ================= */
.form-group-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}

.form-group-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--text-color); /* Makes the checkmark black */
    margin-top: 3px;
}

.form-group-checkbox label {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.4;
    cursor: pointer;
}

.inline-link {
    text-decoration: underline;
    font-weight: 600;
    color: var(--text-color);
}

.inline-link:hover {
    color: #666;
}


/* ================= Responsive Grid Adjustments ================= */

/* Service Grid: 1 column on mobile, 2 on tablet, 3-4 on desktop */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

/* Footer Grid: Stacked on mobile, 4 columns on desktop */
.footer-grid {
    display: grid;
    grid-template-columns: 1fr; /* Default mobile stack */
    gap: 3rem;
    margin-bottom: 4rem;
}

/* Desktop Footer Layout */
@media (min-width: 900px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

/* ================= Newsletter Form Responsiveness ================= */

.newsletter {
    display: flex;
    border-bottom: 2px solid var(--text-color);
    padding-bottom: 0.5rem;
    width: 100%;
    max-width: 400px; /* Prevents it from getting too wide on desktop */
}

/* On very small phones, stack the input and button if needed */
@media (max-width: 400px) {
    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .newsletter {
        max-width: 100%;
    }
}

/* ================= Global Mobile Tweaks ================= */

@media (max-width: 768px) {
    h1 {
        font-size: clamp(2.5rem, 8vw, 3.5rem); /* Slightly smaller for mobile */
    }
    
    .hero {
        padding: 6rem 5% 4rem;
    }

    .client-logos {
        gap: 1.5rem;
        font-size: 1.1rem;
    }

}
    

/* Mobile Adjustments for Legal text */
@media (max-width: 768px) {
    .legal-container h2 {
        font-size: 1.5rem;
    }
    .legal-container h3 {
        font-size: 1.2rem;
    }
    .legal-container p, .legal-container li {
        font-size: 1rem;
    }
}


/* ================= Contact Page Specifics ================= */
.contact-section { padding: 2rem 5% 8rem; }

.contact-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-color);
    padding: 3rem;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: opacity 0.4s ease;
}

.contact-form { display: flex; flex-direction: column; gap: 1.5rem; }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group { display: flex; flex-direction: column; gap: 0.5rem; }

.form-group input, .form-group textarea {
    padding: 1rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-family: inherit;
    transition: var(--transition);
}

/* Validation Focus States */
.form-group input:focus, .form-group textarea:focus {
    border-color: var(--text-color);
    outline: none;
    box-shadow: 0 0 0 2px rgba(0,0,0,0.05);
}

/* Visual cue for required fields that are filled */
.form-group input:valid:not(:placeholder-shown) {
    border-color: #000;
}

.validation-note {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: -0.5rem;
}

/* Success & Error UI */
.success-message {
    text-align: center;
    padding: 2rem 0;
    animation: fadeInUp 0.5s forwards;
}

#form-error {
    color: #d9534f;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 1rem;
    text-align: center;
}

@media (max-width: 768px) {
    .form-row { grid-template-columns: 1fr; }
    .contact-container { padding: 2rem 1.5rem; }
}

}

/* ================= Legal & Privacy Document Styles ================= */
.legal-section {
    padding: 2rem 5% 6rem;
    background-color: var(--bg-color);
}

.legal-container {
    max-width: 800px;
    margin: 0 auto;
    color: #333; /* Slightly softer than pure black for long reading */
}

.legal-updated {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 3rem;
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 1rem;
}

.legal-container h2 {
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.legal-container h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: var(--text-color);
}

.legal-container p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.8; /* Extra breathing room for long paragraphs */
}

.legal-container ul {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}

.legal-container li {
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
    line-height: 1.6;
}

.legal-container li strong {
    color: var(--text-color);
}

/* Mobile Adjustments for Legal text */
@media (max-width: 768px) {
    .legal-container h2 {
        font-size: 1.5rem;
    }
    .legal-container h3 {
        font-size: 1.2rem;
    }
    .legal-container p, .legal-container li {
        font-size: 1rem;
    }
}

/* The class that will be added automatically by JS */
.nav-links li a.active-page {
    color: #000; /* Or your brand color */
    font-weight: 800;
    position: relative;
}

/* Optional: Add a small underline to the active link */
.nav-links li a.active-page::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #000;
}

/* Ensure the Contact button doesn't get an underline if it's active */
.nav-links li a.btn.active-page::after {
    display: none;
}

.nav-links li a.btn.active-page {
    background-color: #000;
    color: #fff;
}

/* ================= Trust Bar / Staffing Section ================= */

.trust-bar {
    padding: 8rem 5%;
    background-color: #ffffff;
    border-top: 1px solid #eaeaea;
    border-bottom: 1px solid #eaeaea;
    text-align: left; /* Aligning left feels more professional for long text */
}

.trust-bar .tagline {
    margin-bottom: 1rem;
    display: block;
}

.trust-bar h2 {
    margin-bottom: 3rem;
    max-width: 600px;
}

/* Grid Wrapper */
.trust-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two balanced columns */
    gap: 4rem;
    align-items: start;
}

.trust-column p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1.5rem;
}

/* The "Diagnostic" Left Border Accent */
.trust-column.solution {
    position: relative;
    padding-left: 2rem;
    border-left: 2px solid #000; /* Distinct vertical line for the solution side */
}

/* Adding a subtle emphasis to the "Helix Lab" mention */
.trust-column.solution p:last-child {
    font-weight: 600;
    color: #000;
}

/* Responsive: Stack columns on smaller screens */
@media (max-width: 900px) {
    .trust-content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .trust-column.solution {
        padding-left: 0;
        border-left: none;
        border-top: 2px solid #000;
        padding-top: 2rem;
    }
    
    .trust-bar {
        padding: 4rem 5%;
    }
}

:root {
    --noir-black: #000000;
    --noir-white: #ffffff;
    --noir-gray: #f2f2f2;
    --border-soft: #e5e5e5;
}

.process-section {
    padding: 100px 5%;
    max-width: 1400px;
    margin: 0 auto;
    font-family: 'Inter', sans-serif;
    background-color: var(--noir-white);
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 60px;
    letter-spacing: -0.04em;
    color: var(--noir-black);
}

/* Responsive Grid */
.process-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

/* Card Styling */
.process-node {
    background: var(--noir-white);
    border: 1px solid var(--border-soft);
    padding: 40px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
}

.process-node:hover {
    border-color: var(--noir-black);
    transform: translateY(-5px);
}

/* Black and White Icon Box */
.icon-box {
    width: 54px;
    height: 54px;
    background: var(--noir-black);
    color: var(--noir-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 30px;
    transition: 0.3s ease;
}

/* Inversion effect on hover */
.process-node:hover .icon-box {
    background: var(--noir-white);
    color: var(--noir-black);
    outline: 2px solid var(--noir-black);
}

.step-label {
    font-family: 'Roboto Mono', monospace;
    font-size: 0.7rem;
    font-weight: 700;
    color: #999;
    display: block;
    margin-bottom: 8px;
    letter-spacing: 2px;
}

.process-content h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--noir-black);
}

.process-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #444;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .process-container {
        grid-template-columns: 1fr; /* Ensures cards don't break/squash on phones */
    }
    
    .process-node {
        padding: 30px;
    }
}


@media (max-width: 900px) {
    .nav-links {
        /* ... existing properties ... */
        height: 100vh; /* Fallback */
        height: 100dvh; /* Modern mobile fix */
        /* ... */
    }
    
      .nav-links li a.btn {
        font-size: 1.2rem;
        margin-top: 1rem;
        padding: 0.8rem 2.5rem; /* Make it a larger tap target on mobile */
        width: 100%; /* Optional: Makes the button span wider for easier tapping */
        text-align: center;
    }
}

.agent-image-container img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px; /* Optional: adds a nice curve to match modern UI */
}



/* ================= Agent Filter ================= */

.filter-btn {
    border-radius: 50px;
}

.filter-btn.active {
    background-color: var(--text-color);
    color: var(--bg-color);
}

/* Optional: smoother hide/show */
.service-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}



/* ================= Agent Hero (Split Layout) ================= */

.agent-hero {
    padding: 6rem 5%;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.agent-hero-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* LEFT CONTENT */
.agent-hero-content h1 {
    margin-bottom: 1rem;
}

.agent-hero-content .role {
    font-weight: 600;
    margin-bottom: 1rem;
    color: #666;
}

.agent-hero-content p {
    max-width: 500px;
    margin-bottom: 2rem;
}

/* RIGHT IMAGE */
.agent-hero-image {
    display: flex;
    justify-content: center;
}

.agent-hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

/* ================= Responsive ================= */
@media (max-width: 900px) {
    .agent-hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .agent-hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .agent-hero-image {
        margin-top: 2rem;
    }
}


