/* ==========================================
   CWR Website Styles
   Clear Waste Route Marketing Website
   ========================================== */

/* ==========================================
   RESET & BASE STYLES
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* CWR Brand Colors — confirmed palette */
    --turquoise:       #1DB5C9;
    --mid-blue-1:      #1DB5C9;
    --mid-blue-2:      #0F6CCB;
    --dark-blue:       #0B2E59;
    --light-green:     #3CCB74;
    --mid-green:       #16A34A;
    --dark-green:      #15803D;

    /* Functional aliases (used throughout the site) */
    --primary-blue:    #0F6CCB;   /* Medium blue 2 */
    --primary-green:   #3CCB74;   /* Light green */
    --accent-blue:     #1DB5C9;   /* Turquoise */
    --accent-green:    #16A34A;   /* Medium green */
    --dark-navy:       #0B2E59;   /* Near-black for dark backgrounds */
    --light-blue:      #EFF6FF;
    
    /* Neutral Colors */
    --white: #FFFFFF;
    --off-white: #F5F7FA;
    --light-gray: #E5E7EB;
    --gray: #6B7280;
    --dark-gray: #1F2937;
    --black: #000000;
    
    /* Functional Colors */
    --success: #16A34A;
    --warning: #F59E0B;
    --danger: #DC2626;
    --info: #1DB5C9;
    
    /* Typography */
    --font-primary: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    --font-heading: "Inter", "Segoe UI", system-ui, sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.625rem;
    --radius-lg: 0.75rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.08), 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 10px 24px rgba(0, 0, 0, 0.10), 0 4px 8px rgba(0, 0, 0, 0.06);
}

body {
    font-family: var(--font-primary);
    color: var(--dark-gray);
    line-height: 1.6;
    background: var(--white);
    overflow-x: hidden;
}

/* Improve keyboard navigation visibility across all pages */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
.btn:focus-visible,
.nav-link:focus-visible {
    outline: 3px solid rgba(15, 108, 203, 0.45);
    outline-offset: 2px;
    border-radius: 6px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ==========================================
   NAVIGATION
   ========================================== */
.navbar {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0.2rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Hidden on desktop — the logo image already shows the full lockup */
.logo-brand-text {
    display: none;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    position: relative;
    z-index: 2;
    flex: 0 0 auto;
    min-width: 0;
}

.logo-img {
    height: 96px;
    width: auto;
    max-width: 320px;
    object-fit: contain;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark-navy);
    letter-spacing: -0.01em;
    white-space: nowrap;
    display: none;
}

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

.nav-link {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    font-size: 0.925rem;
    letter-spacing: 0.01em;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--primary-blue);
}

.social-links a[href="#"] {
    pointer-events: none;
    opacity: 0.45;
    cursor: default;
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    background: transparent;
    border: none;
    cursor: pointer;
    font: inherit;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.nav-dropdown-toggle i {
    font-size: 0.72rem;
    transition: transform 0.2s ease;
}

.nav-dropdown.open .nav-dropdown-toggle i {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 0;
    min-width: 540px;
    max-height: 520px;
    overflow-y: auto;
    padding: 1.25rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(15, 108, 203, 0.15);
    background: var(--white);
    box-shadow: 0 8px 24px rgba(0, 61, 130, 0.12), 0 2px 8px rgba(0, 61, 130, 0.08);
    backdrop-filter: blur(10px);
    display: none;
    z-index: 1100;
    animation: dropdownFadeIn 0.2s ease-out;
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hide the mobile-only close button on desktop */
.nav-close {
    display: none;
}

/* Dropdown opens on click only (see .nav-dropdown.open rule below) */

.nav-dropdown.open .nav-dropdown-menu {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.nav-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--dark-gray);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.75rem 0.9rem;
    border-radius: var(--radius-md);
    transition: all 0.25s ease;
    position: relative;
}

.nav-dropdown-menu a i {
    color: var(--primary-blue);
    font-size: 1.1rem;
    min-width: 1.4rem;
    text-align: center;
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.nav-dropdown-menu a:hover {
    background: linear-gradient(135deg, rgba(15, 108, 203, 0.08), rgba(60, 203, 116, 0.06));
    color: var(--primary-blue);
    transform: translateX(4px);
    box-shadow: 0 2px 8px rgba(15, 108, 203, 0.1);
}

.nav-dropdown-menu a:hover i {
    transform: scale(1.1);
}

/* Scrollbar styling for dropdown */
.nav-dropdown-menu::-webkit-scrollbar {
    width: 8px;
}

/* Dropdown section labels for categorization */
.dropdown-section-label {
    grid-column: 1 / -1;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary-blue);
    padding: 0.75rem 0.9rem 0.35rem;
    margin-top: 0.5rem;
    border-bottom: 2px solid rgba(15, 108, 203, 0.15);
    background: linear-gradient(135deg, rgba(15, 108, 203, 0.05), rgba(60, 203, 116, 0.03));
}

.dropdown-section-label:first-child {
    margin-top: 0;
}

.nav-dropdown-menu::-webkit-scrollbar-track {
    background: rgba(15, 108, 203, 0.05);
    border-radius: 4px;
}

.nav-dropdown-menu::-webkit-scrollbar-thumb {
    background: rgba(15, 108, 203, 0.2);
    border-radius: 4px;
    transition: background 0.2s;
}

.nav-dropdown-menu::-webkit-scrollbar-thumb:hover {
    background: rgba(15, 108, 203, 0.35);
}

/* First link in dropdown (overview link) */
.nav-dropdown-menu a:first-child {
    font-weight: 600;
    background: rgba(15, 108, 203, 0.05);
    border: 1px solid rgba(15, 108, 203, 0.15);
    margin-bottom: 0.5rem;
    grid-column: 1 / -1;
}

.nav-dropdown-menu a:first-child:hover {
    background: linear-gradient(135deg, rgba(15, 108, 203, 0.12), rgba(60, 203, 116, 0.08));
    border-color: rgba(15, 108, 203, 0.25);
}

.btn-login {
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    color: var(--white);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark-gray);
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero-section {
    background: linear-gradient(170deg, #0B2E59 0%, #0d3870 55%, #0B2E59 100%);
    color: var(--white);
    padding: var(--spacing-xl) 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    display: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: start;
    position: relative;
    z-index: 1;
}

/* Brand name kicker above hero h1 */
.hero-brand-kicker {
    display: flex;
    gap: 0.4em;
    font-size: 2.8rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    line-height: 1;
}
.hero-brand-word {
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
/* CLEAR = medium-dark blue (matches C in CWR logo) */
.hero-brand-clear {
    background-image: linear-gradient(135deg, #4d9fff, #2d80e8);
}
/* WASTE = lighter blue (matches W in CWR logo) */
.hero-brand-waste {
    background-image: linear-gradient(135deg, #1DB5C9, #29d9ee);
}
/* ROUTE = green (matches R in CWR logo) */
.hero-brand-route {
    background-image: linear-gradient(135deg, #3CCB74, #2aad5e);
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title .gradient-text {
    background: linear-gradient(135deg, #ffffff 0%, #d0eeff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
}

.btn {
    padding: 0.875rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: #0F6CCB;
    color: var(--white);
}

.btn-primary:hover {
    background: #0d5db0;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

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

/* Button Outline Variants */
.btn-outline-primary {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-outline-primary:hover {
    background: var(--primary-blue);
    color: var(--white);
}

.btn-outline-warning {
    background: transparent;
    color: var(--warning);
    border: 2px solid var(--warning);
}

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

.btn-outline-success {
    background: transparent;
    color: var(--success);
    border: 2px solid var(--success);
}

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

.btn-outline-danger {
    background: transparent;
    color: var(--danger);
    border: 2px solid var(--danger);
}

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

.btn-outline-info {
    background: transparent;
    color: var(--info);
    border: 2px solid var(--info);
}

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

/* Button Size Variants */
.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-large {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.hero-stats {
    display: flex;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    opacity: 0.9;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.hero-proof {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.5;
    margin-top: 0.25rem;
}

.hero-subtitle a {
    color: rgba(255,255,255,0.85);
    font-weight: 700;
    text-decoration: underline;
}

.hero-subtitle a:hover {
    color: var(--white);
}

.hero-checklist {
    list-style: none;
    margin-top: 0.85rem;
    display: grid;
    gap: 0.4rem;
}

.hero-checklist li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.95);
}

.hero-checklist i {
    color: var(--primary-green);
}

.hero-media {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

.hero-waste-panel {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.hero-waste-item {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.hero-waste-item:hover {
    background: rgba(29, 181, 201, 0.12);
    border-color: rgba(29, 181, 201, 0.3);
    transform: translateY(-2px);
}

.hero-waste-item small {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.85;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.hero-waste-item strong {
    display: block;
    font-size: 1.1rem;
    line-height: 1.4;
    font-weight: 700;
}

.dashboard-image {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    display: block;
    box-shadow: var(--shadow-lg);
}

.footer-logo .logo-img {
    height: 44px;
}

.dashboard-fallback {
    min-height: 260px;
    background: var(--light-blue);
    border-radius: var(--radius-lg);
    border: 1px dashed rgba(15, 108, 203, 0.35);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--spacing-md);
}

.dashboard-fallback i {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 0.65rem;
}

.dashboard-fallback p {
    color: var(--dark-gray);
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.dashboard-fallback small {
    color: var(--gray);
}

/* ==========================================
   IMAGE & VIDEO PLACEHOLDERS
   ========================================== */
.image-placeholder,
.video-placeholder,
.feature-image-placeholder,
.step-image-placeholder {
    background: rgba(255, 255, 255, 0.1);
    border: 2px dashed rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-lg);
    text-align: center;
    min-height: 300px;
    transition: all 0.3s;
}

.image-placeholder:hover,
.video-placeholder:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
}

.image-placeholder i,
.video-placeholder i {
    font-size: 4rem;
    margin-bottom: var(--spacing-sm);
    opacity: 0.6;
}

.image-placeholder p,
.video-placeholder p {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.image-placeholder small,
.video-placeholder small {
    opacity: 0.7;
    font-size: 0.875rem;
}

/* Feature & Step Placeholders (on white background) */
.feature-image-placeholder,
.step-image-placeholder {
    background: var(--off-white);
    border-color: var(--light-gray);
    min-height: 200px;
    margin-top: var(--spacing-sm);
}

.feature-image-placeholder i,
.step-image-placeholder i {
    color: var(--gray);
    font-size: 3rem;
}

.feature-image-placeholder small,
.step-image-placeholder small {
    color: var(--gray);
}

.video-placeholder-large {
    background: var(--light-gray);
    border: 3px dashed var(--gray);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-xl);
    min-height: 400px;
    margin-top: var(--spacing-md);
}

.video-placeholder-large i {
    font-size: 5rem;
    color: var(--primary-blue);
    margin-bottom: var(--spacing-sm);
}

.video-placeholder-large p {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.video-placeholder-large small {
    color: var(--gray);
}

/* ==========================================
   SECTION HEADERS
   ========================================== */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-gray);
    margin-bottom: var(--spacing-sm);
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* ==========================================
   FEATURES SECTION
   ========================================== */
.features-section {
    padding: var(--spacing-xl) 0;
    background: var(--off-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-md);
}

.feature-card {
    background: var(--white);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--light-gray);
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: #D1D5DB;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-blue);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-sm);
}

.feature-icon i {
    font-size: 1.75rem;
    color: var(--white);
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--dark-gray);
}

.feature-description {
    color: var(--gray);
    margin-bottom: var(--spacing-sm);
    line-height: 1.7;
}

/* ==========================================
   WHO WE SERVE SECTION
   ========================================== */
.who-section {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

.customers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-md);
}

.customer-card {
    background: var(--off-white);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary-blue);
    transition: all 0.3s;
}

.customer-card:hover {
    border-left-color: var(--accent-blue);
    box-shadow: var(--shadow-sm);
}

.customer-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-sm);
}

.customer-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.customer-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--dark-gray);
}

.customer-card > p {
    color: var(--gray);
    margin-bottom: var(--spacing-sm);
}

.benefits-list {
    list-style: none;
    margin-top: var(--spacing-sm);
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--dark-gray);
}

.benefits-list i {
    color: var(--primary-green);
    font-size: 0.875rem;
}

/* ==========================================
   HOW IT WORKS SECTION
   ========================================== */
.how-section {
    padding: var(--spacing-xl) 0;
    background: var(--off-white);
}

.process-timeline {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.process-step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: var(--spacing-md);
    position: relative;
}

.process-step::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 80px;
    bottom: -60px;
    width: 2px;
    background: linear-gradient(180deg, var(--primary-blue), var(--accent-blue));
}

.process-step:last-child::before {
    display: none;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 1;
}

.step-content {
    background: var(--white);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--dark-gray);
}

.step-content p {
    color: var(--gray);
    line-height: 1.7;
}

.video-section {
    margin-top: var(--spacing-xl);
    text-align: center;
}

.video-section h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--dark-gray);
}

/* ==========================================
   BENEFITS BAR
   ========================================== */
.benefits-section {
    background: var(--dark-navy);
    color: var(--white);
    padding: var(--spacing-lg) 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    text-align: center;
}

.benefit-item i {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
    opacity: 0.9;
}

.benefit-item h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.benefit-item p {
    opacity: 0.9;
}

/* ==========================================
   CONTACT SECTION
   ========================================== */
.contact-section {
    padding: var(--spacing-xl) 0;
    background: var(--off-white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: start;
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: var(--spacing-sm);
    color: var(--dark-gray);
}

.contact-info > p {
    font-size: 1.25rem;
    color: var(--gray);
    margin-bottom: var(--spacing-md);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.contact-item {
    display: flex;
    align-items: start;
    gap: var(--spacing-sm);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-top: 0.25rem;
}

.contact-item strong {
    display: block;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: var(--gray);
}

/* ==========================================
   CONTACT FORM
   ========================================== */
.contact-form {
    background: var(--white);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}
.contact-form {
    border: 1px solid var(--light-gray);
}

.contact-form h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--dark-gray);
}

.form-group {
    margin-bottom: var(--spacing-sm);
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-gray);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--light-gray);
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.form-group textarea {
    resize: vertical;
}

/* ==========================================
   UTILITY CLASSES
   ========================================== */
/* Text Color Utilities */
.text-primary {
    color: var(--primary-blue) !important;
}

.text-dark {
    color: var(--dark-gray) !important;
}

.text-muted {
    color: var(--gray) !important;
}

.text-white {
    color: var(--white) !important;
}

.text-success {
    color: var(--success) !important;
}

.text-warning {
    color: var(--warning) !important;
}

.text-danger {
    color: var(--danger) !important;
}

.text-info {
    color: var(--info) !important;
}

/* Text Decoration Utilities */
.text-decoration-none {
    text-decoration: none !important;
}

/* Margin/Padding Utilities */
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 0.25rem !important; }
.mb-2 { margin-bottom: 0.5rem !important; }
.mb-3 { margin-bottom: 1rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.mb-5 { margin-bottom: 3rem !important; }

.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 0.25rem !important; }
.mt-2 { margin-top: 0.5rem !important; }
.mt-3 { margin-top: 1rem !important; }
.mt-4 { margin-top: 1.5rem !important; }
.mt-5 { margin-top: 3rem !important; }

.ms-1 { margin-left: 0.25rem !important; }
.ms-2 { margin-left: 0.5rem !important; }
.ms-3 { margin-left: 1rem !important; }

.me-1 { margin-right: 0.25rem !important; }
.me-2 { margin-right: 0.5rem !important; }
.me-3 { margin-right: 1rem !important; }

/* Font Size Utilities */
.small {
    font-size: 0.875rem !important;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background: var(--dark-navy);
    color: var(--white);
    padding: var(--spacing-lg) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.footer-section h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.footer-section p {
    opacity: 0.8;
    margin-bottom: var(--spacing-sm);
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-section a:hover {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-sm);
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: all 0.3s;
}

.social-links a:hover {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-sm);
    margin-top: var(--spacing-md);
    text-align: center;
    opacity: 0.7;
}

.footer-bottom p {
    margin: 0.25rem 0;
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */
@media (max-width: 992px) {
    .hero-content,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .hero-image {
        order: 1;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .features-grid,
    .customers-grid {
        grid-template-columns: 1fr;
    }
    
    .process-step {
        grid-template-columns: 60px 1fr;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .process-step::before {
        left: 30px;
    }
}

@media (max-width: 768px) {
    /* Mobile nav drawer is defined in the consolidated block lower in this
       file (search: "Mobile Navigation"). Keep nav rules in one place. */

    .mobile-menu-toggle {
        display: block;
    }

    .logo {
        flex: 0 0 auto;
        min-width: 0;
    }

    .logo-img {
        height: 88px;
        transform: none;
    }

    .logo-name {
        display: block;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ==========================================
   UTILITY CLASSES
   ========================================== */
.text-center {
    text-align: center;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mt-1 { margin-top: var(--spacing-xs); }
.mt-2 { margin-top: var(--spacing-sm); }
.mt-3 { margin-top: var(--spacing-md); }
.mt-4 { margin-top: var(--spacing-lg); }

.mb-1 { margin-bottom: var(--spacing-xs); }
.mb-2 { margin-bottom: var(--spacing-sm); }
.mb-3 { margin-bottom: var(--spacing-md); }
.mb-4 { margin-bottom: var(--spacing-lg); }

.pt-1 { padding-top: var(--spacing-xs); }
.pt-2 { padding-top: var(--spacing-sm); }
.pt-3 { padding-top: var(--spacing-md); }
.pt-4 { padding-top: var(--spacing-lg); }

.pb-1 { padding-bottom: var(--spacing-xs); }
.pb-2 { padding-bottom: var(--spacing-sm); }
.pb-3 { padding-bottom: var(--spacing-md); }
.pb-4 { padding-bottom: var(--spacing-lg); }

/* ==========================================
   ADDITIONAL BUTTON STYLES
   ========================================== */
.btn-ghost {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

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

.btn-outline {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-outline:hover {
    background: var(--primary-blue);
    color: var(--white);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* ==========================================
   HERO BADGE
   ========================================== */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: var(--spacing-md);
    backdrop-filter: blur(10px);
}

.hero-badge i {
    color: #2ECC71;
}

/* ==========================================
   TEXT ACCENT
   ========================================== */
.text-accent {
    color: var(--primary-blue);
}

/* Gradient text fallback for .text-accent in gradient contexts */
.logo-text .text-accent {
    background: var(--success);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ==========================================
   NAV ACTIONS
   ========================================== */
.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.nav-actions .btn {
    padding: 0.5rem 1.25rem;
    font-size: 0.9rem;
}

.nav-actions .btn-outline {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.nav-actions .btn-outline:hover {
    background: var(--primary-blue);
    color: var(--white);
}

.nav-actions .btn-primary {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    color: var(--white);
}

.nav-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ==========================================
   DASHBOARD MOCKUP
   ========================================== */
.dashboard-mockup {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    width: 100%;
    max-width: 760px;
    margin-top: 0;
}

.mockup-header {
    background: linear-gradient(135deg, var(--dark-gray), #1a1a2e);
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.mockup-dots {
    display: flex;
    gap: 0.375rem;
}

.mockup-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.mockup-dots span:nth-child(1) { background: #FF5F56; }
.mockup-dots span:nth-child(2) { background: #FFBD2E; }
.mockup-dots span:nth-child(3) { background: #27C93F; }

.mockup-title {
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 500;
}

.mockup-content {
    padding: var(--spacing-lg);
    text-align: center;
    background: var(--light-blue);
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.mockup-content i {
    font-size: 4rem;
    color: var(--primary-blue);
    margin-bottom: var(--spacing-sm);
}

.mockup-content p {
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.mockup-content small {
    color: var(--gray);
}

/* ==========================================
   HERO BACKGROUND SHAPES
   ========================================== */
.hero-bg-shapes {
    display: none;
}

.shape {
    display: none;
}

/* ==========================================
   HERO TITLE
   ========================================== */
.hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

/* ==========================================
   LOGO PLACEHOLDER
   ========================================== */
.logo-placeholder {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
}

/* ==========================================
   STATS SECTION
   ========================================== */
.stats-section {
    background: var(--off-white);
    padding: var(--spacing-lg) 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
}

.stat-card {
    background: var(--white);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid var(--light-gray);
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: #D1D5DB;
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-blue);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-sm);
    color: var(--white);
    font-size: 1.25rem;
}

.stat-suffix {
    display: inline;
    font-size: 1.5rem;
    font-weight: 700;
    color: color: var(--primary-blue);
}

/* ==========================================
   TRUSTED SECTION
   ========================================== */
.trusted-section {
    padding: var(--spacing-lg) 0;
    text-align: center;
    border-bottom: 1px solid var(--light-gray);
}

.trusted-label {
    color: var(--gray);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--spacing-md);
}

.trusted-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

.logo-item {
    opacity: 0.6;
    transition: opacity 0.3s;
}

.logo-item:hover {
    opacity: 1;
}

.logo-placeholder-small {
    width: 120px;
    height: 50px;
    background: var(--light-gray);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: var(--gray);
}

/* ==========================================
   SECTION HEADER ELEMENTS
   ========================================== */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.section-tag {
    display: inline-block;
    background: rgba(15, 108, 203, 0.08);
    color: var(--primary-blue);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--spacing-sm);
}

.section-subtitle {
    color: var(--gray);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ==========================================
   ROLE CARDS
   ========================================== */
.role-cards {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}

.role-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.role-card.reverse {
    direction: rtl;
}

.role-card.reverse > * {
    direction: ltr;
}

.role-image {
    height: 100%;
    min-height: 350px;
}

.role-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 5rem;
    opacity: 0.9;
}

.role-content {
    padding: var(--spacing-lg);
}

.role-tag {
    display: inline-block;
    background: rgba(15, 108, 203, 0.1);
    color: var(--primary-blue);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: var(--spacing-sm);
}

.role-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--dark-gray);
}

.role-content p {
    color: var(--gray);
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
}

.role-features {
    list-style: none;
}

.role-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--dark-gray);
}

.role-features i {
    color: var(--primary-blue);
}

/* ==========================================
   HOW IT WORKS SECTION
   ========================================== */
.how-section {
    background: var(--off-white);
    padding: var(--spacing-xl) 0;
}

.steps-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 0;
    flex-wrap: wrap;
}

.step-card {
    background: var(--white);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    flex: 1;
    max-width: 250px;
    position: relative;
    display: flex;
    flex-direction: column;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
}

.step-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(15, 108, 203, 0.1), rgba(60, 203, 116, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: var(--spacing-md) auto var(--spacing-sm);
    font-size: 1.75rem;
    color: var(--primary-blue);
}

.step-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dark-gray);
}

.step-card p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.step-connector {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-blue));
    margin-top: 80px;
    align-self: center;
}

/* ==========================================
   TESTIMONIAL SECTION
   ========================================== */
.testimonial-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
}

.testimonial-card {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: var(--shadow-lg);
}

.quote-icon {
    font-size: 3rem;
    color: var(--primary-blue);
    opacity: 0.3;
    margin-bottom: var(--spacing-sm);
}

.testimonial-card blockquote {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--dark-gray);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

.author-info {
    text-align: left;
}

.author-info strong {
    display: block;
    color: var(--dark-gray);
    font-weight: 700;
}

.author-info span {
    color: var(--gray);
    font-size: 0.875rem;
}

/* ==========================================
   PRICING SECTION
   ========================================== */
.pricing-section {
    padding: var(--spacing-xl) 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    align-items: start;
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-md);
    border: 2px solid transparent;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.pricing-card.featured {
    border-color: var(--primary-blue);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.pricing-header {
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 0.25rem;
}

.pricing-header p {
    color: var(--gray);
    font-size: 0.9rem;
}

.pricing-price {
    text-align: center;
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid var(--light-gray);
}

.pricing-price .currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    vertical-align: top;
}

.pricing-price .amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark-gray);
}

.pricing-price .period {
    color: var(--gray);
    font-size: 1rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: var(--spacing-md);
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    color: var(--dark-gray);
}

.pricing-features i {
    color: var(--primary-blue);
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

/* ==========================================
   FAQ SECTION
   ========================================== */
.faq-section {
    padding: var(--spacing-xl) 0;
    background: var(--off-white);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-sm);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md);
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-gray);
    text-align: left;
    transition: background 0.3s;
}

.faq-question:hover {
    background: rgba(15, 108, 203, 0.05);
}

.faq-question i {
    transition: transform 0.3s;
    color: var(--primary-blue);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 var(--spacing-md) var(--spacing-md);
}

.faq-answer p {
    color: var(--gray);
    line-height: 1.7;
}

/* ==========================================
   BENEFITS SECTION
   ========================================== */
.benefits-section {
    background: var(--dark-navy);
    color: var(--white);
    padding: var(--spacing-lg) 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
    text-align: center;
}

.benefit-item i {
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
}

.benefit-item h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.benefit-item p {
    font-size: 0.875rem;
    opacity: 0.9;
}

/* ==========================================
   CONTACT SECTION
   ========================================== */
.contact-section {
    padding: var(--spacing-xl) 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: start;
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: var(--spacing-md);
    color: var(--dark-gray);
    line-height: 1.2;
}

.contact-info > p {
    color: var(--gray);
    margin-bottom: var(--spacing-lg);
    line-height: 1.7;
}

.contact-details {
    margin-bottom: var(--spacing-lg);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(15, 108, 203, 0.1), rgba(60, 203, 116, 0.1));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 1.25rem;
}

.contact-item strong {
    display: block;
    color: var(--dark-gray);
    font-weight: 600;
}

.contact-item p {
    color: var(--gray);
    margin: 0;
}

.trust-badges {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(15, 108, 203, 0.1);
    color: var(--primary-blue);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-sm);
}

.form-subtitle {
    color: var(--gray);
    margin-bottom: var(--spacing-md);
}

.form-note {
    text-align: center;
    color: var(--gray);
    font-size: 0.875rem;
    margin-top: var(--spacing-sm);
}

.form-note i {
    color: var(--primary-blue);
}

/* ==========================================
   FINAL CTA SECTION
   ========================================== */
.final-cta {
    background: linear-gradient(135deg, var(--dark-blue), var(--primary-blue));
    color: var(--white);
    padding: var(--spacing-xl) 0;
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: var(--spacing-sm);
}

.final-cta p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: var(--spacing-lg);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
}

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

.btn-white:hover {
    background: var(--off-white);
    transform: translateY(-2px);
}

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

.btn-outline-white:hover {
    background: var(--white);
    color: var(--primary-blue);
}

/* ==========================================
   SUB-HERO TRUST SECTION
   ========================================== */
.trust-strip {
    background: var(--off-white);
    padding: var(--spacing-xl) 0;
}

.trust-header {
    max-width: 860px;
    margin: 0 auto var(--spacing-lg);
    text-align: center;
}

.trust-header h2 {
    font-size: 2rem;
    color: var(--dark-gray);
    margin-bottom: var(--spacing-sm);
}

.trust-intro {
    color: var(--gray);
    line-height: 1.7;
}

.trust-logos-label {
    text-align: center;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: var(--spacing-sm);
}

.trust-logo-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
}

.trust-logo-item {
    text-decoration: none;
}

.trust-logo-placeholder {
    border: 1px dashed rgba(15, 108, 203, 0.25);
    border-radius: var(--radius-md);
    padding: 0.7rem 1.1rem;
    background: #fff;
}

.trust-logo-placeholder span {
    color: var(--gray);
    font-size: 0.82rem;
    font-weight: 600;
}

.trust-pillars {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.trust-pillar {
    background: #fff;
    border: 1px solid var(--light-gray);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
}

.trust-pillar-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(15, 108, 203, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-sm);
}

.trust-pillar-icon i {
    color: var(--primary-blue);
}

.trust-pillar h3 {
    font-size: 1rem;
    margin-bottom: 0.4rem;
    color: var(--dark-gray);
}

.trust-pillar p {
    color: var(--gray);
    font-size: 0.92rem;
    line-height: 1.6;
}

.trust-quote {
    max-width: 860px;
    margin: 0 auto var(--spacing-md);
    padding: 1rem 1.2rem;
    border-left: 4px solid var(--primary-blue);
    background: #fff;
    border-radius: var(--radius-md);
    color: var(--dark-gray);
    font-style: italic;
}

.trust-quote cite {
    display: block;
    margin-top: 0.5rem;
    color: var(--gray);
    font-style: normal;
    font-weight: 600;
}

.feature-link {
    display: inline-flex;
    align-items: center;
    margin-top: 0.3rem;
    color: var(--primary-blue);
    font-weight: 600;
    text-decoration: none;
}

.feature-link:hover {
    color: var(--dark-blue);
}

.features-cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-lg);
}

.role-actions {
    margin-top: 0.85rem;
}

.role-actions .btn {
    padding: 0.62rem 1rem;
}

.how-details-grid {
    margin-top: var(--spacing-lg);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--spacing-md);
}

.how-detail-card {
    background: #fff;
    border: 1px solid var(--light-gray);
    border-radius: var(--radius-lg);
    padding: 1rem 1.1rem;
}

.how-detail-card h3 {
    margin-bottom: 0.6rem;
    color: var(--dark-gray);
}

.how-detail-card ul {
    list-style: none;
    display: grid;
    gap: 0.45rem;
}

.how-detail-card li {
    position: relative;
    padding-left: 1rem;
    color: var(--dark-gray);
}

.how-detail-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 0.35rem;
    height: 0.35rem;
    border-radius: 50%;
    background: var(--primary-blue);
}

.how-pricing {
    margin-top: var(--spacing-lg);
    background: #fff;
    border: 1px solid var(--light-gray);
    border-radius: var(--radius-lg);
    padding: 1.1rem 1.2rem;
}

.how-pricing h3 {
    margin-bottom: 0.4rem;
}

.how-pricing-grid {
    margin-top: 0.9rem;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.75rem;
}

.how-price-card {
    border: 1px solid var(--light-gray);
    border-radius: var(--radius-md);
    padding: 1rem;
    background: var(--white);
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    cursor: pointer;
}

.how-price-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: #BFDBFE;
}

.how-price-card--featured {
    border: 2px solid var(--primary-blue);
    background: linear-gradient(160deg, #f0f7ff, #e6f0fb);
}

.how-price-card--featured:hover {
    box-shadow: 0 10px 30px rgba(15, 108, 203, 0.25);
}

.how-price-card h4 {
    color: var(--dark-blue);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.1rem;
    line-height: 1.3;
}

.price-tier-sub {
    font-weight: 500;
    color: var(--gray);
    font-size: 0.85em;
}

.price-line {
    margin-bottom: 0.1rem;
    line-height: 1;
}

.price-amount {
    color: var(--primary-blue);
    font-weight: 800;
    font-size: 1.6rem;
}

.price-mo {
    color: var(--gray);
    font-size: 0.85rem;
    font-weight: 500;
}

.price-meta {
    list-style: none;
    padding: 0;
    margin: 0.2rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.price-meta li {
    font-size: 0.82rem;
    color: var(--dark-blue);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.price-meta li i {
    color: var(--primary-blue);
    width: 14px;
    text-align: center;
    font-size: 0.78rem;
}

.price-desc {
    font-size: 0.82rem;
    color: var(--gray);
    margin-top: auto;
    padding-top: 0.3rem;
    border-top: 1px solid rgba(0,0,0,0.06);
}

.how-price-card small {
    color: var(--gray);
}

@media (max-width: 900px) {
    .how-pricing-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .how-pricing-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.how-pricing-cta {
    margin-top: 0.9rem;
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.how-video-wrap {
    margin-top: var(--spacing-lg);
    background: #fff;
    border: 1px solid var(--light-gray);
    border-radius: var(--radius-lg);
    padding: 1.1rem 1.2rem;
    text-align: center;
}

.how-video-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    margin-top: 0.8rem;
}

.trust-cta-row {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    flex-wrap: wrap;
}

/* ==========================================
   CONTENT PAGES (MODULES + SECTORS)
   ========================================== */
.content-page {
    background: var(--off-white);
}

.content-page .page-hero {
    padding: 4.5rem 0 3rem;
    background: var(--white);
    border-bottom: 1px solid rgba(15, 108, 203, 0.12);
}

.content-page .page-hero .section-title {
    font-size: clamp(2rem, 4.2vw, 3rem);
    line-height: 1.15;
    margin-top: 0.4rem;
    margin-bottom: 0.9rem;
    max-width: 940px;
}

.content-page .page-hero .section-subtitle {
    max-width: 860px;
}

.content-page .page-section {
    padding: var(--spacing-lg) 0;
}

.content-page .page-section-alt {
    padding: var(--spacing-lg) 0;
    background: var(--white);
    border-top: 1px solid var(--light-gray);
    border-bottom: 1px solid var(--light-gray);
}

.page-grid {
    display: grid;
    gap: var(--spacing-md);
}

.page-grid.two-col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.page-grid.three-col {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.content-card {
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: var(--radius-lg);
    padding: 1.35rem 1.2rem;
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.content-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: #BFDBFE;
}

.content-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    color: var(--dark-gray);
    line-height: 1.35;
}

.content-card h3 i {
    color: var(--primary-blue);
    margin-right: 0.75rem;
    font-size: 1.5rem;
    display: inline-block;
    vertical-align: -0.15em;
}

.content-card p {
    color: var(--gray);
    margin-bottom: 0.8rem;
}

.content-card ul {
    list-style: none;
    padding-left: 0;
    display: grid;
    gap: 0.55rem;
}

.content-card li {
    position: relative;
    padding-left: 1rem;
    color: var(--dark-gray);
}

.content-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.62rem;
    width: 0.35rem;
    height: 0.35rem;
    border-radius: 50%;
    background: var(--primary-blue);
}

.sector-card {
    display: flex;
    flex-direction: column;
}

.content-card-action {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: auto;
    font-weight: 600;
    text-decoration: none;
    color: var(--primary-blue);
}

.content-card-action:hover {
    color: var(--dark-blue);
}

.sector-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: var(--spacing-md);
    justify-content: center;
    width: 100%;
}

.sector-tab-button,
.sector-link-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 999px;
    padding: 1rem 1.75rem;
    border: 1px solid rgba(15, 108, 203, 0.2);
    color: var(--dark-blue);
    background: var(--white);
    transition: all 0.2s ease;
    text-align: center;
}

.sector-tab-button:hover,
.sector-link-chip:hover {
    color: var(--white);
    border-color: transparent;
    background: var(--primary-blue);
}

.sector-links-panel {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-bottom: var(--spacing-md);
}

.roles-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.7rem;
}

.role-pill {
    background: var(--white);
    border: 1px solid rgba(15, 108, 203, 0.18);
    border-radius: 999px;
    padding: 0.55rem 0.75rem;
    text-align: center;
    font-weight: 600;
    color: var(--dark-blue);
}

.content-page .final-cta {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.content-page .final-cta p {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================
   FOOTER UPDATES
   ========================================== */
.footer-main {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: var(--spacing-xl);
    padding-top: var(--spacing-lg);
    padding-bottom: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    max-width: 350px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.footer-logo i {
    font-size: 1.5rem;
}

.footer-brand > p {
    opacity: 0.8;
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

.footer-column h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

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

.footer-column li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-column a:hover {
    opacity: 1;
}

/* ==========================================
   RESPONSIVE UPDATES
   ========================================== */
@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .role-card {
        grid-template-columns: 1fr;
    }
    
    .role-card.reverse {
        direction: ltr;
    }
    
    .role-image {
        min-height: 160px;
    }
    
    .steps-container {
        flex-direction: column;
        align-items: center;
    }
    
    .step-connector {
        width: 2px;
        height: 40px;
        margin: 0;
    }
    
    .step-card {
        max-width: 100%;
        width: 100%;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }

    .page-grid.three-col {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .roles-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .how-details-grid,
    .how-pricing-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .trusted-logos {
        flex-direction: column;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .nav-actions {
        display: none;
    }

    .content-page .page-hero {
        padding: 3.6rem 0 2.2rem;
    }

    .content-page .page-section,
    .content-page .page-section-alt {
        padding: var(--spacing-md) 0;
    }

    .page-grid.two-col,
    .page-grid.three-col {
        grid-template-columns: 1fr;
    }

    .roles-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .features-cta,
    .how-pricing-cta,
    .how-video-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .features-cta .btn,
    .how-pricing-cta .btn,
    .how-video-actions .btn {
        width: 100%;
        text-align: center;
    }

    .sector-tabs,
    .sector-links-panel {
        gap: 0.45rem;
    }

    .sector-tab-button,
    .sector-link-chip {
        font-size: 0.82rem;
        padding: 0.5rem 0.78rem;
    }
}

    /* ============================================================
       Feature Card Preview Images (Item 18)
       ============================================================ */
    .feature-preview {
        width: 100%;
        height: 130px;
        background: linear-gradient(135deg, #f0f4ff 0%, #e8eeff 100%);
        border-radius: 8px;
        margin-bottom: 1rem;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(99,102,241,0.12);
    }

    .feature-preview img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .feature-preview-placeholder {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.35rem;
        color: var(--text-secondary);
        opacity: 0.5;
        font-size: 0.75rem;
    }

    .feature-preview-placeholder i {
        font-size: 1.6rem;
        color: var(--primary);
    }

    /* ============================================================
       Module Preview Section (Item 18)
       ============================================================ */
    .module-preview-section {
        padding: 3rem 0;
        background: var(--white);
        text-align: center;
    }

    .module-preview-wrap {
        display: flex;
        justify-content: center;
    }

    .module-preview-frame {
        display: inline-block;
        border: 1px solid var(--border-color);
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 24px rgba(0,0,0,0.10);
        max-width: 900px;
        width: 100%;
    }

    .module-preview-img {
        width: 100%;
        display: block;
    }

    .module-preview-placeholder {
        background: linear-gradient(135deg, #f0f4ff 0%, #e8eeff 100%);
        padding: 3.5rem 2rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        color: var(--text-secondary);
    }

    .module-preview-placeholder i {
        font-size: 2.5rem;
        color: var(--primary);
        opacity: 0.45;
    }

    .module-preview-placeholder span {
        font-weight: 600;
        font-size: 1rem;
    }

    .module-preview-placeholder small {
        font-size: 0.8rem;
        opacity: 0.65;
    }

    /* ============================================================
       Related Modules Strip (Item 2)
       ============================================================ */
    .related-modules-section {
        padding: 2.5rem 0;
        background: var(--light-bg);
        border-top: 1px solid var(--border-color);
        border-bottom: 1px solid var(--border-color);
        text-align: center;
    }

    .related-modules-title {
        font-size: 0.85rem;
        font-weight: 600;
        color: var(--text-secondary);
        text-transform: uppercase;
        letter-spacing: 0.06em;
        margin-bottom: 1.25rem;
    }

    .related-modules-grid {
        display: flex;
        gap: 0.75rem;
        justify-content: center;
        flex-wrap: wrap;
        margin-bottom: 0.5rem;
    }

    .related-module-link {
        display: inline-flex;
        align-items: center;
        gap: 0.45rem;
        padding: 0.55rem 1.1rem;
        background: var(--white);
        border: 1px solid var(--border-color);
        border-radius: 6px;
        color: var(--text-primary);
        text-decoration: none;
        font-size: 0.875rem;
        font-weight: 500;
        transition: all 0.2s;
    }

    .related-module-link:hover {
        border-color: var(--primary);
        color: var(--primary);
        text-decoration: none;
        transform: translateY(-1px);
        box-shadow: 0 2px 8px rgba(99,102,241,0.12);
    }

    .related-module-link i {
        color: var(--primary);
        font-size: 0.8rem;
        opacity: 0.7;
    }

    @media (max-width: 768px) {
        .related-modules-grid {
            flex-direction: column;
            align-items: center;
        }
        .module-preview-frame {
            border-radius: 8px;
        }
    }

/* Footer Social Links */
.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(43, 163, 216, 0.1);
    border-radius: 50%;
    color: #2BA3D8;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social a:hover {
    background: #2BA3D8;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(43, 163, 216, 0.3);
}

/* ==========================================
   MOBILE RESPONSIVE STYLES
   ========================================== */

@media (max-width: 768px) {
    /* ----- Mobile Navigation (single source of truth) ----- */
    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        font-size: 1.4rem;
        color: var(--primary-blue);
        cursor: pointer;
        z-index: 1201;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: min(82vw, 320px);
        height: 100vh;
        height: 100dvh;
        background: var(--white);
        box-shadow: -2px 0 24px rgba(0, 0, 0, 0.18);
        display: flex;
        flex-direction: column;
        align-items: stretch;
        padding: 4.5rem 1.5rem 2rem;
        gap: 0.35rem;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        z-index: 1200;
        pointer-events: none; /* prevent blocking page clicks when closed */
    }

    .nav-menu.active {
        transform: translateX(0);
        pointer-events: auto;
    }

    /* Full-screen dimming backdrop */
    .nav-backdrop {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
        z-index: 999;
    }

    .nav-menu.active ~ .nav-backdrop,
    .nav-backdrop:not([hidden]) {
        opacity: 1;
        pointer-events: auto;
    }

    /* Lock background scroll when the menu is open */
    body.nav-open {
        overflow: hidden;
    }

    /* In-drawer close button */
    .nav-close {
        position: absolute;
        top: 0.85rem;
        right: 0.85rem;
        width: 44px;
        height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: transparent;
        border: none;
        border-radius: var(--radius-md);
        color: var(--dark-gray);
        font-size: 1.35rem;
        cursor: pointer;
    }

    .nav-close:hover {
        background: var(--off-white);
        color: var(--primary-blue);
    }

    .nav-dropdown {
        width: 100%;
    }

    .nav-dropdown-menu {
        position: static;
        width: 100%;
        min-width: 0;
        max-height: none;
        box-shadow: none;
        border: none;
        background: var(--off-white);
        padding: 0.5rem;
        margin-top: 0.35rem;
        border-radius: var(--radius-md);
        display: none;
        grid-template-columns: 1fr;
        animation: none;
    }

    .nav-dropdown.open .nav-dropdown-menu {
        display: grid;
        grid-template-columns: 1fr;
    }

    .nav-menu > li {
        width: 100%;
    }

    .nav-link {
        display: flex;
        align-items: center;
        width: 100%;
        min-height: 44px;
        padding: 0.6rem 0.25rem;
        border-bottom: 1px solid var(--light-gray);
    }

    .nav-dropdown-toggle {
        width: 100%;
        justify-content: space-between;
    }

    .nav-dropdown-menu a {
        min-height: 44px;
    }

    .btn-login {
        width: 100%;
        text-align: center;
        padding: 0.75rem 1.5rem;
    }

    /* Mobile Hero */
    .hero-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .hero-text {
        order: 0;
    }

    .hero-section {
        padding: var(--spacing-lg) 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero-image {
        order: 1;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-stats {
        flex-direction: column;
        gap: var(--spacing-md);
    }

    .hero-waste-panel {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    /* Hide the dashboard image panel on mobile - text hero is sufficient above fold */
    .hero-image {
        display: none;
    }

    /* Scale down the brand kicker on mobile */
    .hero-brand-kicker {
        font-size: 1.8rem;
        letter-spacing: 0.08em;
    }

    .hero-title {
        font-size: 1.75rem !important;
    }

    /* Prevent horizontal overflow on mobile */
    html, body {
        overflow-x: hidden;
        max-width: 100%;
    }

    /* Mobile Container */
    .container {
        padding: 0 var(--spacing-sm);
    }

    /* Mobile Features Grid */
    .features-grid,
    .modules-grid {
        grid-template-columns: 1fr;
    }

    /* Mobile CTA Section */
    .cta-section .btn {
        width: 100%;
        text-align: center;
    }
}

/* ==========================================
   SKIP TO CONTENT LINK (accessibility)
   ========================================== */
.skip-link {
    position: absolute;
    top: -100px;
    left: 1rem;
    z-index: 2000;
    padding: 0.7rem 1.1rem;
    background: var(--primary-blue);
    color: var(--white);
    border-radius: var(--radius-md);
    font-weight: 600;
    text-decoration: none;
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 1rem;
    outline: 3px solid rgba(255, 255, 255, 0.7);
    outline-offset: 2px;
}

/* ==========================================
   FOOTER TRUST SIGNALS (Task 7)
   ========================================== */
.footer-dev-note {
    font-size: 0.85rem;
    opacity: 0.7;
    margin-top: 0.75rem;
    line-height: 1.5;
}

.footer-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem 1.75rem;
    justify-content: center;
    padding: 1.5rem 0;
    margin-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    opacity: 0.9;
}

.footer-trust-item i {
    color: var(--primary-green);
}

/* ==========================================
   AVAILABILITY BADGE (module pages)
   ========================================== */
.badge-available {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.9rem;
    margin-top: 0.85rem;
    background: rgba(60, 203, 116, 0.12);
    color: #1e8a4f;
    border: 1px solid rgba(60, 203, 116, 0.35);
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1.3;
}

.module-tagline {
    font-size: 1rem;
    color: var(--gray);
    margin-top: 0.5rem;
    font-weight: 500;
}

/* ==========================================
   QUESTIONNAIRE CTA SECTION
   ========================================== */
.questionnaire-section {
    padding: var(--spacing-xl) 0;
    background: var(--off-white);
}

.questionnaire-card {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    background: var(--white);
    padding: 2.75rem 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--light-gray);
    box-shadow: var(--shadow-md);
}

.questionnaire-card h2 {
    color: var(--dark-blue);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.questionnaire-card p {
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.75rem;
}

.questionnaire-card .btn {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    color: var(--white);
    border: none;
}

.questionnaire-card .btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ==========================================
   MOBILE HEADER BRANDING (Task 3)
   The logo image is a full lockup that already includes the
   "CLEAR WASTE ROUTE" wordmark, so keep it legible on mobile
   rather than duplicating the brand name with extra text.
   ========================================== */
@media (max-width: 768px) {
    .logo {
        flex: 0 0 auto;
        min-width: 0;
        gap: 0.5rem;
    }

    .logo-img {
        height: 64px;
    }

    .logo-name {
        display: block;
    }

    /* Brand name hidden on mobile � shown in hero instead */
    .logo-brand-text {
        display: none;
    }

    .questionnaire-card {
        padding: 2rem 1.25rem;
    }

    .questionnaire-card h2 {
        font-size: 1.6rem;
    }
}

/* Honour reduced-motion for the new menu transitions */
@media (prefers-reduced-motion: reduce) {
    .nav-menu,
    .nav-backdrop,
    .skip-link {
        transition: none !important;
    }
}


/* -- Pricing section -------------------------------------------------- */

.pricing-main-section {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

/* -- Pillar cards -- */
.pricing-pillars {
    display: flex;
    align-items: stretch;
    gap: 1rem;
    margin: 2rem 0 0;
    flex-wrap: wrap;
}

.pillar-card {
    flex: 1;
    min-width: 200px;
    background: var(--white);
    border: 1.5px solid var(--light-gray);
    border-radius: var(--radius-lg);
    padding: 1.5rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    box-shadow: var(--shadow-sm);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.pillar-card:hover {
    border-color: rgba(15, 108, 203, 0.3);
    box-shadow: var(--shadow-md);
}

.pillar-card-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, rgba(15,108,203,0.12), rgba(29,181,201,0.08));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.pillar-card i {
    color: var(--primary-blue);
    font-size: 1.25rem;
}

.pillar-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark-navy);
    line-height: 1.3;
}

.pillar-desc {
    font-size: 0.82rem;
    color: var(--gray);
    line-height: 1.55;
}

.pillar-plus {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 1rem;
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--gray);
    opacity: 0.5;
    align-self: center;
}

/* -- Builder container -- */
.pkg-builder {
    background: var(--off-white);
    border: 1.5px solid var(--light-gray);
    border-radius: var(--radius-lg);
    padding: 2rem 2.25rem;
    margin-top: 2rem;
}

.pkg-builder-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--light-gray);
}

.pkg-builder-header h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 0.4rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.pkg-builder-header h4 i {
    color: var(--primary-blue);
    font-size: 1.1rem;
}

.pkg-builder-header p {
    font-size: 0.9rem;
    color: var(--gray);
    margin: 0;
    line-height: 1.6;
}

/* -- Steps -- */
.pkg-step {
    background: var(--white);
    border: 1.5px solid var(--light-gray);
    border-radius: var(--radius-lg);
    padding: 1.5rem 1.75rem;
    margin-bottom: 1.25rem;
    box-shadow: var(--shadow-sm);
}

.pkg-step:last-of-type {
    margin-bottom: 0;
}

.pkg-step-label {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pkg-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.85rem;
    height: 1.85rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    color: var(--white);
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: 700;
    flex-shrink: 0;
}

/* -- Turnover select -- */
.pkg-select {
    width: 100%;
    max-width: 420px;
    padding: 0.85rem 1.1rem;
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    font-family: var(--font-primary);
    font-weight: 500;
    background: var(--white);
    color: var(--dark-navy);
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: border-color 0.2s;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.pkg-select:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(15,108,203,0.12);
}

.pkg-base-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 420px;
    margin-top: 1rem;
    padding: 0.85rem 1.1rem;
    background: linear-gradient(135deg, #EFF6FF, #F0FEFF);
    border: 1.5px solid #BFDBFE;
    border-radius: var(--radius-md);
    font-size: 0.925rem;
}

.pkg-base-line span:first-child {
    color: var(--dark-navy);
    font-weight: 600;
}

.pkg-base-line span:last-child {
    color: var(--primary-blue);
    font-weight: 800;
    font-size: 1.1rem;
}

/* -- Function toggle buttons -- */
.pkg-fn-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.pkg-fn-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.7rem 1.35rem;
    border: 2px solid var(--light-gray);
    border-radius: 50px;
    background: var(--white);
    color: var(--dark-gray);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.18s ease;
    font-family: var(--font-primary);
    box-shadow: var(--shadow-sm);
    line-height: 1;
}

.pkg-fn-btn:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
    background: #f0f7ff;
    box-shadow: var(--shadow-md);
}

.pkg-fn-btn--active {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    border-color: transparent;
    color: var(--white);
    box-shadow: 0 4px 12px rgba(15,108,203,0.3);
}

.pkg-fn-btn--active:hover {
    background: linear-gradient(135deg, #0d5db0, var(--primary-blue));
    color: var(--white);
}

.pkg-fn-btn i {
    font-size: 0.85rem;
    opacity: 0.85;
}

/* -- Usage grid -- */
.pkg-usage-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.pkg-usage-row {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 0.5rem 0.9rem;
    padding: 0.85rem 1.1rem;
    background: var(--off-white);
    border: 1.5px solid var(--light-gray);
    border-radius: var(--radius-md);
    transition: border-color 0.15s;
}

.pkg-usage-row:focus-within {
    border-color: var(--primary-blue);
    background: #f8fbff;
}

.pkg-usage-row label {
    font-size: 0.875rem;
    color: var(--dark-navy);
    font-weight: 600;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    cursor: default;
}

.pkg-usage-rate {
    font-size: 0.775rem;
    color: var(--gray);
    font-weight: 400;
}

.pkg-num {
    width: 68px;
    padding: 0.5rem 0.6rem;
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    text-align: center;
    font-family: var(--font-primary);
    color: var(--dark-navy);
    font-weight: 700;
    background: var(--white);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.pkg-num:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(15,108,203,0.12);
}

.pkg-usage-subtotal {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-blue);
    min-width: 46px;
    text-align: right;
}

/* -- Add-ons -- */
.pkg-addon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 0.65rem;
}

.pkg-addon-item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.8rem 1rem;
    background: var(--off-white);
    border: 1.5px solid var(--light-gray);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    color: var(--dark-navy);
    cursor: pointer;
    font-weight: 500;
    transition: all 0.15s ease;
    user-select: none;
}

.pkg-addon-item:hover {
    border-color: var(--primary-blue);
    background: #f8fbff;
}

.pkg-addon-item:has(input:checked) {
    border-color: var(--primary-blue);
    background: linear-gradient(135deg, #EFF6FF, #f0feff);
}

.pkg-addon-item input[type="checkbox"] {
    width: 1.1rem;
    height: 1.1rem;
    accent-color: var(--primary-blue);
    flex-shrink: 0;
    cursor: pointer;
}

.pkg-addon-from {
    margin-left: auto;
    font-size: 0.775rem;
    color: var(--gray);
    white-space: nowrap;
    font-weight: 400;
}

/* -- Empty state -- */
.pkg-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 2.5rem 2rem;
    color: var(--gray);
    font-size: 0.9rem;
    background: var(--white);
    border: 2px dashed var(--light-gray);
    border-radius: var(--radius-lg);
    margin-top: 1rem;
    text-align: center;
}

.pkg-empty-state i {
    font-size: 2rem;
    color: var(--light-gray);
}

/* -- Total card -- */
.pkg-total-card {
    margin-top: 1.5rem;
    background: linear-gradient(135deg, var(--dark-navy) 0%, #0d2248 100%);
    border-radius: var(--radius-lg);
    padding: 2rem 2.25rem;
    color: var(--white);
    box-shadow: 0 8px 32px rgba(11,46,89,0.35);
}

.pkg-bd-rows {
    margin-bottom: 0.75rem;
}

.pkg-bd-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    padding: 0.4rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    color: rgba(255,255,255,0.6);
}

.pkg-bd-row span:last-child {
    font-weight: 600;
    color: rgba(255,255,255,0.9);
}

.pkg-bd-divider {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.3);
    padding: 0.85rem 0 0.25rem;
    font-weight: 600;
}

.pkg-total-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255,255,255,0.15);
}

.pkg-total-row span:first-child {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    font-weight: 500;
    padding-bottom: 0.35rem;
}

.pkg-total-monthly {
    font-size: 3rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: -0.03em;
    line-height: 1;
}

.pkg-total-row--annual {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.85rem;
    padding-top: 0.85rem;
    border-top: 1px dashed rgba(255,255,255,0.12);
    font-size: 0.925rem;
}

.pkg-total-row--annual span:first-child {
    color: rgba(255,255,255,0.6);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.pkg-total-row--annual span:last-child {
    font-weight: 800;
    color: #86EFAC;
    font-size: 1.1rem;
}

.pkg-disclaimer {
    margin-top: 1.25rem;
    font-size: 0.775rem;
    color: rgba(255,255,255,0.35);
    line-height: 1.65;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 1rem;
}

/* -- Responsive -- */
@media (max-width: 860px) {
    .pkg-usage-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
    .pillar-plus { display: none; }
    .pillar-card { min-width: calc(50% - 0.5rem); }
    .pkg-builder { padding: 1.5rem 1.25rem; }
    .pkg-total-card { padding: 1.5rem 1.25rem; }
    .pkg-total-monthly { font-size: 2.25rem; }
    .pkg-step { padding: 1.25rem 1.25rem; }
}

/* -- End pricing section ----------------------------------------------- */

/* ===========================
   FAQ Section (Homepage)
   =========================== */
.faq-section {
    padding: var(--spacing-xl) 0;
    background: var(--off-white);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.faq-item-inline {
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
}

.faq-item-inline h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-navy);
    margin-bottom: 0.75rem;
}

.faq-item-inline p {
    font-size: 0.925rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

.faq-item-inline p a {
    color: var(--primary-blue);
    font-weight: 500;
    text-decoration: none;
}

.faq-item-inline p a:hover {
    text-decoration: underline;
}

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

/* Module detail pages: overview card spans full width, modules list below it */
.module-detail-grid {
    grid-template-columns: 1fr;
}

/* Nested sub-lists within content-card (e.g. module feature breakdowns) */
.content-card li > ul {
    margin-top: 0.4rem;
    padding-left: 1rem;
    gap: 0.3rem;
}
.content-card li > ul > li::before {
    background: #94a3b8;
    width: 0.25rem;
    height: 0.25rem;
}

/* Next module navigation button in page hero */
.btn-next-module {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 1.25rem;
    padding: 0.4rem 1rem;
    border: 1px solid rgba(15, 108, 203, 0.3);
    border-radius: 2rem;
    color: var(--primary-blue);
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}
.btn-next-module:hover {
    background: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
}
.btn-next-module i {
    font-size: 0.75rem;
}