/* 
   Codium Digital - Enterprise Frontend Design System 
   Light Theme | Clean Minimalist | Modern Tech
*/

/* --- Variables --- */
:root {
    --primary: #7aa239;
    --primary-hover: #658a2d;
    --primary-light: rgba(122, 162, 57, 0.1);

    --bg-body: #F8FAFC;
    --bg-card: #FFFFFF;
    --bg-surface: #F1F5F9;

    --text-main: #1F2937;
    /* Dark Charcoal */
    --text-muted: #64748B;
    /* Slate 500 */
    --text-light: #94A3B8;

    --border: #E2E8F0;
    --border-light: #F1F5F9;

    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);

    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-full: 9999px;

    --font-sans: 'Inter', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

    --container-width: 1200px;
    --header-height: 80px;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-body);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    padding-top: var(--header-height);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
    height: auto;
}

/* --- Typography --- */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.2;
    letter-spacing: -0.025em;
}

h1 {
    font-size: 4rem;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

/* ... existing styles ... */

.hero-content p {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 540px;
    color: var(--text-muted);
}

.hero-content {
    max-width: 650px;
    position: relative;
    z-index: 2;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.text-primary {
    color: var(--primary);
}

.text-center {
    text-align: center;
}

.text-sm {
    font-size: 0.875rem;
}

.uppercase {
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

/* --- Layout --- */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
}

section {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.section-header {
    max-width: 700px;
    margin: 0 auto 4rem;
    text-align: center;
}

.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* --- Components --- */
/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
    gap: 0.5rem;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
    box-shadow: 0 4px 6px -1px rgba(122, 162, 57, 0.2);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 10px 15px -3px rgba(122, 162, 57, 0.4);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--text-light);
    color: var(--text-main);
}

.btn-outline:hover {
    border-color: var(--text-main);
    background-color: var(--bg-surface);
}

.btn-text {
    padding: 0;
    color: var(--primary);
}

.btn-text:hover {
    color: var(--primary-hover);
    text-decoration: underline;
}

/* Badges */
.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background-color: var(--primary-light);
    color: var(--primary);
    margin-bottom: 1rem;
}

/* Cards */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

/* --- Header --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    display: flex;
    align-items: center;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text-main);
}

.brand-logo img {
    height: 32px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    font-weight: 500;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-main);
    padding: 0.5rem;
}

/* --- Hero Section --- */
.hero-section {
    padding: 6.5rem 0 4.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #f0fdf4 100%);
    background-size: 200% 200%;
    animation: gradientMove 20s ease infinite;
    position: relative;
    overflow: hidden;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%
    }

    50% {
        background-position: 100% 50%
    }

    100% {
        background-position: 0% 50%
    }
}

.hero-content {
    max-width: 650px;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-top: 1.25rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    color: var(--text-main);
}

.hero-description {
    font-size: 1.125rem;
    margin-bottom: 2.25rem;
    color: var(--text-muted);
    max-width: 580px;
}

.hero-btns {
    display: flex;
    gap: 1rem;
}

.hero-visual {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    perspective: 1000px;
}

.hero-visual svg {
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.08));
    transition: transform 0.3s ease-out;
}

/* Floating Shapes (Replaces single glow) */
.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: floatShape 25s infinite alternate ease-in-out;
}

.shape-1 {
    top: -10%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(122, 162, 57, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
}

.shape-2 {
    bottom: -20%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(122, 162, 57, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    animation-delay: -5s;
    animation-duration: 30s;
}

.shape-3 {
    top: 40%;
    right: 20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.03) 0%, rgba(255, 255, 255, 0) 70%);
    animation-delay: -10s;
}

@keyframes floatShape {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(30px, -30px) scale(1.05);
    }
}




/* --- Animations --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-5px);
    }

    100% {
        transform: translateY(0px);
    }
}

.animate-fade-up {
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-float {
    animation: float 5s ease-in-out infinite;
}

.animate-delay-1 {
    animation-delay: 0.1s;
}

.animate-delay-2 {
    animation-delay: 0.2s;
}

.animate-delay-3 {
    animation-delay: 0.3s;
}

.animate-delay-4 {
    animation-delay: 0.6s;
}


/* --- Services Section --- */
.services-section {
    background: #FFFFFF;
    position: relative;
    padding: 3rem 0;
}

.staggered-grid .service-card {
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.service-card {
    background: #FFFFFF;
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px -1px rgba(0, 0, 0, 0.02);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.01);
    border-color: rgba(122, 162, 57, 0.3);
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover::after {
    transform: scaleX(1);
}

.service-card-header {
    margin-bottom: 1.5rem;
}

.service-icon-wrapper {
    width: 3.5rem;
    height: 3.5rem;
    background: rgba(122, 162, 57, 0.1);
    color: var(--primary);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: background 0.3s ease;
}

.service-card:hover .service-icon-wrapper {
    background: var(--primary);
    color: #FFFFFF;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0;
    line-height: 1.3;
}

.service-description {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.service-benefits {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.service-benefits li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.925rem;
    color: #475569;
    font-weight: 500;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
    margin-top: auto;
    transition: gap 0.2s ease;
}

.service-link:hover {
    gap: 0.75rem;
    text-decoration: underline;
}

.services-cta {
    text-align: center;
    margin-top: 5rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.services-cta p {
    font-size: 1.125rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

/* --- Portfolio --- */
.project-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.project-img {
    height: 240px;
    background: var(--bg-surface);
    position: relative;
    overflow: hidden;
}

.project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-img img {
    transform: scale(1.05);
}

.project-body {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* --- Footer --- */
.site-footer {
    background: #F8FAFC;
    border-top: 1px solid var(--border);
    padding: 5rem 0 2rem;
    color: var(--text-muted);
}

.footer-grid {
    margin-bottom: 4rem;
}

.footer-title {
    color: var(--text-main);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a:hover {
    color: var(--primary);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .container {
        max-width: 100%;
    }

    .hero-section .grid-2 {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .hero-content {
        margin: 0 auto;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: var(--bg-card);
        flex-direction: column;
        padding: 2rem;
        border-bottom: 1px solid var(--border);
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        z-index: 999;
        text-align: center;
        gap: 1.5rem;
    }

    .nav-links.active {
        display: flex;
        animation: slideDown 0.3s ease-out;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Hide CTA and Show Hamburger */
    .header-cta {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero-glow {
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 64px;
    }

    .brand-logo img {
        height: 26px;
    }

    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.4rem;
    }

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .hero-section,
    .page-header {
        padding: 2.5rem 0 1.5rem !important;
        background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 50%, #ffffff 100%);
        background-size: 400% 400%;
        animation: mobileGradient 10s ease infinite !important;
        overflow: hidden;
    }

    .page-header h1 {
        font-size: 1.75rem !important;
        line-height: 1.2 !important;
        margin-bottom: 1rem !important;
    }

    .page-header p {
        font-size: 0.95rem !important;
        line-height: 1.5 !important;
        margin-bottom: 2rem !important;
    }

    .hero-actions {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
        max-width: 300px;
    }

    @keyframes mobileGradient {
        0% {
            background-position: 0% 50%;
        }

        50% {
            background-position: 100% 50%;
        }

        100% {
            background-position: 0% 50%;
        }
    }

    .hero-section .shape {
        filter: blur(40px);
        opacity: 0.4;
        animation: mobileFloat 12s infinite ease-in-out !important;
    }

    .hero-section .shape-1 {
        width: 200px;
        height: 200px;
        top: 5%;
        right: -10%;
        background: radial-gradient(circle, rgba(122, 162, 57, 0.15) 0%, transparent 70%);
    }

    .hero-section .shape-2 {
        width: 180px;
        height: 180px;
        bottom: 5%;
        left: -10%;
        background: radial-gradient(circle, rgba(122, 162, 57, 0.12) 0%, transparent 70%);
        animation-delay: -4s !important;
    }

    .hero-section .shape-3 {
        width: 120px;
        height: 120px;
        top: 40%;
        left: 20%;
        background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
        animation-delay: -8s !important;
    }

    @keyframes mobileFloat {
        0% {
            transform: translate(0, 0) scale(1);
        }

        33% {
            transform: translate(10px, 15px) scale(1.05);
        }

        66% {
            transform: translate(-5px, 10px) scale(0.95);
        }

        100% {
            transform: translate(0, 0) scale(1);
        }
    }

    .hero-section .grid-2 {
        gap: 0.75rem;
    }

    .hero-content .badge {
        margin-bottom: 0.25rem;
    }

    .hero-title {
        font-size: 1.5rem !important;
        margin-top: 0.5rem !important;
        margin-bottom: 0.5rem !important;
        line-height: 1.25 !important;
    }

    .hero-description {
        margin-top: 0 !important;
        margin-bottom: 1.25rem !important;
        font-size: 0.75rem !important;
        line-height: 1.4 !important;
    }

    .hero-btns {
        width: 100%;
    }

    .hero-btns .btn {
        width: 100%;
        justify-content: center;
        padding: 1rem;
    }

    .hero-visual {
        margin-top: 0.5rem;
        min-height: 300px !important;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .blog-section,
    .services-section,
    .services-list-section,
    .why-codium-section {
        padding: 1.5rem 0 2.5rem !important;
    }

    /* Shared Horizontal Scroll Container */
    .blog-section .container,
    .services-section .container,
    .services-list-section .container,
    .why-codium-section .container,
    .related-posts .container {
        padding-left: 0;
        padding-right: 0;
        max-width: none;
    }

    .blog-section .section-header,
    .services-section .section-header,
    .why-codium-section .section-header,
    .related-posts .section-header {
        padding: 0 1.5rem;
        margin-bottom: 2rem;
    }

    .blog-section .grid-3,
    .services-section .grid-3,
    .services-section .grid-2,
    .services-list-section .grid-2,
    .why-codium-section .grid-3,
    .related-posts .grid-3 {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding: 0 1.5rem 2.5rem;
        gap: 1.25rem;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        margin: 0;
    }

    .blog-section .grid-3::-webkit-scrollbar,
    .services-section .grid-3::-webkit-scrollbar,
    .services-section .grid-2::-webkit-scrollbar,
    .services-list-section .grid-2::-webkit-scrollbar,
    .why-codium-section .grid-3::-webkit-scrollbar,
    .related-posts .grid-3::-webkit-scrollbar {
        display: none;
    }

    /* Why Codium Card Mobile */
    .why-codium-section .card {
        flex: 0 0 82%;
        scroll-snap-align: center;
        padding: 1.75rem;
        display: flex;
        flex-direction: column;
    }

    .why-codium-section h2 {
        padding: 0 1.5rem;
        font-size: 1.75rem;
        line-height: 1.3;
    }

    /* Service Card Mobile Specifics */
    .services-section .service-card,
    .services-list-section .service-card {
        flex: 0 0 85% !important;
        scroll-snap-align: center;
        display: flex !important;
        flex-direction: column;
        padding: 2rem !important;
        min-height: 420px;
        /* Large enough for most descriptions */
        height: auto;
    }

    .services-section .service-card h2,
    .services-list-section .service-card h2 {
        font-size: 1.5rem !important;
        margin-bottom: 0.75rem !important;
    }

    .services-section .service-card p,
    .services-list-section .service-card p {
        font-size: 0.9rem !important;
        line-height: 1.6 !important;
        margin-bottom: 1.5rem !important;
        display: -webkit-box;
        -webkit-line-clamp: 4;
        line-clamp: 4;
        -webkit-box-orient: vertical;
        overflow: hidden;
        flex-grow: 1;
    }

    .services-section .service-icon-wrapper,
    .services-list-section .service-icon {
        margin-bottom: 1rem !important;
    }

    .services-section .service-icon-wrapper {
        width: 3rem;
        height: 3rem;
        margin-bottom: 1.25rem;
    }

    .services-section .service-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }

    .services-section .service-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .services-section .service-benefits {
        gap: 0.5rem;
        margin-bottom: 1.5rem;
    }

    .services-section .service-benefits li {
        font-size: 0.875rem;
    }

    /* Insights & Related Posts Section Horizontal Scroll */
    .blog-section .container,
    .related-posts .container {
        padding-left: 0;
        padding-right: 0;
        max-width: none;
    }

    .blog-section .section-header,
    .related-posts .section-header {
        padding: 0 1.5rem;
        margin-bottom: 2rem;
    }

    .blog-section .section-header p,
    .related-posts .section-header p {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 0;
    }

    .blog-section .grid-3,
    .related-posts .grid-3 {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding: 0 1.5rem 2rem;
        gap: 1rem;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        margin: 0;
    }

    .blog-section .grid-3::-webkit-scrollbar,
    .related-posts .grid-3::-webkit-scrollbar {
        display: none;
    }

    .blog-section .blog-card-wrapper,
    .related-posts .blog-card-wrapper {
        flex: 0 0 82%;
        scroll-snap-align: center;
        display: flex;
        /* Makes the anchor stretch to full height of the tallest wrapper */
    }

    .blog-section .blog-card,
    .related-posts .blog-card {
        width: 100%;
        /* Ensures card fills the wrapper width */
    }

    .blog-section .card-image,
    .related-posts .card-image {
        height: 180px;
    }

    .blog-section .card-content,
    .related-posts .card-content {
        padding: 1.25rem;
    }

    .blog-section .card-title,
    .related-posts .card-title {
        font-size: 1.15rem;
        margin-bottom: 0.5rem;
    }

    .blog-section .card-excerpt,
    .related-posts .card-excerpt {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        margin-bottom: 1rem;
        font-size: 0.875rem;
    }

    .blog-section .card-cta,
    .related-posts .card-cta {
        font-size: 0.85rem;
    }
}

/* --- Process Section --- */
.process-section {
    padding: 3rem 0;
    position: relative;
    background: linear-gradient(to bottom, #f8fafc, #ffffff);
}

.process-timeline {
    position: relative;
    padding-top: 4rem;
}

.timeline-connector {
    position: absolute;
    top: 40px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: #e2e8f0;
    z-index: 0;
}

.process-grid {
    position: relative;
    z-index: 1;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.step-marker {
    position: relative;
    width: 80px;
    height: 80px;
    background: #FFFFFF;
    border-radius: 50%;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, border-color 0.3s ease;
    z-index: 2;
}

.process-step:hover .step-marker {
    transform: scale(1.05);
    border-color: var(--primary);
    box-shadow: 0 10px 15px -3px rgba(122, 162, 57, 0.2);
}

.step-number {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.step-icon {
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.process-step:hover .step-marker .step-icon {
    color: var(--primary);
}

.step-content h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.step-details {
    padding: 0;
    margin: 0;
    text-align: left;
    display: inline-block;
}

.step-details li {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.25rem;
    display: flex;
    align-items: center;
}

.step-details li::before {
    content: '';
    position: absolute;
    left: 0;
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.6;
}

/* Process CTA */
.process-cta {
    margin-top: 5rem;
    text-align: center;
    background: #FFFFFF;
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 3rem 2rem;
    box-shadow: var(--shadow-sm);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.process-cta h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.process-cta p {
    margin-bottom: 2rem;
    font-size: 1.125rem;
    color: var(--text-muted);
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .process-timeline {
        padding-left: 0.5rem;
        margin-top: 1rem;
    }

    .timeline-connector {
        top: 0;
        bottom: 0;
        left: 28px;
        width: 2px;
        height: 100%;
        right: auto;
        background: linear-gradient(to bottom, var(--primary) 0%, var(--border) 100%);
    }

    .grid-3.process-grid {
        display: flex;
        flex-direction: column;
        gap: 2.5rem;
    }

    .process-step {
        flex-direction: row;
        text-align: left;
        align-items: flex-start;
        gap: 1.25rem;
        position: relative;
        z-index: 2;
    }

    .step-marker {
        width: 56px;
        height: 56px;
        margin-bottom: 0;
        flex-shrink: 0;
        border-width: 2px;
    }

    .step-marker svg {
        width: 20px;
        height: 20px;
    }

    .step-number {
        width: 20px;
        height: 20px;
        font-size: 0.65rem;
        top: -3px;
        right: -3px;
    }

    .step-content h3 {
        font-size: 1.15rem;
        margin-bottom: 0.5rem;
        margin-top: 0.5rem;
    }

    .step-details li {
        font-size: 0.9rem;
        margin-bottom: 0.4rem;
        padding-left: 1rem;
    }

    .process-cta {
        margin-top: 3.5rem;
        padding: 2rem 1.5rem;
    }

    .process-cta h3 {
        font-size: 1.35rem;
    }

    .process-cta p {
        font-size: 1rem;
    }

    .cta-actions {
        flex-direction: column;
        gap: 0.75rem;
    }

    .cta-actions .btn {
        width: 100%;
    }
}

/* --- Blog Section --- */
.blog-section {
    padding: 5rem 0;
    background: #FFFFFF;
}

.blog-card-wrapper {
    height: 100%;
}

.blog-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #FFFFFF;
    border: 1px solid var(--border);
    border-radius: 1.25rem;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    text-decoration: none;
    color: inherit;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.08);
    border-color: rgba(122, 162, 57, 0.3);
}

.card-image {
    position: relative;
    height: 240px;
    overflow: hidden;
    background: var(--bg-surface);
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .card-image img {
    transform: scale(1.08);
}

.card-badge {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(4px);
    padding: 0.4rem 0.8rem;
    border-radius: 99px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.card-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-title {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--text-main);
    transition: color 0.3s ease;
}

.blog-card:hover .card-title {
    color: var(--primary);
}

.card-excerpt {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.card-cta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--primary);
    transition: gap 0.3s ease;
}

.blog-card:hover .card-cta {
    gap: 0.75rem;
}

/* --- Tech Stack Section --- */
.tech-stack-section {
    padding: 3rem 0;
    background: linear-gradient(to bottom, #ffffff, #f8fafc);
    border-bottom: 1px solid var(--border-light);
    overflow: hidden;
    position: relative;
    max-width: 100vw;
}

.tech-stack-heading {
    text-align: center;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
    opacity: 0.8;
}

.scrolling-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.scrolling-content {
    display: inline-flex;
    gap: 4rem;
    animation: scrollText 45s linear infinite;
    padding: 1rem 0;
}

.scrolling-content img {
    height: 60px;
    margin: 0 1.5rem;
    /* Add some margin for better spacing with larger icons */
    width: auto;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: all 0.3s ease;
    cursor: pointer;
}

.scrolling-content img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

.scrolling-wrapper:hover .scrolling-content {
    animation-play-state: paused;
}

@keyframes scrollText {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .scrolling-content {
        gap: 2rem;
        animation-duration: 30s;
    }

    .scrolling-content img {
        height: 32px;
    }
}

/* --- Credibility Metrics Section --- */
.metrics-section {
    padding: 2rem 0 5rem;
    background: #FFFFFF;
    border-bottom: 1px solid var(--border-light);
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.metric-item {
    position: relative;
    padding: 1rem;
}

.metric-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    font-variant-numeric: tabular-nums;
}

.metric-number::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
    opacity: 0.8;
}

.metric-label {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-top: 1rem;
}

/* Tablet (2 columns) */
@media (max-width: 1024px) {
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem 2rem;
    }
}

/* Mobile (1 column) */
@media (max-width: 640px) {
    .metrics-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .metric-number {
        font-size: 3rem;
    }
}

/* --- Footer Redesign --- */
.site-footer {
    padding: 5rem 0 2rem;
    padding-top: 5rem;
    border-top: 1px solid var(--border-light);
    background: #FFFFFF;
}

.footer-grid {
    margin-bottom: 4rem;
}

.footer-col {
    margin-bottom: 2rem;
}

.brand-logo.footer-logo img {
    height: 36px;
    margin-bottom: 1rem;
}

.footer-bio {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.trust-badges {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 1.5rem;
}

.trust-badges .separator {
    color: var(--text-light);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--primary);
}

.footer-heading {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 4px;
    /* Subtle movement */
}

/* Newsletter */
.footer-subtext {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.newsletter-form .input-group {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.footer-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    transition: border-color 0.3s ease;
}

.footer-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.1);
}

.subscribe-btn {
    padding: 0.75rem 1.25rem;
}

.privacy-note {
    font-size: 0.75rem;
    color: var(--text-light);
}

/* Bottom Bar */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-light);
    font-size: 0.875rem;
    color: var(--text-muted);
}

.legal-links {
    display: flex;
    gap: 1.5rem;
}

.legal-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: var(--primary);
}

/* --- Process Page Methodology (v2) --- */
.process-hero {
    background: linear-gradient(135deg, var(--bg-surface) 0%, #f0fdf4 100%);
}

.process-overview {
    padding: 6rem 0;
    background: #ffffff;
}

.process-overview h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.process-overview p {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.8;
}

.process-steps-section {
    padding: 8rem 0;
    background: #f8fafc;
}

.process-timeline-v2 {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary) 0%, var(--border) 100%);
    opacity: 0.3;
}

.step-item {
    display: flex;
    gap: 3rem;
    margin-bottom: 5rem;
    position: relative;
}

.step-marker-v2 {
    width: 80px;
    height: 80px;
    background: #ffffff;
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    z-index: 2;
    box-shadow: 0 10px 25px rgba(122, 162, 57, 0.1);
}

.step-num {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

.step-card-v2 {
    background: #ffffff;
    padding: 3rem;
    border-radius: 1.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.step-card-v2:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
    transform: translateY(-5px);
}

.step-tag {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    display: block;
    margin-bottom: 1rem;
}

.step-title-v2 {
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
}

.step-desc-v2 {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.step-outcome-v2 {
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-light);
    font-weight: 600;
    color: var(--text-main);
}

.outcome-label {
    color: var(--primary);
    margin-right: 0.5rem;
}

@media (max-width: 768px) {
    .process-overview {
        padding: 4rem 0;
    }

    .process-overview h2 {
        font-size: 1.85rem;
    }

    .process-overview p {
        font-size: 1rem;
    }

    .process-steps-section {
        padding: 4rem 0;
    }

    .process-timeline-v2 {
        padding-left: 0.5rem;
    }

    .timeline-line {
        left: 28px;
    }

    .step-item {
        gap: 1.5rem;
        margin-bottom: 3.5rem;
    }

    .step-marker-v2 {
        width: 56px;
        height: 56px;
    }

    .step-num {
        font-size: 1.15rem;
    }

    .step-card-v2 {
        padding: 2rem;
        border-radius: 1rem;
    }

    .step-title-v2 {
        font-size: 1.4rem;
        margin-bottom: 0.75rem;
    }

    .step-desc-v2 {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .step-outcome-v2 {
        font-size: 0.85rem;
        padding-top: 1rem;
    }
}

.final-process-cta {
    padding: 8rem 0;
    background: rgba(122, 162, 57, 0.03);
}

.final-process-cta h2 {
    font-size: 2.75rem;
    margin-bottom: 2rem;
}

.final-process-cta p {
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: var(--text-muted);
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.trust-microcopy {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-light);
    letter-spacing: 0.02em;
}

@media (max-width: 768px) {
    .final-process-cta {
        padding: 5rem 0;
    }

    .final-process-cta h2 {
        font-size: 2rem;
    }

    .cta-actions {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-actions .btn {
        width: 100%;
    }

    .trust-microcopy {
        font-size: 0.75rem;
        line-height: 1.6;
        padding: 0 1rem;
    }
}

/* --- About Page Redesign --- */
.about-hero {
    background: linear-gradient(135deg, var(--bg-surface) 0%, #fefce8 100%);
}

.about-metrics {
    padding: 2rem 0;
    margin-top: -3rem;
    position: relative;
    z-index: 10;
}

.metrics-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.metric-mini-card {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    text-align: center;
    border: 1px solid var(--border-light);
}

.metric-mini-card .metric-val {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.metric-mini-card .metric-lab {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.mission-vision-section {
    padding: 6rem 0;
    background: #ffffff;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.mv-card {
    padding: 3rem;
    background: #fafafa;
    border-radius: 1.5rem;
    border: 1px solid var(--border-light);
}

.mv-icon {
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: #ffffff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.mv-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.mv-card p {
    color: var(--text-muted);
    line-height: 1.7;
}

.values-section {
    padding: 6rem 0;
    background: var(--bg-surface);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.value-item {
    position: relative;
    padding-left: 1rem;
}

.value-num {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary);
    opacity: 0.1;
    position: absolute;
    top: -1.5rem;
    left: -0.5rem;
    z-index: 0;
}

.value-item h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.value-item p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
}

.about-cta {
    padding: 8rem 0;
    background: #ffffff;
}

.about-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-cta-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .about-metrics {
        margin-top: -1.5rem;
        padding: 0 1rem;
    }

    .metrics-card-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .metric-mini-card {
        padding: 1.25rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        text-align: left;
    }

    .metric-mini-card .metric-val {
        margin-bottom: 0;
        font-size: 1.5rem;
    }

    .mission-vision-section {
        padding: 4rem 0;
    }

    .mv-grid {
        grid-template-columns: 1fr;
    }

    .mv-card {
        padding: 2rem;
    }

    .values-section {
        padding: 4rem 0;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        margin-top: 3rem;
    }

    .about-cta {
        padding: 5rem 0;
    }

    .about-cta h2 {
        font-size: 2rem;
    }

    .about-cta-actions {
        flex-direction: column;
        gap: 1rem;
    }

    .about-cta-actions .btn {
        width: 100%;
    }
}

/* --- Careers Page Redesign --- */
.careers-hero {
    background: linear-gradient(135deg, var(--bg-surface) 0%, #ecfdf5 100%);
}

.careers-culture-section {
    padding: 6rem 0;
}

.culture-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.culture-card {
    background: #ffffff;
    padding: 3rem;
    border-radius: 1.5rem;
    border: 1px solid var(--border-light);
    text-align: center;
    transition: transform 0.3s ease;
}

.culture-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.culture-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.culture-card h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

.culture-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.dna-section {
    padding: 4rem 0;
    background: var(--bg-surface);
}

.dna-box {
    background: rgba(122, 162, 57, 0.04);
    color: var(--text-main);
    padding: 4rem;
    border-radius: 2rem;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(122, 162, 57, 0.1);
}

.dna-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
}

.tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(122, 162, 57, 0.1);
    color: var(--primary);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.dna-box h2 {
    color: var(--text-main);
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.dna-list {
    list-style: none;
    padding: 0;
}

.dna-list li {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-muted);
}

.dna-list li strong {
    color: var(--primary);
    display: block;
    margin-bottom: 0.25rem;
}

.open-roles-section {
    padding: 8rem 0;
    background: #ffffff;
}

.roles-container {
    max-width: 800px;
    margin: 4rem auto 0;
}

.role-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 3rem;
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 1rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.role-card:hover {
    border-color: var(--primary);
    background: rgba(122, 162, 57, 0.02);
}

.role-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.role-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.dot {
    width: 4px;
    height: 4px;
    background: var(--border);
    border-radius: 50%;
}

.empty-roles-box {
    text-align: center;
    padding: 4rem;
    background: #fafafa;
    border-radius: 2rem;
    border: 2px dashed var(--border);
}

.empty-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.empty-roles-box h3 {
    margin-bottom: 1rem;
}

.empty-roles-box p {
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto;
}

.careers-cta {
    padding: 8rem 0;
    background: rgba(122, 162, 57, 0.03);
}

@media (max-width: 768px) {
    .careers-culture-section {
        padding: 4rem 0;
    }

    .culture-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .culture-card {
        padding: 2rem;
    }

    .dna-box {
        padding: 2.5rem;
        border-radius: 1.5rem;
    }

    .dna-box h2 {
        font-size: 1.85rem;
    }

    .dna-list li {
        font-size: 1rem;
    }

    .open-roles-section {
        padding: 4rem 0;
    }

    .role-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 1.5rem;
        gap: 1.5rem;
    }

    .role-action {
        width: 100%;
    }

    .role-action .btn {
        width: 100%;
    }

    .empty-roles-box {
        padding: 2.5rem 1.5rem;
    }

    .careers-cta {
        padding: 5rem 0;
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .site-footer {
        padding-top: 4rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .legal-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .newsletter-form .input-group {
        flex-direction: column;
    }

    .subscribe-btn {
        width: 100%;
    }
}