/* MILL360 ERP - Premium Design System */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Outfit:wght@400;500;600;700;800&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

:root {
    --bg-dark-green: #1b331f;
    --bg-dark-green-deep: #132416;
    --bg-sage: #738059;
    --bg-sage-dark: #616e47;
    --bg-light: #f5f4ed;
    --bg-white: #ffffff;
    --accent-yellow: #eedb6d;
    --accent-yellow-hover: #e3cf58;
    --text-dark: #19241a;
    --text-muted: #5e6b5f;
    --text-light: #f8f7f2;
    --text-yellow: #eedb6d;
    --font-heading: 'Outfit', 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-pill: 50px;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow-soft: 0 10px 30px rgba(0,0,0,0.06);
    --shadow-hover: 0 20px 40px rgba(0,0,0,0.12);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Layout Utilities */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 115px 0;
}

/* Badges & Pills */
.pill-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.pill-badge.yellow {
    background-color: var(--accent-yellow);
    color: var(--text-dark);
}

.pill-badge.outline-white {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(4px);
}

.pill-badge.dark-muted {
    background-color: rgba(25, 36, 26, 0.08);
    color: var(--text-muted);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 26px;
    border-radius: var(--radius-pill);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-yellow {
    background-color: var(--accent-yellow);
    color: var(--text-dark);
}

.btn-yellow:hover {
    background-color: var(--accent-yellow-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(238, 219, 109, 0.3);
}

.btn-dark {
    background-color: var(--bg-dark-green);
    color: #ffffff;
}

.btn-dark:hover {
    background-color: var(--bg-dark-green-deep);
    transform: translateY(-2px);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.25);
}

/* Floating Navbar Design */
.navbar-wrapper {
    position: fixed;
    top: 24px;
    left: 0;
    width: 100%;
    z-index: 1000;
    pointer-events: none;
}

.navbar-wrapper .container {
    pointer-events: auto;
}

.floating-navbar {
    background: #ffffff;
    border-radius: var(--radius-pill);
    padding: 10px 14px 10px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.brand-logo-icon {
    width: 32px;
    height: 32px;
    background: var(--bg-dark-green);
    color: var(--accent-yellow);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.brand-text {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

.brand-text .highlight {
    color: var(--bg-dark-green);
}

.nav-divider {
    width: 1px;
    height: 28px;
    background-color: rgba(0, 0, 0, 0.12);
    margin: 0 16px 0 12px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 26px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li a {
    font-size: 14px;
    font-weight: 600;
    color: #2b332c;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.2s ease;
}

.nav-menu li a:hover {
    color: var(--bg-dark-green);
}

.nav-menu .caret {
    font-size: 9px;
    opacity: 0.6;
    transition: transform 0.2s ease;
}

.nav-menu li:hover .caret {
    transform: translateY(2px);
    opacity: 1;
    color: var(--bg-dark-green);
}

.has-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: -16px;
    background: #ffffff;
    border-radius: var(--radius-md);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border: 1px solid rgba(0,0,0,0.06);
    padding: 12px 8px;
    list-style: none;
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
    z-index: 1100;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(6px);
}

.dropdown-menu li {
    margin: 0;
    padding: 0;
}

.dropdown-menu li a {
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background 0.2s ease;
}

.dropdown-menu li a i {
    color: var(--bg-dark-green);
    font-size: 14px;
}

.dropdown-menu li a:hover {
    background-color: var(--bg-light);
    color: var(--bg-dark-green);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-search-btn {
    background: none;
    border: none;
    color: #2b332c;
    font-size: 16px;
    cursor: pointer;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
}

.nav-search-btn:hover {
    color: var(--bg-dark-green);
}

.btn-yellow-pill {
    background-color: var(--accent-yellow);
    color: var(--text-dark);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 13px;
    padding: 10px 24px;
    border-radius: var(--radius-pill);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(238, 219, 109, 0.35);
}

.btn-yellow-pill:hover {
    background-color: var(--accent-yellow-hover);
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(238, 219, 109, 0.5);
}

.search-trigger {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 16px;
    cursor: pointer;
    opacity: 0.8;
}

.search-trigger:hover {
    opacity: 1;
    color: var(--accent-yellow);
}

/* Hero Section */
/* Hero Section */
.hero-section {
    position: relative;
    background-color: var(--bg-dark-green);
    min-height: 94vh;
    padding-top: 130px;
    padding-bottom: 50px;
    color: #ffffff;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 65%;
    height: 100%;
    background-size: cover;
    background-position: center right;
    mask-image: linear-gradient(to left, rgba(0,0,0,1) 40%, rgba(0,0,0,0) 100%);
    -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,1) 40%, rgba(0,0,0,0) 100%);
    opacity: 0.85;
    z-index: 1;
}

.hero-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 72vh;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-top-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    margin-bottom: 30px;
}

.hero-left-title-box {
    text-align: left;
    max-width: 540px;
}

.hero-main-title {
    font-size: 84px;
    font-weight: 800;
    line-height: 0.95;
    color: #eedb6d;
    letter-spacing: -0.04em;
    text-align: left;
    margin-top: 10px;
}

.hero-stat-box {
    text-align: right;
}

.hero-stat-box .stat-number {
    font-size: 76px;
    font-weight: 800;
    color: #ffffff;
    line-height: 0.9;
    letter-spacing: -0.03em;
}

.hero-stat-box .stat-number .sub-k {
    font-size: 42px;
    font-weight: 700;
    vertical-align: top;
}

.hero-stat-box .stat-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.35;
    margin-top: 6px;
}

.hero-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
}

.hero-left-bottom {
    max-width: 480px;
    text-align: left;
}

.hero-desc-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 24px;
    text-align: left;
}

.hero-glass-row {
    display: flex;
    gap: 16px;
    align-items: center;
}

.glass-pill-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 12px 18px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
}

.glass-pill-card .pill-icon {
    font-size: 20px;
    color: var(--accent-yellow);
}

.glass-pill-card .pill-text {
    display: flex;
    flex-direction: column;
    font-size: 12px;
    color: #ffffff;
    text-align: left;
}

.glass-pill-card .pill-text strong {
    font-weight: 700;
    font-size: 13px;
    color: #ffffff;
}

.glass-pill-card .pill-text span {
    color: rgba(255, 255, 255, 0.7);
}

.hero-right-bottom {
    text-align: right;
}

.hero-big-display-title {
    font-size: 96px;
    font-weight: 800;
    line-height: 0.92;
    color: #ffffff;
    letter-spacing: -0.04em;
    text-align: right;
}

.glass-card .info .title {
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
}

.glass-card .info .sub {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
}

/* Pain Points Solved Section */
.pain-points-section {
    background-color: var(--bg-white);
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.pain-points-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 50px auto;
}

.pain-points-header h2 {
    font-size: 40px;
    color: var(--text-dark);
    margin-top: 14px;
    margin-bottom: 10px;
}

.pain-points-header p {
    font-size: 15px;
    color: var(--text-muted);
}

.pain-points-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pain-card {
    background-color: var(--bg-light);
    border-radius: var(--radius-md);
    padding: 36px 30px;
    position: relative;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
}

.pain-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(27, 51, 31, 0.15);
}

.pain-card-badge {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
}

.pain-card-badge.red {
    background-color: rgba(217, 83, 79, 0.12);
    color: #d9534f;
}

.pain-card-badge.gold {
    background-color: rgba(238, 219, 109, 0.25);
    color: #a88d18;
}

.pain-card-badge.blue {
    background-color: rgba(43, 114, 186, 0.12);
    color: #2b72ba;
}

.pain-card h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.35;
}

.pain-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 24px;
}

.pain-card-footer {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 700;
    color: var(--bg-dark-green);
    border-top: 1px solid rgba(0,0,0,0.06);
    padding-top: 16px;
}

.pain-card-footer .text-green {
    color: var(--bg-dark-green);
}

/* Key Modules Tabs Section */
.key-modules-tabs-section {
    background-color: var(--bg-light);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    position: relative;
    padding: 80px 0;
}

.key-modules-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 40px auto;
}

.key-modules-header h2 {
    font-size: 40px;
    margin-top: 14px;
    margin-bottom: 10px;
}

.key-modules-header p {
    font-size: 15px;
    color: var(--text-muted);
}

.module-tabs-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.module-tab-btn {
    padding: 14px 24px;
    border-radius: var(--radius-pill);
    background-color: var(--bg-white);
    border: 1px solid rgba(0,0,0,0.08);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    box-shadow: 0 2px 6px rgba(0,0,0,0.03);
}

.module-tab-btn i {
    color: var(--text-muted);
}

.module-tab-btn:hover {
    border-color: var(--bg-dark-green);
    color: var(--bg-dark-green);
}

.module-tab-btn.active {
    background-color: var(--bg-dark-green);
    color: #ffffff;
    border-color: var(--bg-dark-green);
    box-shadow: 0 8px 20px rgba(27, 51, 31, 0.25);
}

.module-tab-btn.active i {
    color: var(--accent-yellow);
}

.module-tab-panel {
    display: none;
}

.module-tab-panel.active {
    display: block;
    animation: fadeIn 0.4s ease-in-out;
}

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

.module-panel-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    background-color: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-soft);
}

.module-panel-image {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 420px;
}

.module-panel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.panel-image-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(19, 36, 22, 0.85);
    backdrop-filter: blur(10px);
    color: #ffffff;
    padding: 10px 18px;
    border-radius: var(--radius-pill);
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255,255,255,0.2);
}

.panel-image-badge i {
    color: var(--accent-yellow);
}

.module-panel-content h3 {
    font-size: 32px;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.panel-desc {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 24px;
}

.panel-features-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 28px;
}

.panel-feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.panel-feature-item .feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(238, 219, 109, 0.3);
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

.panel-feature-item strong {
    display: block;
    font-size: 15px;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.panel-feature-item p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.4;
    margin: 0;
}

/* ROI Calculator Section */
.roi-calculator-section {
    background-color: var(--bg-dark-green);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.roi-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.roi-headline {
    font-size: 46px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    margin-top: 10px;
    margin-bottom: 18px;
    letter-spacing: -0.03em;
}

.roi-body {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 28px;
}

.roi-highlights-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.roi-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

.roi-item i {
    color: var(--accent-yellow);
    font-size: 18px;
}

.roi-calc-card {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.calc-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.calc-card-header h3 {
    font-size: 20px;
    color: #ffffff;
}

.calc-group {
    margin-bottom: 20px;
}

.calc-label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 8px;
}

.calc-val-badge {
    background: var(--accent-yellow);
    color: var(--text-dark);
    font-weight: 700;
    padding: 3px 12px;
    border-radius: var(--radius-pill);
    font-size: 12px;
}

.calc-range-slider {
    width: 100%;
    height: 6px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.2);
    outline: none;
    accent-color: var(--accent-yellow);
    cursor: pointer;
}

.calc-result-box {
    background: rgba(19, 36, 22, 0.9);
    border: 1px solid rgba(238, 219, 109, 0.3);
    border-radius: var(--radius-md);
    padding: 24px;
    text-align: center;
    margin-top: 24px;
}

.result-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 6px;
}

.result-amount {
    font-size: 42px;
    font-weight: 800;
    color: var(--accent-yellow);
    line-height: 1;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
}

.result-sub-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 12px;
    font-size: 12px;
}

.result-sub-grid .sub-label {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2px;
}

.result-sub-grid strong {
    font-size: 14px;
    color: #ffffff;
}

/* Testimonials & Case Studies Section */
.testimonials-section {
    background-color: var(--bg-light);
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.testimonials-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 50px auto;
}

.testimonials-header h2 {
    font-size: 40px;
    color: var(--text-dark);
    margin-top: 14px;
    margin-bottom: 10px;
}

.testimonials-header p {
    font-size: 15px;
    color: var(--text-muted);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.testimonial-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 32px 28px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.rating-stars {
    color: #f5a623;
    font-size: 14px;
    margin-bottom: 16px;
}

.testimonial-quote {
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.65;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-metric-pills {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.metric-pill {
    background-color: rgba(27, 51, 31, 0.08);
    color: var(--bg-dark-green);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: var(--radius-pill);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    border-top: 1px solid rgba(0,0,0,0.06);
    padding-top: 18px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--bg-dark-green);
    color: var(--accent-yellow);
    font-weight: 800;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
}

.author-title {
    font-size: 12px;
    color: var(--text-muted);
}

.testimonial-stats-bar {
    background-color: var(--bg-dark-green);
    color: #ffffff;
    border-radius: var(--radius-lg);
    padding: 30px 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.t-stat .t-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--accent-yellow);
    line-height: 1.1;
}

.t-stat .t-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 4px;
}

/* Lead Capture & Free Trial Section */
.lead-capture-section {
    background-color: var(--bg-dark-green);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.lead-capture-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.lead-headline {
    font-size: 44px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    margin-top: 10px;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
}

.lead-subheadline {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 30px;
}

.lead-trust-bullets {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 36px;
}

.bullet-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.bullet-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(238, 219, 109, 0.2);
    color: var(--accent-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.bullet-item strong {
    font-size: 15px;
    color: #ffffff;
    display: block;
    margin-bottom: 2px;
}

.bullet-item p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
    margin: 0;
}

.lead-contact-strip {
    display: flex;
    gap: 30px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 4px;
}

.contact-value {
    font-size: 18px;
    font-weight: 800;
    color: #ffffff;
}

.lead-form-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    color: var(--text-dark);
}

.form-card-header h3 {
    font-size: 22px;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.form-card-header p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* About / Solutions Section */
.about-section {
    background-color: var(--bg-white);
}

.about-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 30px;
}

.about-header .title-group {
    max-width: 580px;
}

.about-header h2 {
    font-size: 42px;
    margin-top: 14px;
    color: var(--text-dark);
}

.about-banner {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 380px;
    margin-bottom: 40px;
    box-shadow: var(--shadow-soft);
}

.about-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-desc-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 50px;
}

/* Marquee / Ticker */
.ticker-wrapper {
    background-color: var(--bg-light);
    padding: 16px 0;
    border-top: 1px solid rgba(0,0,0,0.06);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    overflow: hidden;
}

.ticker-track {
    display: flex;
    align-items: center;
    gap: 16px;
    white-space: nowrap;
    animation: marquee 25s linear infinite;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.ticker-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-white);
    padding: 10px 22px;
    border-radius: var(--radius-pill);
    font-size: 13px;
    font-weight: 700;
    color: var(--text-dark);
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.ticker-pill .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--accent-yellow);
}

/* Offerings Section */
.offerings-section {
    background-color: var(--bg-sage);
    color: #ffffff;
}

.offerings-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.offerings-header h2 {
    font-size: 40px;
    color: #ffffff;
    margin-top: 12px;
}

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

.offering-card {
    position: relative;
    height: 420px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.offering-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.offering-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: transform 0.5s ease;
}

.offering-card:hover img {
    transform: scale(1.08);
}

.offering-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(19, 36, 22, 0.95) 0%, rgba(19, 36, 22, 0.3) 60%, rgba(0,0,0,0) 100%);
    z-index: 2;
}

.offering-card-content {
    position: relative;
    z-index: 3;
    color: #ffffff;
}

.offering-card-content h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #ffffff;
}

.offering-card-content p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 16px;
    line-height: 1.4;
}

.offering-card-action {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--accent-yellow);
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    border: none;
    cursor: pointer;
}

/* Feature Split Section */
.feature-split-section {
    background-color: var(--bg-white);
}

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

.feature-image-col {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 480px;
}

.feature-image-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-content-col h2 {
    font-size: 44px;
    margin-bottom: 30px;
}

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

.accordion-item {
    border-bottom: 1px solid rgba(0,0,0,0.08);
    padding-bottom: 16px;
}

.accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    cursor: pointer;
    padding: 12px 0;
}

.accordion-header i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.accordion-body {
    font-size: 14px;
    color: var(--text-muted);
    padding-top: 8px;
    line-height: 1.6;
}

/* Partner Grid Section */
.services-section {
    background-color: var(--bg-light);
}

.services-header {
    max-width: 600px;
    margin-bottom: 50px;
}

.services-header h2 {
    font-size: 40px;
    margin-top: 12px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 32px 28px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.service-card .icon-badge {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--accent-yellow);
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Highlights Grid */
.highlights-section {
    background-color: var(--bg-sage);
    color: #ffffff;
}

.highlights-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px auto;
}

.highlights-header h2 {
    font-size: 48px;
    color: #ffffff;
    margin-top: 10px;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.highlight-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 340px;
    box-shadow: var(--shadow-soft);
}

.highlight-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.highlight-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(19, 36, 22, 0.9) 0%, rgba(0,0,0,0) 60%);
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.highlight-card-overlay h3 {
    font-size: 20px;
    color: #ffffff;
    margin-top: 8px;
}

/* News Section */
.news-section {
    background-color: var(--bg-white);
}

.news-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.news-header h2 {
    font-size: 40px;
    margin-top: 12px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.news-card {
    background-color: var(--bg-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-soft);
}

.news-card-image {
    height: 200px;
    overflow: hidden;
}

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

.news-card:hover .news-card-image img {
    transform: scale(1.06);
}

.news-card-body {
    padding: 24px;
}

.news-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 16px;
}

.news-card-body h3 {
    font-size: 18px;
    margin-top: 10px;
    line-height: 1.3;
}

/* Footer */
.footer {
    position: relative;
    background-color: var(--bg-dark-green-deep);
    color: #ffffff;
    padding-top: 80px;
    padding-bottom: 40px;
    overflow: hidden;
}

.footer-watermark {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-heading);
    font-size: 160px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.03);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin: 16px 0 24px 0;
    max-width: 320px;
}

.footer-col h4 {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--accent-yellow);
}

.subscribe-form {
    display: flex;
    gap: 8px;
    margin-top: 14px;
}

.subscribe-form input {
    flex: 1;
    padding: 12px 16px;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-size: 14px;
    outline: none;
}

.subscribe-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    position: relative;
    z-index: 2;
}

/* Modal styling */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 20, 12, 0.85);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-box {
    background: var(--bg-white);
    width: 100%;
    max-width: 580px;
    border-radius: var(--radius-lg);
    padding: 40px;
    position: relative;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: 0 25px 50px rgba(0,0,0,0.25);
}

.modal-overlay.active .modal-box {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0,0,0,0.05);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--text-dark);
}

.modal-close:hover {
    background: rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-dark);
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(0,0,0,0.15);
    font-family: var(--font-body);
    font-size: 14px;
    outline: none;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--bg-dark-green);
    box-shadow: 0 0 0 3px rgba(27, 51, 31, 0.1);
}

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

/* Toast alert */
.toast-success {
    background: var(--bg-dark-green);
    color: #ffffff;
    padding: 16px 24px;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
}

.toast-success i {
    color: var(--accent-yellow);
    font-size: 20px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .offerings-grid, .highlights-grid, .news-grid, .services-grid, .pain-points-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-main-title {
        font-size: 58px;
    }
    .hero-big-display-title {
        font-size: 64px;
    }
    .feature-split-grid {
        grid-template-columns: 1fr;
    }
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 992px) {
    .nav-menu, .nav-divider {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-top-row, .hero-bottom-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }
    .hero-stat-box, .hero-right-bottom {
        text-align: left;
    }
    .hero-main-title {
        font-size: 44px;
    }
    .hero-big-display-title {
        font-size: 48px;
        text-align: left;
    }
    .hero-glass-row {
        flex-direction: column;
        align-items: flex-start;
    }
    .offerings-grid, .highlights-grid, .news-grid, .services-grid, .pain-points-grid, .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .testimonial-stats-bar {
        grid-template-columns: repeat(2, 1fr);
        padding: 24px;
        gap: 24px;
    }
    .module-panel-grid, .roi-grid, .lead-capture-grid {
        grid-template-columns: 1fr;
        padding: 24px;
    }
    .about-desc-row {
        grid-template-columns: 1fr;
    }
    .footer-top {
        grid-template-columns: 1fr;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Sticky Action Bar (Call Now & WhatsApp) */
.sticky-action-bar {
    position: fixed;
    bottom: 26px;
    right: 26px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
}

.sticky-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    border-radius: 50px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(8px);
    line-height: 1;
}

.sticky-btn-call {
    background: linear-gradient(135deg, #1B331F 0%, #27AE60 100%);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
}

.sticky-btn-call:hover {
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 12px 30px rgba(39, 174, 96, 0.45);
    color: #ffffff;
}

.sticky-btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.sticky-btn-whatsapp:hover {
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
    color: #ffffff;
}

.sticky-btn .btn-icon {
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sticky-btn-whatsapp .btn-icon {
    font-size: 19px;
}

@media (max-width: 576px) {
    .sticky-action-bar {
        bottom: 16px;
        right: 16px;
        left: 16px;
        flex-direction: row;
        justify-content: space-between;
        gap: 10px;
    }
    .sticky-btn {
        flex: 1;
        justify-content: center;
        padding: 12px 14px;
        font-size: 13px;
        border-radius: 30px;
    }
}

/* Global Mobile Overflow Fix */
html, body {
    overflow-x: hidden;
    width: 100%;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--bg-dark-green);
    font-size: 22px;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.mobile-menu-toggle:hover {
    background-color: rgba(27, 51, 31, 0.08);
}

/* Mobile Navigation Drawer Overlay */
.mobile-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-drawer-box {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    max-width: 85%;
    height: 100%;
    background-color: var(--bg-white);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    z-index: 10001;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-drawer-overlay.active .mobile-drawer-box {
    transform: translateX(-320px);
}

.mobile-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    background-color: var(--bg-light);
}

.mobile-drawer-close {
    background: rgba(0, 0, 0, 0.05);
    border: none;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition);
}

.mobile-drawer-close:hover {
    background-color: var(--accent-yellow);
    color: var(--bg-dark-green);
}

.mobile-drawer-body {
    padding: 24px;
    overflow-y: auto;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-nav-list a, .mobile-submenu-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
    border-radius: var(--radius-sm);
    background: transparent;
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    transition: var(--transition);
}

.mobile-nav-list a:hover, .mobile-submenu-toggle:hover {
    background-color: var(--bg-light);
    color: var(--bg-dark-green);
}

.mobile-nav-list i {
    width: 24px;
    color: var(--bg-dark-green);
}

.mobile-submenu {
    list-style: none;
    padding-left: 20px;
    display: none;
    flex-direction: column;
    gap: 6px;
    margin-top: 4px;
}

.mobile-has-submenu.open .mobile-submenu {
    display: flex;
}

.mobile-has-submenu.open .mobile-caret {
    transform: rotate(180deg);
}

.mobile-submenu a {
    font-size: 14px;
    font-weight: 500;
    padding: 10px 14px;
}

.mobile-drawer-cta {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

/* Fluid Typography & Hero Responsiveness */
.hero-main-title {
    font-size: clamp(32px, 5vw, 60px) !important;
    line-height: 1.1 !important;
}

@media (max-width: 992px) {
    .mobile-menu-toggle {
        display: block;
    }
    .desktop-only-btn {
        display: none;
    }
    .floating-navbar {
        padding: 10px 18px;
    }
    .hero-section {
        min-height: auto !important;
        padding-top: 130px !important;
        padding-bottom: 50px !important;
    }
}

@media (max-width: 768px) {
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }
    .hero-container {
        gap: 24px;
    }
    .modal-box {
        max-width: 92% !important;
        max-height: 90vh;
        overflow-y: auto;
        padding: 24px 18px !important;
    }
}

@media (max-width: 480px) {
    .brand-text {
        font-size: 18px;
    }
    .hero-main-title {
        font-size: 30px !important;
    }
    .pill-badge {
        font-size: 11px;
        padding: 5px 12px;
    }
    .btn {
        padding: 12px 18px;
        font-size: 13px;
    }
}
