:root {
    --bg-color: #fcf4f2;
    --grid-color: rgba(220, 205, 200, 0.15);
    --text-main: #1a1a1a;
    --text-muted: #6b6b6b;
    --text-light: #8e8e8e;
    --primary-green: #003626;
    --primary-red: #4d0e2c;
    --orange: #ff6a00;
    --white: #ffffff;
    --card-bg: #dde8e1;
    --font-main: 'Inter', sans-serif;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-main);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    line-height: 1.5;
}

/* Grid Background */
.grid-background {
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 150%;
    background-image:
        linear-gradient(to right, rgba(220, 205, 200, 0.4) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(220, 205, 200, 0.4) 1px, transparent 1px);
    background-size: 150px 150px;
    z-index: -1;
    mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
}

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

/* Top Bar */
.top-bar {
    display: flex;
    justify-content: flex-end;
    padding: 12px 12px 0;
}

.login-link {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 500;
    transition: color 0.2s;
}

.login-link:hover {
    color: var(--text-main);
}

/* Navbar */
.navbar {
    background-color: var(--white);
    border-radius: 16px;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 24px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

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

.logo-text {
    font-weight: 700;
    font-size: 20px;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-light);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-links a:hover {
    color: var(--text-main);
}

.arrow {
    font-size: 10px;
}

.hamburger-menu {
    display: none;
}

.d-mobile-only {
    display: none;
}

.btn {
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s;
    display: inline-block;
}

.btn-primary {
    background-color: var(--primary-green);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #00281c;
}

.btn-secondary {
    background-color: var(--primary-red);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: #3b0921;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 80px 0 100px;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    bottom: -350px;
    left: 0;
    width: 100%;
    height: 1000px;
    background: radial-gradient(ellipse 150vw 100% at 50% 0%, #ffece8 0%, rgba(255, 236, 232, 0) 70%);
    z-index: -2;
    pointer-events: none;
}

.hero-images {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.floating-profile {
    position: absolute;
    border-radius: 50%;
    object-fit: cover;
    pointer-events: auto;
    border: 4px solid var(--white);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.float-img-1 {
    top: 50px;
    left: 2%;
    width: 130px;
    height: 130px;
}

.float-img-2 {
    top: 280px;
    left: 12%;
    width: 170px;
    height: 170px;
}

.float-img-3 {
    top: 180px;
    right: 5%;
    width: 120px;
    height: 120px;
}

.float-img-4 {
    top: 360px;
    right: 15%;
    width: 100px;
    height: 100px;
}

.avatars {
    display: flex;
    position: relative;
}

.avatars img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid var(--white);
    margin-left: -8px;
}

.avatars img:first-child {
    margin-left: 0;
}

.green-dot {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 10px;
    height: 10px;
    background-color: #00d384;
    border: 2px solid var(--white);
    border-radius: 50%;
}

.badge-text {
    font-size: 13px;
    font-weight: 600;
    color: #4a4a52;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
    color: var(--text-main);
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
}

/* Features */
.features {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

.feature-card {
    background: var(--white);
    padding: 16px 24px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
    min-width: 160px;
}

.icon-wrapper {
    background-color: var(--orange);
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-card span {
    font-size: 14px;
    font-weight: 500;
}

/* CTA */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
}

/* Partners */
.partners {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
}

.partner {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 16px;
}

.g2-logo {
    color: #ff492c;
    font-weight: 800;
    font-size: 18px;
}

.star-icon {
    color: #f2b04f;
}

/* Happy Customer Card */
.happy-customer-card {
    position: absolute;
    top: 15%;
    right: -30px;
    background: var(--white);
    border-radius: 100px;
    padding: 10px 24px 10px 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.hc-avatars {
    display: flex;
    align-items: center;
}

.hc-avatars img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid var(--white);
    margin-left: -14px;
    position: relative;
}

.hc-avatars img:first-child {
    margin-left: 0;
    z-index: 3;
}

.hc-avatars img:nth-child(2) {
    z-index: 2;
}

.hc-avatars img:nth-child(3) {
    z-index: 1;
}

.hc-text {
    display: flex;
    flex-direction: column;
}

.hc-title {
    font-weight: 700;
    font-size: 14px;
    color: var(--text-main);
}

.hc-rating {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
}

.hc-rating .star {
    color: #f2b04f;
}




@media (max-width: 1024px) {
    .float-img-1 {
        left: 0%;
        width: 100px;
        height: 100px;
    }

    .float-img-2 {
        left: 5%;
        width: 120px;
        height: 120px;
    }

    .float-img-3 {
        right: 0%;
        width: 90px;
        height: 90px;
    }

    .float-img-4 {
        right: 5%;
        width: 80px;
        height: 80px;
    }

    .happy-customer-card {
        transform: scale(0.85);
        transform-origin: top right;
        right: 0px;
    }
}

@media (max-width: 768px) {

    .top-bar {
        display: none !important;
    }

    .d-none-mobile {
        display: none !important;
    }

    .nav-links {
        display: none !important;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 20px;
        background: var(--white);
        padding: 20px;
        border-radius: 12px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        min-width: 200px;
        gap: 20px;
    }

    .nav-links.active {
        display: flex !important;
    }

    .hamburger-menu {
        display: block;
        cursor: pointer;
    }

    .d-mobile-only {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .hero {
        padding: 10px 0 10px;
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
        margin-top: 10px;
    }

    .hero-title {
        margin-top: 190px;
        margin-bottom: 12px;
        position: relative;
        width: 100%;
        z-index: 2;
        text-align: center;
    }

    .m-line-1,
    .m-line-2,
    .m-line-3,
    .m-line-4 {
        font-size: 32px;
        font-weight: 800;
        line-height: 1.15;
        text-align: center;
        width: 100%;
        margin: 0;
        align-self: center;
        display: block;
    }

    .m-line-1 {
        font-size: 34px;
        margin-bottom: 0px;
    }

    .hero-subtitle {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 16px;
        text-align: center;
        padding: 0 10px;
    }

    .hero .floating-profile {
        position: absolute !important;
        margin: 0 !important;
    }

    .float-img-1 {
        top: 40px !important;
        left: 5% !important;
        width: 64px !important;
        height: 64px !important;
        border-width: 3px !important;
    }

    .float-img-2 {
        top: 80px !important;
        left: 15% !important;
        width: 90px !important;
        height: 90px !important;
        border-width: 3px !important;
    }

    .float-img-3 {
        top: 50px !important;
        right: 8% !important;
        width: 76px !important;
        height: 76px !important;
        border-width: 3px !important;
    }

    .float-img-4 {
        top: 100px !important;
        right: 22% !important;
        width: 54px !important;
        height: 54px !important;
        border-width: 3px !important;
    }

    .features {
        flex-direction: row;
        justify-content: center;
        gap: 16px;
        flex-wrap: nowrap;
        width: 100%;
        padding: 0 16px;
        margin-bottom: 20px;
    }

    .feature-card {
        flex: 1;
        min-width: 0;
        padding: 12px 8px;
        border-radius: 16px;
        gap: 12px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
    }

    .feature-card .icon-wrapper {
        width: 44px;
        height: 44px;
        border-radius: 10px;
    }

    .feature-card .icon-wrapper svg {
        width: 24px;
        height: 24px;
    }

    .feature-card span {
        font-size: 13px;
        font-weight: 500;
        text-align: center;
    }

    .hero .cta-buttons {
        display: flex;
        flex-direction: row !important;
        width: 100%;
        gap: 16px;
        padding: 0 16px;
        margin-bottom: 16px;
    }

    .hero .cta-buttons .btn {
        flex: 1;
        text-align: center;
        padding: 14px 10px;
        font-size: 14px;
        font-weight: 700;
        border-radius: 12px;
        width: 100%;
    }

    .partners {
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 6px;
        justify-content: center;
        align-items: center;
        width: 100%;
        transform: scale(0.8);
        margin-top: 0px;
        margin-bottom: 0px;
        transform-origin: center top;
    }

    .happy-customer-card {
        transform: scale(0.65);
        transform-origin: top right;
        right: 2px;
        top: 5%;
        padding: 8px 16px 8px 8px;
    }
}

/* Dashboard Preview */
.dashboard-preview {
    margin: 10px auto 100px;
    display: flex;
    justify-content: center;
}

.dashboard-mockup {
    border-radius: 40px;

    width: 100%;
    position: relative;
}

.dashboard-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    display: block;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
    .dashboard-preview {
        margin: -10px auto 40px;
    }

    .dashboard-mockup {
        padding: 12px;
        border-radius: 24px;
    }

    .dashboard-img {
        border-radius: 12px;
    }
}

/* Client Logos Section */
.client-logos {
    padding: 20px 0 80px;
    display: flex;
    justify-content: center;
}

.logo-track {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 70px;
    max-width: 1100px;
    width: 100%;
}

.client-logo {
    height: 34px;
    width: auto;
    object-fit: contain;
    filter: brightness(0.1);
    /* ensures dark appearance similarly shown */
}

@media (max-width: 1024px) {
    .logo-track {
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .logo-track {
        gap: 40px;
    }

    .client-logo {
        height: 28px;
    }
}

@media (max-width: 480px) {
    .client-logos {
        padding: 10px 0 60px;
    }

    .logo-track {
        gap: 24px;
    }

    .client-logo {
        height: 22px;
    }
}

/* Features Bento Grid Section */
.features-bento {
    max-width: 1100px;
    margin: 80px auto;
    padding: 0 20px;
}

.section-title {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.25;
    text-align: center;
    color: #1a173b;
    margin-bottom: 40px;
    letter-spacing: -0.5px;
}

.feature-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.tab {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    padding: 14px 24px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s;
    font-family: var(--font-main);
}

.tab.active {
    background: #f4f5f7;
    color: #1a173b;
    font-weight: 600;
}

.bento-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
}

.bento-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.bento-bottom {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 24px;
}

.bento-card {
    background: var(--white);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.03);
}

/* Job List Header */
.job-header {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr 1fr;
    background: #f6f7f9;
    padding: 14px 20px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    color: #1a1a1a;
    margin-bottom: 12px;
}

/* Job Row */
.job-row {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr 1fr;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid #f2f2f2;
    font-size: 14px;
    color: #1a1a1a;
}

.job-row:last-child {
    border-bottom: none;
}

.job-title {
    font-weight: 500;
}

.badge {
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 13px;
    text-align: center;
    display: inline-block;
}

.badge-low {
    background: #cbf4d8;
    color: #0d5f2a;
}

.badge-medium {
    background: #d8cfff;
    color: #4a2b99;
}

.badge-high {
    background: #ffdbcc;
    color: #993a15;
}

/* Form Grid */
.job-form {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: flex-end;
}

.form-group label {
    font-size: 13px;
    font-weight: 500;
    color: #6a6a6a;
}

.form-group input,
.form-group select,
.input-with-icon {
    padding: 12px;
    border: 1px solid #ececec;
    border-radius: 8px;
    font-size: 14px;
    color: #1a1a1a;
    width: 100%;
    background: var(--white);
    outline: none;
    font-family: var(--font-main);
}

.input-with-icon {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 12px;
}

.input-with-icon input {
    border: none;
    padding: 12px 0;
    flex: 1;
    min-width: 0;
}

.input-with-icon span {
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
}

.assignee-picker {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 12px;
    border: 1px solid #ececec;
    border-radius: 8px;
    height: 43px;
}

.add-assignee {
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
}

.w-100 {
    width: 100%;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Performance Donut */
.performance {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.performance h3 {
    font-size: 16px;
    font-weight: 700;
    color: #1a173b;
    margin-bottom: 24px;
}

.donut-chart-container {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: conic-gradient(var(--primary-green) 75%, #e1f4e5 0);
    display: flex;
    align-items: center;
    justify-content: center;
}

.donut-inner {
    width: 90px;
    height: 90px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: #1a173b;
}

/* Mobile Preview */
.mobile-preview {
    background: #dbf4c8;
    padding: 0px 0px 0 0px;
    display: flex;
    align-items: end;
    justify-content: center;
    overflow: hidden;
}

.mobile-img {
    width: 100%;
    height: 80%;
    object-fit: cover;
    object-position: top;
    display: block;
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.1);
    border-radius: 32px 32px 0 0;
}

/* Bento Responsive */
@media (max-width: 1024px) {
    .bento-layout {
        grid-template-columns: 1fr;
    }

    .bento-bottom {
        grid-template-columns: 1fr 1fr;
    }

    .mobile-preview {
        padding: 40px 40px 0 40px;
        align-items: center;
    }

    .mobile-img {
        max-width: 320px;
        border-radius: 32px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 32px;
    }

    .bento-bottom {
        grid-template-columns: 1fr;
    }

    .job-header,
    .job-row {
        grid-template-columns: 1.5fr 1.5fr 1fr;
    }

    .job-header div:nth-child(2),
    .job-row div:nth-child(2) {
        display: none;
    }

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

/* Why Love Wello Section */
.why-wello {
    max-width: 1100px;
    margin: 80px auto 120px;
    padding: 0 20px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}

.feature-box {
    border-radius: 20px;
    padding: 32px 24px 0 24px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.feature-box h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a173b;
    margin-bottom: 12px;
}

.feature-box p {
    font-size: 14px;
    color: #6a6a6a;
    line-height: 1.5;
    margin-bottom: 32px;
}

.feature-img {
    width: 100%;
    height: auto;
    margin-top: auto;
    display: block;
    object-fit: cover;
    object-position: bottom;
}

.feature-yellow {
    background: #FFF7EB;
}

.feature-green {
    background: #EFFBFA;
}

.feature-purple {
    background: #F6F1FF;
}

.feature-blue {
    background: #F4F9FF;
}

.team-love-box {
    background: var(--white);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    font-size: 20px;
    font-weight: 800;
    color: #1a173b;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

/* Responsive */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-box {
        padding: 32px 32px 0 32px;
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-box {
        padding: 24px 24px 0 24px;
    }

    .team-love-box {
        padding: 24px;
        font-size: 18px;
    }
}

/* Maintenance Excellence Section */
.maintenance-section {
    background-color: #f6f6f6;
    padding: 100px 0;
    margin-top: 60px;
}

.maintenance-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.maintenance-header h2 {
    font-size: 38px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.maintenance-header p {
    font-size: 16px;
    color: #6a6a6a;
}

.maintenance-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.maintenance-left {
    flex: 1;
    background-color: #4d002e;
    border-radius: 20px;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
    overflow: hidden;
    position: relative;
}

.maintenance-img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.maintenance-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-active {
    background: var(--white);
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border-bottom: 2px solid #4d002e;
    border-right: 1px solid rgba(0, 0, 0, 0.03);
    border-left: 1px solid rgba(0, 0, 0, 0.03);
    border-top: 1px solid rgba(0, 0, 0, 0.03);
}

.feature-title-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
}

.feature-active h3 {
    font-size: 18px;
    font-weight: 800;
    color: #1a1a1a;
}

.feature-active p {
    font-size: 15px;
    color: #6a6a6a;
    line-height: 1.5;
    margin-left: 44px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 24px;
    cursor: pointer;
    transition: background-color 0.2s;
    border-radius: 8px;
}

.feature-item:hover {
    background-color: rgba(0, 0, 0, 0.03);
}

.feature-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
}

.feature-icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
    flex-shrink: 0;
}

/* Responsive Maintenance Section */
@media (max-width: 1024px) {
    .maintenance-content {
        flex-direction: column;
    }

    .maintenance-left {
        width: 100%;
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .maintenance-section {
        padding: 60px 0;
    }

    .maintenance-header h2 {
        font-size: 32px;
    }

    .maintenance-left {
        min-height: 300px;
    }

    .feature-active p {
        margin-left: 0;
        margin-top: 12px;
    }
}

/* Profitable Business Section */
.profitable-business {
    background-color: #4d002e;
    padding: 100px 0;
    color: var(--white);
    margin-top: 60px;
}

.profit-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.profit-header h2 {
    font-size: 44px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.profit-header p {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 32px;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}

.btn-green {
    background-color: #befb49;
    color: #1a1a1a;
    font-size: 16px;
    font-weight: 700;
    font-family: var(--font-main);
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-green:hover {
    background-color: #aae935;
    transform: translateY(-2px);
}

.stats-grid-wrapper {
    margin-top: 60px;
    width: 100%;
}

.stats-grid {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    /* desktop wrap */
}

.stat-card {
    flex: 1 1 calc(20% - 24px);
    min-width: 180px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px 16px;
    text-align: left;
    transition: transform 0.2s, background 0.2s;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-4px);
}

.stat-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    margin-bottom: 32px;
}

.stat-card h4 {
    font-size: clamp(13px, 1.2vw, 16px);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    word-break: break-word;
}

.stat-number {
    font-size: clamp(32px, 3.5vw, 56px);
    font-weight: 800;
    color: #befb49;
    line-height: 1;
    letter-spacing: -1.5px;
    white-space: nowrap;
}

.badges-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 80px;
    flex-wrap: wrap;
}

.badges-row img {
    height: 72px;
    object-fit: contain;
}

/* Responsive Profitable Section */
@media (max-width: 1024px) {
    .stats-grid {
        justify-content: center;
    }

    .stat-card {
        flex: 1 1 calc(33.333% - 24px);
    }
}

@media (max-width: 768px) {
    .profitable-business {
        padding: 60px 0;
    }

    .profit-header h2 {
        font-size: 32px;
    }

    .stats-grid {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 20px;
        scroll-snap-type: x mandatory;
    }

    .stat-card {
        flex: 0 0 240px;
        scroll-snap-align: start;
    }

    .badges-row {
        gap: 24px;
        margin-top: 40px;
    }

    .badges-row img {
        height: 56px;
    }
}

/* Integrations Section */
.integrations-section {
    padding-top: 100px;
    padding-bottom: 60px;
    overflow-x: hidden;
}

.integrations-header {
    display: flex;
    gap: 40px;
    justify-content: space-between;
    margin-bottom: 60px;
}

.integrations-text {
    flex: 1;
    max-width: 800px;
}

.integrations-text h2 {
    font-size: 38px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.25;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.integrations-text p {
    font-size: 16px;
    color: #6a6a6a;
    line-height: 1.6;
}

.integrations-action {
    display: flex;
    align-items: flex-start;
    margin-top: 10px;
}

.contact-sales-link {
    font-size: 16px;
    font-weight: 700;
    color: #0f4c3a;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 80px;
}

.marquee-row {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.marquee-content {
    display: flex;
    gap: 20px;
    width: max-content;
}

/* Animations perfectly balanced for infinite duplicated tracks */
.marquee-rtl {
    animation: scroll-rtl 35s linear infinite;
}

.marquee-ltr {
    animation: scroll-ltr 35s linear infinite;
}

@keyframes scroll-rtl {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 10px));
    }
}

@keyframes scroll-ltr {
    0% {
        transform: translateX(calc(-50% - 10px));
    }

    100% {
        transform: translateX(0);
    }
}

.marquee-item {
    background: var(--white);
    border: 1px solid #ececec;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    height: 80px;
    width: 180px;
    flex-shrink: 0;
}

.marquee-item img {
    height: 32px;
    max-width: 140px;
    object-fit: contain;

}

.integration-cta {
    background: var(--white);
    border: 1px solid #ececec;
    border-radius: 20px;
    padding: 32px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.03);
    margin-bottom: 20px;
}

.integration-cta p {
    font-size: 18px;
    font-weight: 500;
    color: #1a1a1a;
    max-width: 700px;
    line-height: 1.5;
}

.integration-cta .btn-green {
    margin: 0;
    padding: 16px 40px;
    flex-shrink: 0;
}

/* Responsive Integrations Section */
@media (max-width: 992px) {
    .integrations-header {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .integrations-text h2 {
        font-size: 30px;
    }

    .integration-cta {
        flex-direction: row;
        text-align: center;
        gap: 24px;
        padding: 12px;
    }

    .integration-cta p {
        font-size: 12px;
    }

    .integration-cta .btn-green {
        font-size: 12px;
        padding: 6px 8px;
    }

    .marquee-item {
        height: 60px;
        padding: 16px 24px;
        width: 140px;
    }

    .marquee-item img {
        height: 24px;
    }
}

/* Efficiency Section */
.efficiency-section {
    padding-top: 80px;
    padding-bottom: 80px;
}

.efficiency-box {
    background-color: #f7f7f7;
    border-radius: 24px;
    padding: 50px 20px;
}

.efficiency-box h2 {
    text-align: center;
    font-size: 30px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.25;
    margin-bottom: 60px;
    letter-spacing: -0.5px;
}

.efficiency-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 32px;
    align-items: center;
}

.feature-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.eff-pill {
    background: var(--white);
    color: #1a1a1a;
    font-size: 15px;
    font-weight: 700;
    padding: 20px 24px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
    cursor: pointer;
    transition: all 0.2s;
    text-align: left;
}

.eff-pill:hover {
    background: #4d002e;
    color: var(--white);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.eff-pill-active {
    background: #4d002e;
    color: var(--white);
}

.eff-pill-active:hover {
    transform: none;
}

.efficiency-mobile {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
}

.efficiency-mobile img {
    height: 560px;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
}

.cta-content {
    padding: 0px 0px;
}

.cta-content h2 {
    font-size: 12px;
    font-weight: 800;
}

@media (max-width: 1024px) {
    .efficiency-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .efficiency-mobile {
        grid-column: 1 / -1;
        grid-row: 1;
    }

    .efficiency-box {
        padding: 60px 24px;
    }

    .efficiency-mobile img {
        height: 480px;
    }
}

@media (max-width: 768px) {
    .efficiency-grid {
        grid-template-columns: 1fr;
    }

    .efficiency-box h2 {
        font-size: 32px;
    }

    .efficiency-box {
        padding: 40px 20px;
    }
}

/* Smart Service Stack Section */
.smart-stack-section {
    padding-top: 100px;
    padding-bottom: 80px;
    background-color: transparent;
}

.smart-stack-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.smart-stack-header h2 {
    font-size: 40px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.25;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.smart-stack-header p {
    font-size: 18px;
    color: #6a6a6a;
    line-height: 1.6;
}

.smart-stack-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.smart-stack-row-top {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 32px;
}

.smart-stack-row-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
}

.stack-img-wrap {
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.02);
    display: flex;
    justify-content: center;
    align-items: center;
}

.smart-stack-row-top .stack-img-wrap {
    height: 380px;
}

.smart-stack-row-bottom .stack-img-wrap {
    height: 280px;
}

.stack-img-wrap img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.stack-card h3 {
    font-size: 20px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.stack-card p {
    font-size: 15px;
    color: #6a6a6a;
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .smart-stack-row-top {
        grid-template-columns: 1fr;
    }

    .smart-stack-row-bottom {
        grid-template-columns: 1fr 1fr;
    }

    .smart-stack-row-top .stack-img-wrap {
        height: auto;
        min-height: 280px;
    }
}

@media (max-width: 768px) {
    .smart-stack-section {
        padding: 60px 0;
    }

    .smart-stack-header h2 {
        font-size: 32px;
    }

    .smart-stack-row-bottom {
        grid-template-columns: 1fr;
    }

    .stack-img-wrap {
        height: auto;
        min-height: 240px;
    }
}

/* Eliminate Section */
.eliminate-section {
    padding-top: 100px;
    padding-bottom: 80px;
}

.eliminate-header {
    text-align: center;
    max-width: 960px;
    margin: 0 auto 60px auto;
}

.eliminate-header h2 {
    font-size: 40px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.25;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.eliminate-header p {
    font-size: 16px;
    color: #6a6a6a;
    line-height: 1.6;
}

.eliminate-cards-stack {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.eliminate-footer-action {
    text-align: center;
    margin-top: 60px;
}

.btn-dark-purple {
    background-color: #4d002e;
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    font-family: var(--font-main);
    padding: 16px 40px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-dark-purple:hover {
    background-color: #380022;
    transform: translateY(-2px);
}

.eliminate-card {
    display: flex;
    background: var(--white);
    border: 1px solid #e5e5e5;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 100px;
}

.eliminate-card:nth-child(1) {
    top: 100px;
}

.eliminate-card:nth-child(2) {
    top: 120px;
}

.eliminate-card:nth-child(3) {
    top: 140px;
}

.eliminate-card:nth-child(4) {
    top: 160px;
}

.eliminate-card:nth-child(5) {
    top: 180px;
}

.eliminate-left {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.step-indicator {
    display: inline-block;
    padding: 4px 12px;
    border: 1px solid #fb923c;
    color: #fb923c;
    font-weight: 600;
    font-size: 13px;
    border-radius: 6px;
    margin-bottom: 24px;
    align-self: flex-start;
}

.eliminate-left h3 {
    font-size: 32px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.25;
    margin-bottom: 24px;
}

.eliminate-left p {
    font-size: 15px;
    color: #6a6a6a;
    line-height: 1.6;
}

.eliminate-right {
    flex: 1;
    background-color: #06392b;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px;
}

.eliminate-right img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}


@media (max-width: 992px) {
    .eliminate-card {
        flex-direction: column;
    }

    .eliminate-left {
        padding: 40px;
    }

    .eliminate-right {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .eliminate-header h2 {
        font-size: 32px;
    }

    .eliminate-left {
        padding: 32px 24px;
    }

    .eliminate-left h3 {
        font-size: 26px;
    }

    .eliminate-right {
        padding: 32px 24px;
    }
}

/* Stage Section */
.stage-section {
    padding-top: 100px;
    padding-bottom: 80px;
}

.stage-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.stage-header h2 {
    font-size: 40px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.25;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.stage-header p {
    font-size: 16px;
    color: #6a6a6a;
    line-height: 1.6;
}

.stage-container {
    display: flex;
    background: var(--white);
    border: 1px solid #e5e5e5;
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
    overflow: hidden;
}

.stage-col {
    flex: 1;
    padding: 48px 32px;
    display: flex;
    flex-direction: column;
}

.stage-col:not(:last-child) {
    border-right: 1px solid #e5e5e5;
}

.stage-icon {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 24px;
}

.stage-icon img {
    height: 48px;
    width: auto;
    object-fit: contain;
    display: block;
}

.stage-col h3 {
    font-size: 24px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.stage-col>p {
    font-size: 15px;
    color: #6a6a6a;
    margin-bottom: 32px;
    line-height: 1.5;
}

.stage-divider {
    height: 1px;
    background: #e5e5e5;
    margin-bottom: 32px;
}

.stage-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
    flex: 1;
}

.stage-list-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.stage-check {
    width: 16px;
    height: 16px;
    background: #f97316;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    flex-shrink: 0;
    margin-top: 3px;
}

.stage-list-item span {
    font-size: 14px;
    color: #4a4a4a;
    line-height: 1.5;
}

.stage-footer {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: auto;
}

.stage-btn {
    background: #4d002e;
    color: var(--white);
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: background 0.2s;
    border: none;
    cursor: pointer;
}

.stage-btn:hover {
    background: #3a0022;
}

.stage-link {
    color: #1a1a1a;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
}

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

@media (max-width: 992px) {
    .stage-container {
        flex-direction: column;
    }

    .stage-col:not(:last-child) {
        border-right: none;
        border-bottom: 1px solid #e5e5e5;
    }
}

@media (max-width: 768px) {
    .stage-section {
        padding: 60px 0;
    }

    .stage-header h2 {
        font-size: 32px;
    }

    .stage-col {
        padding: 32px 24px;
    }
}

/* CTA Section */
.cta-section {
    background-color: #4d002e;
    padding: 120px 0;
    text-align: center;
    color: var(--white);
    margin-top: 60px;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-content h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.25;
    letter-spacing: -0.5px;
}

.cta-content p {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.btn-white {
    background-color: var(--white);
    color: #1a1a1a;
    font-size: 16px;
    font-weight: 700;
    font-family: var(--font-main);
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-white:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cta-section {
        padding: 80px 0;
    }

    .cta-content h2 {
        font-size: 36px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .cta-buttons button {
        width: 100%;
        max-width: 320px;
    }
}

/* Steps Section */
.steps-section {
    background-color: #022b1e;
    padding: 100px 0;
    color: var(--white);
}

.steps-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.steps-header h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.25;
}

.steps-header p {
    font-size: 16px;
    color: #a4cebb;
    line-height: 1.6;
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 16px;
    align-items: center;
}

.step-card {
    background-color: transparent;
    border: 1px solid #144e33;
    border-radius: 16px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    min-height: 440px;
    position: relative;
    box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.1);
}

.step-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 32px;
    line-height: 1.4;
}

/* Feature Grid */
.feature-checkboxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.f-check {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #144e33;
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 11px;
    color: #a4cebb;
    font-weight: 500;
}

.f-square {
    width: 14px;
    height: 14px;
    border: 1px solid #144e33;
    border-radius: 3px;
    flex-shrink: 0;
}

.f-more {
    font-size: 13px;
    color: #a4cebb;
    font-style: italic;
    margin-top: 16px;
}

/* Service Items */
.service-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.srv-active {
    border: 1px solid #f97316;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.15);
}

.srv-badge {
    background: #f97316;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    font-weight: 700;
    font-size: 11px;
}

.srv-name {
    flex: 1;
    padding: 0 12px;
    color: var(--white);
    font-size: 11px;
    font-weight: 600;
}

.srv-check {
    background: #f97316;
    width: 14px;
    height: 14px;
    border-radius: 3px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    margin-right: 12px;
}

.srv-inactive {
    border: 1px solid #144e33;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
}

.srv-inactive .srv-name {
    padding: 0;
    color: #a4cebb;
}

/* Step Arrow */
.step-arrow {
    display: flex;
    justify-content: center;
    align-items: center;
}

.arrow-circle {
    width: 36px;
    height: 36px;
    background: #f97316;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

/* Glowing Step 3 */
.step-card-glowing {
    overflow: hidden;
    position: relative;
    border: 1px solid #144e33;
}

.step-desc {
    font-size: 15px;
    color: #a4cebb;
    line-height: 1.6;
    margin-bottom: auto;
    position: relative;
    z-index: 2;
}

.btn-full {
    width: 100%;
    margin-top: 40px;
    position: relative;
    z-index: 2;
}

.glow-effect {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    background: rgba(190, 251, 73, 0.15);
    filter: blur(50px);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}

/* Steps Responsive */
@media (max-width: 1100px) {
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .step-arrow {
        transform: rotate(90deg);
        padding: 16px 0;
    }

    .step-card {
        min-height: auto;
    }
}

@media (max-width: 768px) {
    .steps-section {
        padding: 60px 0;
    }

    .steps-header h2 {
        font-size: 32px;
    }

    .feature-checkboxes {
        grid-template-columns: 1fr;
    }
}

/* Customers Section */
.customers-section {
    padding: 80px 0;
    background-color: transparent;
}

.customers-box {
    background-color: #4d002e;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    color: var(--white);
    padding: 0 20px 0 80px;
}

.customers-content {
    flex: 1;
    max-width: 500px;
    padding: 80px 0;
}

.customers-content h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.25;
    letter-spacing: -0.5px;
}

.customers-content p {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.customers-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    padding-top: 40px;
    padding-left: 20px;
}

.customers-image img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

@media (max-width: 992px) {
    .customers-box {
        flex-direction: column;
        padding: 60px 40px 0 40px;
        text-align: center;
    }

    .customers-content {
        padding: 0 0 60px 0;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .customers-image {
        justify-content: center;
        padding-top: 0;
        padding-left: 0;
    }
}

@media (max-width: 768px) {
    .customers-box {
        padding: 40px 24px 0 24px;
    }

    .customers-content {
        padding: 0 0 40px 0;
    }

    .customers-content h2 {
        font-size: 32px;
    }
}

/* Footer Section */
.site-footer {
    background-color: #1a1a1a;
    color: var(--white);
    padding: 80px 0 40px 0;
    font-family: var(--font-main);
}

.footer-top {
    display: grid;
    grid-template-columns: 3fr 8fr;
    gap: 60px;
}

/* Brand Column */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.footer-logo img {
    height: 48px;
    object-fit: contain;
}

.footer-buttons {
    display: flex;
    gap: 12px;
}

.btn-footer-white {
    background: var(--white);
    color: #1a1a1a;
    padding: 10px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.2s;
}

.btn-footer-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 10px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.2s;
}

.btn-footer-white:hover {
    background: #e0e0e0;
}

.btn-footer-outline:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
}

.icon-chat {
    width: 14px;
    height: 14px;
}

.footer-contact a,
.footer-contact p {
    font-size: 13px;
    color: #a0a0a0;
    text-decoration: none;
    margin: 0;
}

.footer-contact a:hover {
    color: var(--white);
}

.footer-apps {
    display: flex;
    gap: 12px;
}

.footer-apps img {
    height: 36px;
}

.footer-auth-social {
    display: flex;
    gap: 24px;
}

.auth-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-size: 13px;
    text-decoration: none;
}

.auth-link span {
    text-decoration: underline;
}

.auth-link img {
    width: 14px;
    height: 14px;
}

.footer-badges-left {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.footer-badges-left img {
    height: 32px;
}

/* Links Grid */
.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.footer-col h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 24px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-col ul li a {
    color: #a0a0a0;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: var(--white);
}

/* Reviews Row */
.footer-reviews {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    padding: 60px 0 40px 0;
}

.footer-reviews img {
    height: 24px;
}

/* Bottom Row */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-bottom-links a {
    color: #a0a0a0;
    font-size: 13px;
    text-decoration: none;
    transition: 0.2s;
}

.footer-bottom-links a:hover {
    color: var(--white);
}

.footer-copyright {
    color: #a0a0a0;
    font-size: 13px;
}

/* Responsive Footer */
@media (max-width: 992px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 40px;
    }

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

@media (max-width: 576px) {
    .footer-links-grid {
        grid-template-columns: 1fr;
    }

    .footer-reviews {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Job Assignee Avatar Image Override */
.job-assignees img,
.job-assignees.avatars img {
    height: 32px !important;
    width: auto !important;
    max-width: 100px !important;
    border-radius: 0 !important;
    border: none !important;
    margin: 0 !important;
    object-fit: contain;
}

@media (max-width: 992px) {
    .bento-layout {
        grid-template-columns: 1fr;
    }

    .bento-bottom {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .features-bento {
        padding: 0 16px;
    }

    .bento-card.job-list {
        padding: 24px 16px;
    }

    .job-header {
        grid-template-columns: 2fr 1.5fr 1fr;
        font-size: 12px;
        padding: 12px 10px;
    }

    .job-row {
        grid-template-columns: 2fr 1.5fr 1fr;
        font-size: 13px;
        padding: 12px 10px;
    }

    .job-header div:nth-child(2),
    .job-row .job-assignees {
        display: none !important;
    }

    .job-row .badge {
        padding: 6px 12px;
        font-size: 11px;
    }
}