        /* ========================================
           WIL COLOR PALETTE - Professional Blue/Orange
           ======================================== */
        :root {
            --wil-navy: #1a365d;
            --wil-blue: #2c5282;
            --wil-sky: #4299e1;
            --wil-orange: #dd6b20;
            --wil-amber: #ed8936;
            --wil-gold: #d69e2e;
            --wil-cream: #fffaf0;
            --wil-sand: #faf5eb;
            --wil-text: #2d3748;
            --wil-text-light: #718096;
            --wil-gradient-blue: linear-gradient(135deg, #1a365d 0%, #2c5282 50%, #4299e1 100%);
            --wil-gradient-warm: linear-gradient(135deg, #dd6b20 0%, #ed8936 50%, #d69e2e 100%);
            --font-heading: 'Outfit', sans-serif;
            --font-body: 'Inter', sans-serif;
        }

        /* ========================================
           HERO SECTION - Professional & Dynamic
           ======================================== */
        .wil-hero {
            position: relative;
            min-height: 600px;
            display: flex;
            align-items: center;
            padding: 140px 60px 100px;
            overflow: hidden;
            background: linear-gradient(135deg, #1a365d 0%, #2c5282 40%, #2d6a7a 70%, #4299e1 100%);
        }
        .wil-hero::before {
            content: '';
            position: absolute;
            top: -30%;
            right: -15%;
            width: 900px;
            height: 900px;
            background: radial-gradient(circle, rgba(237, 137, 54, 0.2) 0%, transparent 60%);
            pointer-events: none;
            animation: wilPulse 8s ease-in-out infinite;
        }
        .wil-hero::after {
            content: '';
            position: absolute;
            bottom: -20%;
            left: -10%;
            width: 700px;
            height: 700px;
            background: radial-gradient(circle, rgba(66, 153, 225, 0.15) 0%, transparent 60%);
            pointer-events: none;
        }
        @keyframes wilPulse {
            0%, 100% { transform: scale(1); opacity: 0.2; }
            50% { transform: scale(1.1); opacity: 0.3; }
        }
        .wil-hero-grid {
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
            background-size: 80px 80px;
            pointer-events: none;
        }
        /* Floating gear/work icons */
        .wil-hero-decor {
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            pointer-events: none;
            overflow: hidden;
        }
        .wil-gear {
            position: absolute;
            border: 3px solid rgba(237, 137, 54, 0.3);
            border-radius: 50%;
            animation: gearRotate 20s linear infinite;
        }
        .wil-gear-1 {
            width: 150px;
            height: 150px;
            top: 15%;
            right: 20%;
        }
        .wil-gear-2 {
            width: 100px;
            height: 100px;
            top: 50%;
            right: 10%;
            animation-direction: reverse;
            border-color: rgba(66, 153, 225, 0.3);
        }
        .wil-gear-3 {
            width: 80px;
            height: 80px;
            top: 70%;
            right: 30%;
            border-color: rgba(214, 158, 46, 0.3);
        }
        @keyframes gearRotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        .wil-hero-container {
            position: relative;
            z-index: 10;
            max-width: 1400px;
            margin: 0 auto;
            width: 100%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }
        .wil-hero-content { color: #fff; }
        .wil-hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: rgba(237, 137, 54, 0.15);
            border: 1px solid rgba(237, 137, 54, 0.3);
            padding: 10px 20px;
            border-radius: 30px;
            margin-bottom: 28px;
        }
        .wil-hero-badge svg {
            width: 20px;
            height: 20px;
            stroke: var(--wil-amber);
        }
        .wil-hero-badge span {
            font-family: var(--font-body);
            font-size: 0.85rem;
            font-weight: 600;
            color: rgba(255,255,255,0.9);
            text-transform: uppercase;
            letter-spacing: 1.5px;
        }
        .wil-hero-title {
            font-family: var(--font-heading);
            font-size: 3.2rem;
            font-weight: 700;
            color: #fff;
            line-height: 1.15;
            margin: 0 0 24px;
        }
        .wil-hero-title .accent {
            background: linear-gradient(135deg, var(--wil-orange), var(--wil-amber));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .wil-hero-subtitle {
            font-family: var(--font-body);
            font-size: 1.15rem;
            color: rgba(255,255,255,0.8);
            line-height: 1.8;
            margin: 0 0 32px;
            max-width: 520px;
        }
        .wil-hero-highlights {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 36px;
        }
        .wil-hero-highlight {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.15);
            padding: 10px 18px;
            border-radius: 25px;
            font-size: 0.9rem;
            color: rgba(255,255,255,0.9);
            transition: all 0.3s ease;
        }
        .wil-hero-highlight:hover {
            background: rgba(237, 137, 54, 0.2);
            border-color: rgba(237, 137, 54, 0.4);
            transform: translateY(-2px);
        }
        .wil-hero-highlight svg {
            width: 16px;
            height: 16px;
            stroke: var(--wil-amber);
        }
        .wil-hero-ctas {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }
        .wil-btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 32px;
            background: var(--wil-gradient-warm);
            color: #fff;
            font-family: var(--font-body);
            font-size: 1rem;
            font-weight: 600;
            text-decoration: none;
            border-radius: 50px;
            transition: all 0.3s ease;
            box-shadow: 0 8px 30px rgba(221, 107, 32, 0.35);
        }
        .wil-btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 40px rgba(221, 107, 32, 0.45);
            color: #fff;
        }
        .wil-btn-primary svg { width: 18px; height: 18px; }
        .wil-btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 32px;
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255,255,255,0.25);
            color: #fff;
            font-family: var(--font-body);
            font-size: 1rem;
            font-weight: 600;
            text-decoration: none;
            border-radius: 50px;
            transition: all 0.3s ease;
        }
        .wil-btn-secondary:hover {
            background: rgba(255,255,255,0.2);
            border-color: rgba(255,255,255,0.4);
            transform: translateY(-3px);
            color: #fff;
        }
        .wil-btn-secondary svg { width: 18px; height: 18px; }
        /* Hero Visual - Stats Cards */
        .wil-hero-visual {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .wil-stats-visual {
            position: relative;
            width: 100%;
            max-width: 420px;
        }
        .wil-stat-card {
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(15px);
            border: 1px solid rgba(255,255,255,0.15);
            border-radius: 16px;
            padding: 20px 24px;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 16px;
            transition: all 0.3s ease;
        }
        .wil-stat-card:hover {
            background: rgba(255,255,255,0.15);
            transform: translateX(-5px);
        }
        .wil-stat-icon {
            width: 50px;
            height: 50px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .wil-stat-icon.orange { background: rgba(237, 137, 54, 0.3); }
        .wil-stat-icon.blue { background: rgba(66, 153, 225, 0.3); }
        .wil-stat-icon.gold { background: rgba(214, 158, 46, 0.3); }
        .wil-stat-icon.teal { background: rgba(56, 178, 172, 0.3); }
        .wil-stat-icon svg {
            width: 24px;
            height: 24px;
            stroke: #fff;
        }
        .wil-stat-text h4 {
            font-family: var(--font-heading);
            font-size: 1.1rem;
            font-weight: 600;
            color: #fff;
            margin: 0 0 4px;
        }
        .wil-stat-text p {
            font-size: 0.85rem;
            color: rgba(255,255,255,0.7);
            margin: 0;
        }
        .wil-hero-floating-stat {
            position: absolute;
            bottom: -20px;
            right: -20px;
            background: var(--wil-gradient-warm);
            border-radius: 16px;
            padding: 20px 28px;
            text-align: center;
            box-shadow: 0 15px 40px rgba(221, 107, 32, 0.4);
        }
        .wil-hero-floating-stat h4 {
            font-family: var(--font-heading);
            font-size: 2rem;
            font-weight: 700;
            color: #fff;
            margin: 0;
            line-height: 1;
        }
        .wil-hero-floating-stat p {
            font-size: 0.8rem;
            color: rgba(255,255,255,0.9);
            margin: 6px 0 0;
        }
        @media (max-width: 1024px) {
            .wil-hero-container { grid-template-columns: 1fr; gap: 50px; }
            .wil-hero-visual { display: none; }
            .wil-hero-decor { width: 100%; opacity: 0.5; }
        }
        @media (max-width: 768px) {
            .wil-hero { padding: 120px 30px 80px; min-height: auto; }
            .wil-hero-title { font-size: 2.2rem; }
            .wil-hero-ctas { flex-direction: column; }
            .wil-btn-primary, .wil-btn-secondary { width: 100%; justify-content: center; }
        }

        /* ========================================
           WHAT IS WIL SECTION
           ======================================== */
        .wil-what-section {
            padding: 100px 40px;
            background: var(--wil-cream);
        }
        .wil-what-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        .wil-what-content h2 {
            font-family: var(--font-heading);
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--wil-navy);
            margin-bottom: 20px;
            line-height: 1.2;
        }
        .wil-what-content h2 span {
            color: var(--wil-orange);
        }
        .wil-what-intro {
            font-size: 1.05rem;
            color: var(--wil-text);
            line-height: 1.8;
            margin-bottom: 30px;
        }
        /* Sleek Accordion */
        .wil-what-accordion {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .wil-what-acc-item {
            background: #fff;
            border-radius: 12px;
            border: 1px solid rgba(0,0,0,0.06);
            overflow: hidden;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        .wil-what-acc-item.active {
            border-color: var(--wil-blue);
            box-shadow: 0 4px 20px rgba(44, 82, 130, 0.1);
        }
        .wil-what-acc-header {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 16px 20px;
        }
        .wil-what-acc-icon {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .wil-what-acc-icon.orange { background: rgba(237, 137, 54, 0.15); }
        .wil-what-acc-icon.orange svg { stroke: var(--wil-orange); }
        .wil-what-acc-icon.blue { background: rgba(66, 153, 225, 0.15); }
        .wil-what-acc-icon.blue svg { stroke: var(--wil-sky); }
        .wil-what-acc-icon.gold { background: rgba(214, 158, 46, 0.15); }
        .wil-what-acc-icon.gold svg { stroke: var(--wil-gold); }
        .wil-what-acc-icon.teal { background: rgba(56, 178, 172, 0.15); }
        .wil-what-acc-icon.teal svg { stroke: #38b2ac; }
        .wil-what-acc-icon svg {
            width: 20px;
            height: 20px;
        }
        .wil-what-acc-title-group { flex: 1; }
        .wil-what-acc-title {
            font-family: var(--font-heading);
            font-size: 1rem;
            font-weight: 600;
            color: var(--wil-navy);
            margin: 0;
        }
        .wil-what-acc-toggle {
            width: 28px;
            height: 28px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: rgba(0,0,0,0.04);
            transition: all 0.3s ease;
        }
        .wil-what-acc-toggle svg {
            width: 16px;
            height: 16px;
            stroke: var(--wil-text-light);
            transition: transform 0.3s ease;
        }
        .wil-what-acc-item.active .wil-what-acc-toggle {
            background: var(--wil-blue);
        }
        .wil-what-acc-item.active .wil-what-acc-toggle svg {
            stroke: #fff;
            transform: rotate(180deg);
        }
        .wil-what-acc-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }
        .wil-what-acc-item.active .wil-what-acc-content {
            max-height: 200px;
        }
        .wil-what-acc-body {
            padding: 0 20px 16px 74px;
            font-size: 0.9rem;
            color: #666;
            line-height: 1.7;
        }
        .wil-what-image {
            position: relative;
        }
        .wil-what-image img {
            width: 100%;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
        }
        .wil-what-stat {
            position: absolute;
            bottom: -20px;
            left: -20px;
            background: var(--wil-gradient-warm);
            border-radius: 16px;
            padding: 20px 28px;
            text-align: center;
            box-shadow: 0 15px 40px rgba(221, 107, 32, 0.3);
        }
        .wil-what-stat h4 {
            font-family: var(--font-heading);
            font-size: 2rem;
            font-weight: 700;
            color: #fff;
            margin: 0;
            line-height: 1;
        }
        .wil-what-stat p {
            font-size: 0.8rem;
            color: rgba(255,255,255,0.9);
            margin: 6px 0 0;
        }
        @media (max-width: 900px) {
            .wil-what-container { grid-template-columns: 1fr; }
            .wil-what-image { order: -1; }
            .wil-what-content h2 { font-size: 2rem; }
        }

        /* ========================================
           WIL TYPES SECTION
           ======================================== */
        .wil-types-section {
            padding: 100px 40px;
            background: #fff;
        }
        .wil-types-container {
            max-width: 1300px;
            margin: 0 auto;
        }
        .wil-types-header {
            text-align: center;
            margin-bottom: 60px;
        }
        .wil-types-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 18px;
            background: rgba(44, 82, 130, 0.1);
            border: 1px solid rgba(44, 82, 130, 0.2);
            border-radius: 30px;
            margin-bottom: 16px;
        }
        .wil-types-badge svg {
            width: 16px;
            height: 16px;
            stroke: var(--wil-blue);
        }
        .wil-types-badge span {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--wil-blue);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .wil-types-header h2 {
            font-family: var(--font-heading);
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--wil-navy);
            margin-bottom: 16px;
        }
        .wil-types-header p {
            font-size: 1.1rem;
            color: var(--wil-text-light);
            max-width: 650px;
            margin: 0 auto;
        }
        .wil-types-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
        }
        .wil-type-card {
            background: #fff;
            border-radius: 16px;
            padding: 32px 28px;
            border-left: 4px solid var(--wil-orange);
            box-shadow: 0 4px 20px rgba(0,0,0,0.06);
            transition: all 0.3s ease;
        }
        .wil-type-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
        }
        .wil-type-card.blue { border-left-color: var(--wil-sky); }
        .wil-type-card.gold { border-left-color: var(--wil-gold); }
        .wil-type-card.teal { border-left-color: #38b2ac; }
        .wil-type-card.purple { border-left-color: #805ad5; }
        .wil-type-card.coral { border-left-color: #e53e3e; }
        .wil-type-icon {
            width: 56px;
            height: 56px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }
        .wil-type-icon.orange { background: rgba(237, 137, 54, 0.12); }
        .wil-type-icon.orange svg { stroke: var(--wil-orange); }
        .wil-type-icon.blue { background: rgba(66, 153, 225, 0.12); }
        .wil-type-icon.blue svg { stroke: var(--wil-sky); }
        .wil-type-icon.gold { background: rgba(214, 158, 46, 0.12); }
        .wil-type-icon.gold svg { stroke: var(--wil-gold); }
        .wil-type-icon.teal { background: rgba(56, 178, 172, 0.12); }
        .wil-type-icon.teal svg { stroke: #38b2ac; }
        .wil-type-icon.purple { background: rgba(128, 90, 213, 0.12); }
        .wil-type-icon.purple svg { stroke: #805ad5; }
        .wil-type-icon.coral { background: rgba(229, 62, 62, 0.12); }
        .wil-type-icon.coral svg { stroke: #e53e3e; }
        .wil-type-icon svg {
            width: 28px;
            height: 28px;
        }
        .wil-type-card h3 {
            font-family: var(--font-heading);
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--wil-navy);
            margin-bottom: 12px;
        }
        .wil-type-card p {
            font-size: 0.92rem;
            color: var(--wil-text-light);
            line-height: 1.7;
            margin-bottom: 16px;
        }
        .wil-type-features {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        .wil-type-feature {
            font-size: 0.75rem;
            font-weight: 500;
            padding: 5px 12px;
            background: rgba(0,0,0,0.04);
            border-radius: 20px;
            color: var(--wil-text);
        }
        @media (max-width: 1024px) {
            .wil-types-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 700px) {
            .wil-types-grid { grid-template-columns: 1fr; }
            .wil-types-header h2 { font-size: 2rem; }
        }

        /* ========================================
           WHO IS THIS FOR SECTION
           ======================================== */
        .wil-who-section {
            padding: 100px 40px;
            background: var(--wil-sand);
        }
        .wil-who-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .wil-who-header {
            text-align: center;
            margin-bottom: 60px;
        }
        .wil-who-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 18px;
            background: rgba(237, 137, 54, 0.1);
            border: 1px solid rgba(237, 137, 54, 0.2);
            border-radius: 30px;
            margin-bottom: 16px;
        }
        .wil-who-badge svg { width: 16px; height: 16px; stroke: var(--wil-orange); }
        .wil-who-badge span {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--wil-orange);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .wil-who-header h2 {
            font-family: var(--font-heading);
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--wil-navy);
            margin-bottom: 16px;
        }
        .wil-who-header p {
            font-size: 1.1rem;
            color: var(--wil-text-light);
            max-width: 600px;
            margin: 0 auto;
        }
        .wil-who-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
        }
        .wil-who-card {
            background: #fff;
            border-radius: 16px;
            padding: 32px 28px;
            text-align: center;
            box-shadow: 0 4px 20px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }
        .wil-who-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
        }
        .wil-who-icon {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }
        .wil-who-icon.orange { background: rgba(237, 137, 54, 0.12); }
        .wil-who-icon.orange svg { stroke: var(--wil-orange); }
        .wil-who-icon.blue { background: rgba(66, 153, 225, 0.12); }
        .wil-who-icon.blue svg { stroke: var(--wil-sky); }
        .wil-who-icon.gold { background: rgba(214, 158, 46, 0.12); }
        .wil-who-icon.gold svg { stroke: var(--wil-gold); }
        .wil-who-icon.teal { background: rgba(56, 178, 172, 0.12); }
        .wil-who-icon.teal svg { stroke: #38b2ac; }
        .wil-who-icon.purple { background: rgba(128, 90, 213, 0.12); }
        .wil-who-icon.purple svg { stroke: #805ad5; }
        .wil-who-icon.coral { background: rgba(229, 62, 62, 0.12); }
        .wil-who-icon.coral svg { stroke: #e53e3e; }
        .wil-who-icon svg { width: 32px; height: 32px; }
        .wil-who-card h3 {
            font-family: var(--font-heading);
            font-size: 1.15rem;
            font-weight: 600;
            color: var(--wil-navy);
            margin-bottom: 10px;
        }
        .wil-who-card p {
            font-size: 0.9rem;
            color: var(--wil-text-light);
            line-height: 1.7;
            margin: 0;
        }
        @media (max-width: 900px) {
            .wil-who-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 600px) {
            .wil-who-grid { grid-template-columns: 1fr; }
            .wil-who-header h2 { font-size: 2rem; }
        }

        /* ========================================
           HOW IT WORKS / PROCESS SECTION
           ======================================== */
        .wil-process-section {
            padding: 100px 40px;
            background: linear-gradient(135deg, #1a365d 0%, #2c5282 40%, #2d6a7a 100%);
            position: relative;
            overflow: hidden;
        }
        .wil-process-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
            background-size: 50px 50px;
            pointer-events: none;
        }
        .wil-process-container {
            max-width: 1100px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }
        .wil-process-header {
            text-align: center;
            margin-bottom: 60px;
        }
        .wil-process-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 18px;
            background: rgba(237, 137, 54, 0.15);
            border: 1px solid rgba(237, 137, 54, 0.25);
            border-radius: 30px;
            margin-bottom: 16px;
        }
        .wil-process-badge svg { width: 16px; height: 16px; stroke: var(--wil-amber); }
        .wil-process-badge span {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--wil-amber);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .wil-process-header h2 {
            font-family: var(--font-heading);
            font-size: 2.5rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 16px;
        }
        .wil-process-header p {
            font-size: 1.1rem;
            color: rgba(255,255,255,0.7);
            max-width: 600px;
            margin: 0 auto;
        }
        .wil-process-steps {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            position: relative;
        }
        .wil-process-steps::before {
            content: '';
            position: absolute;
            top: 30px;
            left: calc(12.5% + 30px);
            right: calc(12.5% + 30px);
            height: 3px;
            background: linear-gradient(90deg, var(--wil-orange), var(--wil-amber), var(--wil-gold));
            border-radius: 2px;
        }
        .wil-process-step {
            text-align: center;
            position: relative;
            z-index: 2;
        }
        .wil-process-number {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--wil-gradient-warm);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-family: var(--font-heading);
            font-size: 1.4rem;
            font-weight: 700;
            color: #fff;
            box-shadow: 0 10px 30px rgba(221, 107, 32, 0.4);
            border: 4px solid rgba(26, 54, 93, 0.8);
        }
        .wil-process-step h4 {
            font-family: var(--font-heading);
            font-size: 1.1rem;
            font-weight: 600;
            color: #fff;
            margin-bottom: 10px;
        }
        .wil-process-step p {
            font-size: 0.9rem;
            color: rgba(255,255,255,0.7);
            line-height: 1.6;
            max-width: 220px;
            margin: 0 auto;
        }
        @media (max-width: 900px) {
            .wil-process-section { padding: 80px 30px; }
            .wil-process-steps {
                grid-template-columns: 1fr;
                gap: 40px;
                max-width: 400px;
                margin: 0 auto;
            }
            .wil-process-steps::before { display: none; }
            .wil-process-step {
                display: flex;
                align-items: flex-start;
                text-align: left;
                gap: 20px;
            }
            .wil-process-number {
                margin: 0;
                flex-shrink: 0;
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
            }
            .wil-process-step p { max-width: none; margin: 0; }
            .wil-process-header h2 { font-size: 2rem; }
        }

        /* ========================================
           BENEFITS SECTION
           ======================================== */
        .wil-benefits-section {
            padding: 100px 40px;
            background: #fff;
        }
        .wil-benefits-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .wil-benefits-header {
            text-align: center;
            margin-bottom: 60px;
        }
        .wil-benefits-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 18px;
            background: rgba(66, 153, 225, 0.1);
            border: 1px solid rgba(66, 153, 225, 0.2);
            border-radius: 30px;
            margin-bottom: 16px;
        }
        .wil-benefits-badge svg { width: 16px; height: 16px; stroke: var(--wil-sky); }
        .wil-benefits-badge span {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--wil-sky);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .wil-benefits-header h2 {
            font-family: var(--font-heading);
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--wil-navy);
            margin-bottom: 16px;
        }
        .wil-benefits-header p {
            font-size: 1.1rem;
            color: var(--wil-text-light);
            max-width: 600px;
            margin: 0 auto;
        }
        .wil-benefits-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
        }
        .wil-benefit-card {
            background: var(--wil-cream);
            border-radius: 16px;
            padding: 32px 28px;
            transition: all 0.3s ease;
        }
        .wil-benefit-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.08);
        }
        .wil-benefit-icon {
            width: 56px;
            height: 56px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }
        .wil-benefit-icon.orange { background: rgba(237, 137, 54, 0.15); }
        .wil-benefit-icon.orange svg { stroke: var(--wil-orange); }
        .wil-benefit-icon.blue { background: rgba(66, 153, 225, 0.15); }
        .wil-benefit-icon.blue svg { stroke: var(--wil-sky); }
        .wil-benefit-icon.gold { background: rgba(214, 158, 46, 0.15); }
        .wil-benefit-icon.gold svg { stroke: var(--wil-gold); }
        .wil-benefit-icon.teal { background: rgba(56, 178, 172, 0.15); }
        .wil-benefit-icon.teal svg { stroke: #38b2ac; }
        .wil-benefit-icon.purple { background: rgba(128, 90, 213, 0.15); }
        .wil-benefit-icon.purple svg { stroke: #805ad5; }
        .wil-benefit-icon.coral { background: rgba(229, 62, 62, 0.15); }
        .wil-benefit-icon.coral svg { stroke: #e53e3e; }
        .wil-benefit-icon svg { width: 28px; height: 28px; }
        .wil-benefit-card h3 {
            font-family: var(--font-heading);
            font-size: 1.15rem;
            font-weight: 600;
            color: var(--wil-navy);
            margin-bottom: 10px;
        }
        .wil-benefit-card p {
            font-size: 0.9rem;
            color: var(--wil-text-light);
            line-height: 1.7;
            margin: 0;
        }
        @media (max-width: 900px) {
            .wil-benefits-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 600px) {
            .wil-benefits-grid { grid-template-columns: 1fr; }
            .wil-benefits-header h2 { font-size: 2rem; }
        }

        /* ========================================
           CTA SECTION
           ======================================== */
        .wil-cta-section {
            padding: 100px 40px;
            background: var(--wil-sand);
        }
        .wil-cta-container {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }
        .wil-cta-icon {
            width: 80px;
            height: 80px;
            background: var(--wil-gradient-warm);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
        }
        .wil-cta-icon svg { width: 40px; height: 40px; stroke: #fff; }
        .wil-cta-container h2 {
            font-family: var(--font-heading);
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--wil-navy);
            margin-bottom: 20px;
        }
        .wil-cta-desc {
            font-size: 1.15rem;
            color: #555;
            line-height: 1.8;
            margin: 0 auto 40px;
            max-width: 700px;
        }
        .wil-cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 50px;
        }
        .wil-cta-buttons .wil-btn-primary { width: auto; }
        .wil-cta-buttons .wil-btn-secondary {
            width: auto;
            background: #fff;
            border: 2px solid var(--wil-blue);
            color: var(--wil-navy);
        }
        .wil-cta-buttons .wil-btn-secondary:hover {
            background: var(--wil-navy);
            border-color: var(--wil-navy);
            color: #fff;
        }
        .wil-cta-list {
            text-align: left;
            max-width: 600px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            background: #fff;
            padding: 28px 32px;
            border-radius: 16px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.05);
        }
        .wil-cta-list-item {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 0.95rem;
            color: #555;
        }
        .wil-cta-list-item svg {
            width: 20px;
            height: 20px;
            stroke: var(--wil-blue);
            flex-shrink: 0;
        }
        @media (max-width: 700px) {
            .wil-cta-section { padding: 80px 30px; }
            .wil-cta-container h2 { font-size: 1.8rem; }
            .wil-cta-desc { font-size: 1rem; }
            .wil-cta-list { grid-template-columns: 1fr; padding: 20px 24px; }
            .wil-cta-buttons { flex-direction: column; }
            .wil-cta-buttons a { width: 100%; justify-content: center; }
        }
