/* =========================
   HOW WE WORK — SECTION
========================= */
.hww-section {
    position: relative;
    padding: 100px 0 80px;
    overflow: hidden;
    background: #000;
}

/* =========================
   BACKGROUND EFFECTS
========================= */
.hww-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.hww-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
}

.hww-orb-1 {
    width: 600px;
    height: 600px;
    background: #eab308;
    top: -200px;
    right: -200px;
    animation: hwwOrbFloat 15s ease-in-out infinite;
}

.hww-orb-2 {
    width: 500px;
    height: 500px;
    background: #3b82f6;
    bottom: 30%;
    left: -250px;
    animation: hwwOrbFloat 18s ease-in-out infinite reverse;
}

.hww-orb-3 {
    width: 400px;
    height: 400px;
    background: #a855f7;
    bottom: -150px;
    right: 10%;
    animation: hwwOrbFloat 20s ease-in-out infinite 3s;
}

@keyframes hwwOrbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -40px) scale(1.1); }
    66% { transform: translate(-20px, 30px) scale(0.95); }
}

.hww-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    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: 80px 80px;
}

/* Particles */
.hww-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.hww-particles span {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(234, 179, 8, 0.4);
    border-radius: 50%;
    animation: hwwParticle 20s linear infinite;
}

.hww-particles span:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; animation-duration: 18s; }
.hww-particles span:nth-child(2) { left: 30%; top: 60%; animation-delay: 2s; animation-duration: 22s; }
.hww-particles span:nth-child(3) { left: 50%; top: 10%; animation-delay: 4s; animation-duration: 16s; }
.hww-particles span:nth-child(4) { left: 70%; top: 40%; animation-delay: 1s; animation-duration: 20s; }
.hww-particles span:nth-child(5) { left: 85%; top: 70%; animation-delay: 3s; animation-duration: 24s; }
.hww-particles span:nth-child(6) { left: 15%; top: 80%; animation-delay: 5s; animation-duration: 19s; }
.hww-particles span:nth-child(7) { left: 40%; top: 30%; animation-delay: 7s; background: rgba(59,130,246,0.3); }
.hww-particles span:nth-child(8) { left: 60%; top: 85%; animation-delay: 6s; background: rgba(168,85,247,0.3); }
.hww-particles span:nth-child(9) { left: 90%; top: 15%; animation-delay: 8s; animation-duration: 21s; }
.hww-particles span:nth-child(10) { left: 25%; top: 45%; animation-delay: 9s; background: rgba(34,197,94,0.3); }
.hww-particles span:nth-child(11) { left: 75%; top: 55%; animation-delay: 10s; animation-duration: 17s; }
.hww-particles span:nth-child(12) { left: 55%; top: 95%; animation-delay: 11s; }

@keyframes hwwParticle {
    0% { transform: translateY(0) translateX(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-800px) translateX(100px); opacity: 0; }
}

/* =========================
   SECTION HEADER
========================= */
.hww-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.hww-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 50px;
    background: rgba(234, 179, 8, 0.08);
    border: 1px solid rgba(234, 179, 8, 0.25);
    color: #eab308;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.hww-badge-dot {
    width: 8px;
    height: 8px;
    background: #eab308;
    border-radius: 50%;
    animation: hwwPulse 2s ease-in-out infinite;
}

@keyframes hwwPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.5); }
}

.hww-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
    color: #fff;
}

.hww-title-gradient {
    background: linear-gradient(135deg, #eab308, #f59e0b, #fbbf24, #eab308);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: hwwGradientShift 4s ease infinite;
}

@keyframes hwwGradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hww-subtitle {
    font-size: 20px;
    color: #9ca3af;
    margin-bottom: 16px;
    font-weight: 400;
}

.hww-typing-wrapper {
    display: inline-block;
}

.hww-typing {
    color: #eab308;
    font-weight: 600;
    border-right: 2px solid #eab308;
    padding-right: 4px;
    animation: hwwBlink 1s step-end infinite;
}

@keyframes hwwBlink {
    50% { border-color: transparent; }
}

.hww-description {
    font-size: 15px;
    color: #6b7280;
    max-width: 720px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

/* Stats Bar */
.hww-stats-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 30px 50px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    max-width: 800px;
    margin: 0 auto;
}

.hww-stat-item {
    text-align: center;
}

.hww-stat-number {
    font-size: 32px;
    font-weight: 800;
    color: #eab308;
    line-height: 1;
    margin-bottom: 6px;
}

.hww-stat-label {
    font-size: 12px;
    color: #6b7280;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hww-stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, rgba(234,179,8,0.3), transparent);
}

/* =========================
   TIMELINE
========================= */
.hww-timeline {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 0;
}

.hww-timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(255,255,255,0.06);
    transform: translateX(-50%);
    z-index: 0;
}

.hww-timeline-line-fill {
    width: 100%;
    height: 0%;
    background: linear-gradient(to bottom, #eab308, #3b82f6, #22c55e, #a855f7);
    border-radius: 2px;
    transition: height 1.5s ease;
}

/* Step */
.hww-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 60px;
    position: relative;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.hww-step.hww-visible {
    opacity: 1;
    transform: translateY(0);
}

.hww-step .hww-step-content {
    width: calc(50% - 40px);
    margin-right: auto;
}

.hww-step .hww-step-connector {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.hww-step-right .hww-step-content {
    margin-right: 0;
    margin-left: auto;
}

/* Step Number */
.hww-step-number-wrap {
    position: relative;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hww-step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #111;
    border: 2px solid #eab308;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 800;
    color: #eab308;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.hww-step:hover .hww-step-number {
    background: #eab308;
    color: #000;
    transform: scale(1.1);
}

.hww-step-pulse {
    position: absolute;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid rgba(234, 179, 8, 0.3);
    animation: hwwStepPulse 3s ease-in-out infinite;
}

@keyframes hwwStepPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.3); opacity: 0; }
}

/* =========================
   STEP CARD
========================= */
.hww-step-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.hww-card-glow {
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(234,179,8,0.3), transparent 40%, transparent 60%, rgba(234,179,8,0.1));
    z-index: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.hww-step:hover .hww-card-glow {
    opacity: 1;
}

.hww-glow-blue {
    background: linear-gradient(135deg, rgba(59,130,246,0.3), transparent 40%, transparent 60%, rgba(59,130,246,0.1)) !important;
}

.hww-glow-green {
    background: linear-gradient(135deg, rgba(34,197,94,0.3), transparent 40%, transparent 60%, rgba(34,197,94,0.1)) !important;
}

.hww-glow-purple {
    background: linear-gradient(135deg, rgba(168,85,247,0.3), transparent 40%, transparent 60%, rgba(168,85,247,0.1)) !important;
}

.hww-card-inner {
    position: relative;
    z-index: 1;
    padding: 32px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.5s ease;
}

.hww-step:hover .hww-card-inner {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.12);
    transform: translateY(-4px);
}

/* Card Header */
.hww-card-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.hww-card-icon {
    position: relative;
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.hww-icon-bg {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(234,179,8,0.15), rgba(234,179,8,0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #eab308;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.hww-step:hover .hww-icon-bg {
    background: linear-gradient(135deg, rgba(234,179,8,0.25), rgba(234,179,8,0.1));
    transform: rotate(5deg) scale(1.05);
}

.hww-icon-blue .hww-icon-bg {
    background: linear-gradient(135deg, rgba(59,130,246,0.15), rgba(59,130,246,0.05));
    color: #3b82f6;
}
.hww-step:hover .hww-icon-blue .hww-icon-bg {
    background: linear-gradient(135deg, rgba(59,130,246,0.25), rgba(59,130,246,0.1));
}

.hww-icon-green .hww-icon-bg {
    background: linear-gradient(135deg, rgba(34,197,94,0.15), rgba(34,197,94,0.05));
    color: #22c55e;
}
.hww-step:hover .hww-icon-green .hww-icon-bg {
    background: linear-gradient(135deg, rgba(34,197,94,0.25), rgba(34,197,94,0.1));
}

.hww-icon-purple .hww-icon-bg {
    background: linear-gradient(135deg, rgba(168,85,247,0.15), rgba(168,85,247,0.05));
    color: #a855f7;
}
.hww-step:hover .hww-icon-purple .hww-icon-bg {
    background: linear-gradient(135deg, rgba(168,85,247,0.25), rgba(168,85,247,0.1));
}

.hww-icon-ring {
    position: absolute;
    top: -5px;
    left: -5px;
    width: 70px;
    height: 70px;
}

.hww-icon-ring circle {
    fill: none;
    stroke: rgba(234,179,8,0.2);
    stroke-width: 1.5;
    stroke-dasharray: 283;
    stroke-dashoffset: 283;
    transition: stroke-dashoffset 1s ease;
}

.hww-step:hover .hww-icon-ring circle {
    stroke-dashoffset: 0;
}

.hww-icon-blue .hww-icon-ring circle { stroke: rgba(59,130,246,0.2); }
.hww-icon-green .hww-icon-ring circle { stroke: rgba(34,197,94,0.2); }
.hww-icon-purple .hww-icon-ring circle { stroke: rgba(168,85,247,0.2); }

.hww-card-title-area {
    flex: 1;
}

.hww-card-phase {
    font-size: 11px;
    font-weight: 700;
    color: #eab308;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 4px;
    display: block;
}

.hww-step-right .hww-card-phase,
.hww-step:nth-child(3) .hww-card-phase { color: #3b82f6; }
.hww-step:nth-child(4) .hww-card-phase { color: #22c55e; }
.hww-step:nth-child(5) .hww-card-phase { color: #a855f7; }

.hww-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}

.hww-card-desc {
    font-size: 14px;
    color: #9ca3af;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Features */
.hww-card-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.hww-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 12px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.hww-feature-item:hover {
    background: rgba(255,255,255,0.03);
    transform: translateX(4px);
}

.hww-feature-check {
    width: 24px;
    height: 24px;
    border-radius: 8px;
    background: rgba(234,179,8,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hww-feature-check i {
    font-size: 10px;
    color: #eab308;
}

.hww-check-blue { background: rgba(59,130,246,0.1); }
.hww-check-blue i { color: #3b82f6; }
.hww-check-green { background: rgba(34,197,94,0.1); }
.hww-check-green i { color: #22c55e; }
.hww-check-purple { background: rgba(168,85,247,0.1); }
.hww-check-purple i { color: #a855f7; }

.hww-feature-item span {
    font-size: 13px;
    color: #d1d5db;
    font-weight: 400;
}

/* Outcome */
.hww-card-outcome {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(234,179,8,0.08), rgba(234,179,8,0.02));
    border-left: 3px solid #eab308;
}

.hww-card-outcome i {
    color: #eab308;
    font-size: 12px;
    flex-shrink: 0;
}

.hww-card-outcome span {
    font-size: 13px;
    color: #d1d5db;
    font-style: italic;
    line-height: 1.5;
}

.hww-outcome-blue {
    background: linear-gradient(135deg, rgba(59,130,246,0.08), rgba(59,130,246,0.02));
    border-left-color: #3b82f6;
}
.hww-outcome-blue i { color: #3b82f6; }

.hww-outcome-green {
    background: linear-gradient(135deg, rgba(34,197,94,0.08), rgba(34,197,94,0.02));
    border-left-color: #22c55e;
}
.hww-outcome-green i { color: #22c55e; }

.hww-outcome-purple {
    background: linear-gradient(135deg, rgba(168,85,247,0.08), rgba(168,85,247,0.02));
    border-left-color: #a855f7;
}
.hww-outcome-purple i { color: #a855f7; }

/* =========================
   INDUSTRIES SECTION
========================= */
.hww-industries {
    position: relative;
    z-index: 2;
    margin: 80px 0 60px;
    border-radius: 24px;
    overflow: hidden;
}

.hww-industries-glow {
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(234,179,8,0.2), transparent 30%, transparent 70%, rgba(59,130,246,0.2));
    z-index: 0;
}

.hww-industries-inner {
    position: relative;
    z-index: 1;
    padding: 50px;
    background: rgba(17,17,17,0.95);
    border-radius: 24px;
    text-align: center;
}

.hww-industries-title {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 36px;
    line-height: 1.4;
}

.hww-industries-title span {
    display: block;
    font-size: 18px;
    font-weight: 400;
    color: #9ca3af;
    margin-top: 6px;
}

.hww-industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 700px;
    margin: 0 auto;
}

.hww-industry-chip {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    border-radius: 12px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    transition: all 0.4s ease;
    cursor: default;
}

.hww-industry-chip:hover {
    background: rgba(234,179,8,0.08);
    border-color: rgba(234,179,8,0.2);
    transform: translateY(-3px);
}

.hww-industry-chip i {
    font-size: 16px;
    color: #eab308;
    width: 20px;
    text-align: center;
}

.hww-industry-chip span {
    font-size: 13px;
    color: #d1d5db;
    font-weight: 500;
}

/* =========================
   WHY SECTION
========================= */
.hww-why-section {
    position: relative;
    z-index: 2;
    margin-bottom: 80px;
}

.hww-why-header {
    text-align: center;
    margin-bottom: 50px;
}

.hww-why-title {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
}

.hww-why-title span {
    background: linear-gradient(135deg, #eab308, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hww-why-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.hww-why-card {
    position: relative;
    padding: 30px 22px;
    border-radius: 20px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    text-align: center;
    overflow: hidden;
    transition: all 0.5s ease;
    cursor: default;
}

.hww-why-card:hover {
    background: radial-gradient(circle at top right, rgba(234, 179, 8, 0.08) 0%, transparent 70%);;
    border-color: rgba(255,255,255,0.12);
    transform: translateY(-8px);
}

.hww-why-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 40%,
        rgba(255,255,255,0.03) 50%,
        transparent 60%
    );
    transform: rotate(45deg) translateY(100%);
    transition: transform 0.8s ease;
}

.hww-why-card:hover .hww-why-shine {
    transform: rotate(45deg) translateY(-100%);
}

.hww-why-icon-wrap {
    margin-bottom: 20px;
}

.hww-why-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(234,179,8,0.12), rgba(234,179,8,0.04));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 20px;
    color: #eab308;
    transition: all 0.4s ease;
}

.hww-why-card:hover .hww-why-icon {
    transform: scale(1.1) rotate(5deg);
}

.hww-why-icon-blue {
    background: linear-gradient(135deg, rgba(59,130,246,0.12), rgba(59,130,246,0.04));
    color: #3b82f6;
}

.hww-why-icon-green {
    background: linear-gradient(135deg, rgba(34,197,94,0.12), rgba(34,197,94,0.04));
    color: #22c55e;
}

.hww-why-icon-purple {
    background: linear-gradient(135deg, rgba(168,85,247,0.12), rgba(168,85,247,0.04));
    color: #a855f7;
}

.hww-why-icon-orange {
    background: linear-gradient(135deg, rgba(249,115,22,0.12), rgba(249,115,22,0.04));
    color: #f97316;
}

.hww-why-card h4 {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.3;
}

.hww-why-card p {
    font-size: 12px;
    color: #6b7280;
    line-height: 1.6;
}

/* =========================
   BOTTOM CTA
========================= */
.hww-cta {
    position: relative;
    z-index: 2;
    border-radius: 24px;
    overflow: hidden;
    padding: 60px 40px;
    text-align: center;
}

.hww-cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(234,179,8,0.08), rgba(168,85,247,0.05), rgba(59,130,246,0.05));
    border: 1px solid rgba(234,179,8,0.15);
    border-radius: 24px;
    z-index: 0;
}

.hww-cta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.hww-cta-orb-1 {
    width: 300px;
    height: 300px;
    background: rgba(234,179,8,0.15);
    top: -100px;
    left: -50px;
}

.hww-cta-orb-2 {
    width: 250px;
    height: 250px;
    background: rgba(59,130,246,0.1);
    bottom: -80px;
    right: -30px;
}

.hww-cta-content {
    position: relative;
    z-index: 1;
}

.hww-cta-content h3 {
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.hww-cta-content p {
    font-size: 17px;
    color: #9ca3af;
    margin-bottom: 32px;
}

.hww-cta-content p span {
    color: #eab308;
    font-weight: 600;
}

.hww-cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hww-btn-primary {
    background: linear-gradient(135deg, #eab308, #f59e0b);
    color: #000;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 4px 30px rgba(234,179,8,0.3);
}

.hww-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 40px rgba(234,179,8,0.4);
}

.hww-btn-primary i {
    transition: transform 0.3s ease;
}

.hww-btn-primary:hover i {
    transform: translateX(4px);
}

.hww-btn-secondary {
    background: transparent;
    color: #fff;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.15);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.4s ease;
}

.hww-btn-secondary:hover {
    border-color: rgba(234,179,8,0.4);
    background: rgba(234,179,8,0.05);
    transform: translateY(-3px);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 992px) {
    .hww-title {
        font-size: 40px;
    }

    .hww-stats-bar {
        gap: 24px;
        padding: 24px 30px;
        flex-wrap: wrap;
    }

    .hww-stat-number {
        font-size: 26px;
    }

    .hww-timeline-line {
        left: 28px;
    }

    .hww-step {
        flex-direction: column;
        padding-left: 80px;
    }

    .hww-step .hww-step-content,
    .hww-step-right .hww-step-content {
        width: 100%;
        margin: 0;
    }

    .hww-step .hww-step-connector,
    .hww-step-right .hww-step-connector {
        position: absolute;
        left: 0;
        top: 0;
        transform: none;
    }

    .hww-industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hww-why-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .hww-section {
        padding: 60px 0;
    }

    .hww-title {
        font-size: 32px;
    }

    .hww-subtitle {
        font-size: 16px;
    }

    .hww-header {
        margin-bottom: 50px;
    }

    .hww-stats-bar {
        flex-direction: column;
        gap: 20px;
    }

    .hww-stat-divider {
        width: 60px;
        height: 1px;
        background: linear-gradient(to right, transparent, rgba(234,179,8,0.3), transparent);
    }

    .hww-card-inner {
        padding: 24px 20px;
    }

    .hww-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .hww-card-title {
        font-size: 18px;
    }

    .hww-industries-inner {
        padding: 30px 20px;
    }

    .hww-industries-grid {
        grid-template-columns: 1fr;
    }

    .hww-industries-title {
        font-size: 22px;
    }

    .hww-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hww-why-title {
        font-size: 24px;
    }

    .hww-cta {
        padding: 40px 20px;
    }

    .hww-cta-content h3 {
        font-size: 22px;
    }

    .hww-cta-content p {
        font-size: 14px;
    }

    .hww-cta-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hww-title {
        font-size: 28px;
    }

    .hww-why-grid {
        grid-template-columns: 1fr;
    }

    .hww-step {
        padding-left: 60px;
    }

    .hww-step-number {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .hww-step-pulse {
        width: 48px;
        height: 48px;
    }

    .hww-timeline-line {
        left: 20px;
    }
}