/* =========================
   COMMON UTILITIES
========================= */
.pws-text-gradient {
    background: linear-gradient(135deg, #eab308 0%, #fbbf24 50%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* =========================
   PWS BUTTONS
========================= */
.pws-btn-primary {
    background: linear-gradient(135deg, #eab308 0%, #ca8a04 100%);
    color: #000;
    padding: 16px 32px;
    font-size: 15px;
    box-shadow: 0 4px 20px rgba(234, 179, 8, 0.3);
}

.pws-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(234, 179, 8, 0.5);
}

.pws-btn-primary svg {
    transition: transform 0.3s ease;
}

.pws-btn-primary:hover svg {
    transform: translateX(5px);
}

.pws-btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    padding: 16px 32px;
    font-size: 15px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.pws-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(234, 179, 8, 0.5);
    color: #eab308;
}

.pws-btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 16px 32px;
    font-size: 15px;
}

.pws-btn-outline:hover {
    border-color: #eab308;
    color: #eab308;
    background: rgba(234, 179, 8, 0.1);
}

.pws-btn-lg {
    padding: 18px 36px;
    font-size: 16px;
}

/* =========================
   SECTION HEADER
========================= */
.pws-section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.pws-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(234, 179, 8, 0.12) 0%, rgba(234, 179, 8, 0.04) 100%);
    border: 1px solid rgba(234, 179, 8, 0.3);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: #eab308;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.pws-section-title {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    color: #fff;
}

.pws-section-desc {
    font-size: 17px;
    color: #9ca3af;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}


/* =========================================
   HERO SECTION
========================================= */
.pws-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 60px;
}

/* Hero Background */
.pws-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.pws-hero-gradient {
    position: absolute;
    border-radius: 50%;
    filter: blur(150px);
}

.pws-hero-gradient-1 {
    width: 800px;
    height: 800px;
    background: linear-gradient(135deg, #eab308, #f59e0b);
    opacity: 0.08;
    top: -300px;
    left: -200px;
    animation: pwsFloat 15s ease-in-out infinite;
}

.pws-hero-gradient-2 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    opacity: 0.06;
    bottom: -200px;
    right: -100px;
    animation: pwsFloat 15s ease-in-out infinite reverse;
}

@keyframes pwsFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.1); }
}

.pws-hero-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(234, 179, 8, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(234, 179, 8, 0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
}

.pws-hero-particles {
    position: absolute;
    inset: 0;
}

.pws-hero-particles span {
    position: absolute;
    width: 3px;
    height: 3px;
    background: #eab308;
    border-radius: 50%;
    opacity: 0;
    animation: pwsParticle 20s linear infinite;
}

.pws-hero-particles span:nth-child(1) { left: 10%; animation-delay: 0s; }
.pws-hero-particles span:nth-child(2) { left: 25%; animation-delay: 2.5s; }
.pws-hero-particles span:nth-child(3) { left: 40%; animation-delay: 5s; }
.pws-hero-particles span:nth-child(4) { left: 55%; animation-delay: 7.5s; }
.pws-hero-particles span:nth-child(5) { left: 70%; animation-delay: 10s; }
.pws-hero-particles span:nth-child(6) { left: 85%; animation-delay: 12.5s; }
.pws-hero-particles span:nth-child(7) { left: 15%; animation-delay: 15s; }
.pws-hero-particles span:nth-child(8) { left: 60%; animation-delay: 17.5s; }

@keyframes pwsParticle {
    0% { 
        top: 100%; 
        opacity: 0; 
        transform: scale(0);
    }
    10% { 
        opacity: 0.6; 
        transform: scale(1);
    }
    90% { 
        opacity: 0.6; 
    }
    100% { 
        top: -10%; 
        opacity: 0;
        transform: scale(0.5);
    }
}

/* Hero Content */
.pws-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.pws-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(234, 179, 8, 0.15) 0%, rgba(234, 179, 8, 0.05) 100%);
    border: 1px solid rgba(234, 179, 8, 0.4);
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: #eab308;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: pwsFadeInDown 0.8s ease;
}

.pws-badge-pulse {
    width: 10px;
    height: 10px;
    background: #eab308;
    border-radius: 50%;
    animation: pwsPulse 2s ease-in-out infinite;
}

@keyframes pwsPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

@keyframes pwsFadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

.pws-hero-title {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    color: #fff;
    animation: pwsFadeInUp 0.8s ease 0.2s both;
}

@keyframes pwsFadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.pws-hero-subtitle {
    font-size: clamp(18px, 2.5vw, 26px);
    color: #d1d5db;
    margin-bottom: 30px;
    font-weight: 400;
    animation: pwsFadeInUp 0.8s ease 0.3s both;
}

.pws-hero-desc {
    max-width: 800px;
    margin: 0 auto 40px;
    animation: pwsFadeInUp 0.8s ease 0.4s both;
}

.pws-hero-desc p {
    font-size: 16px;
    color: #9ca3af;
    line-height: 1.8;
    margin-bottom: 16px;
}

.pws-hero-desc p:last-child {
    margin-bottom: 0;
}

.pws-hero-desc strong {
    color: #eab308;
    font-weight: 600;
}

.pws-hero-cta {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 60px;
    animation: pwsFadeInUp 0.8s ease 0.5s both;
}

/* Hero Stats */
.pws-hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    padding: 30px 40px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    animation: pwsFadeInUp 0.8s ease 0.6s both;
}

.pws-stat-item {
    text-align: center;
}

.pws-stat-number {
    display: block;
    font-size: 36px;
    font-weight: 800;
    background: linear-gradient(135deg, #eab308, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 6px;
}

.pws-stat-label {
    font-size: 13px;
    color: #9ca3af;
    font-weight: 500;
}

.pws-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}


/* =========================================
   EXPERTISE SECTION
========================================= */
.pws-expertise {
    position: relative;
    background: #000;
}

.pws-expertise-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.pws-expertise-glow {
    position: absolute;
    width: 100%;
    height: 400px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(ellipse at center, rgba(234, 179, 8, 0.05) 0%, transparent 60%);
}

/* Expertise Grid */
.pws-expertise-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

/* Expertise Card */
.pws-expertise-card {
    position: relative;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    overflow: hidden;
}

.pws-expertise-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #eab308, #f59e0b, #fbbf24);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.pws-expertise-card:hover {
    transform: translateY(-10px);
    border-color: rgba(234, 179, 8, 0.3);
    box-shadow: 
        0 30px 60px -15px rgba(0, 0, 0, 0.8),
        0 0 60px rgba(234, 179, 8, 0.08);
}

.pws-expertise-card:hover::before {
    transform: scaleX(1);
}

.pws-card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 0%, rgba(234, 179, 8, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.pws-expertise-card:hover .pws-card-glow {
    opacity: 1;
}

/* Card Icon */
.pws-card-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 24px;
}

.pws-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(145deg, rgba(234, 179, 8, 0.12) 0%, rgba(234, 179, 8, 0.04) 100%);
    border: 1px solid rgba(234, 179, 8, 0.25);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #eab308;
    position: relative;
    z-index: 2;
    transition: all 0.5s ease;
}

.pws-card-icon-bg {
    position: absolute;
    inset: -8px;
    background: linear-gradient(135deg, rgba(234, 179, 8, 0.15), transparent);
    border-radius: 26px;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.pws-expertise-card:hover .pws-card-icon {
    background: linear-gradient(145deg, #eab308 0%, #ca8a04 100%);
    color: #000;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 20px 40px rgba(234, 179, 8, 0.35);
    border-color: #eab308;
}

.pws-expertise-card:hover .pws-card-icon-bg {
    opacity: 1;
}

.pws-card-number {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 60px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
    transition: color 0.3s ease;
}

.pws-expertise-card:hover .pws-card-number {
    color: rgba(234, 179, 8, 0.1);
}

.pws-card-title {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.pws-expertise-card:hover .pws-card-title {
    color: #eab308;
}

.pws-card-desc {
    font-size: 15px;
    color: #9ca3af;
    line-height: 1.7;
    margin-bottom: 24px;
}

/* Card Features */
.pws-card-features {
    list-style: none;
    margin-bottom: 28px;
}

.pws-card-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 14px;
    color: #d1d5db;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.pws-card-features li:last-child {
    border-bottom: none;
}

.pws-card-features li:hover {
    color: #fff;
    transform: translateX(8px);
}

.pws-feature-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, rgba(234, 179, 8, 0.15), rgba(234, 179, 8, 0.05));
    border: 1px solid rgba(234, 179, 8, 0.3);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #eab308;
    transition: all 0.3s ease;
}

.pws-card-features li:hover .pws-feature-icon {
    background: #eab308;
    color: #000;
    border-color: #eab308;
}

/* Card Link */
.pws-card-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    padding: 14px 28px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    transition: all 0.4s ease;
}

.pws-card-link:hover {
    background: #eab308;
    color: #000;
    border-color: #eab308;
    box-shadow: 0 10px 30px rgba(234, 179, 8, 0.3);
}

.pws-card-link svg {
    transition: transform 0.3s ease;
}

.pws-card-link:hover svg {
    transform: translateX(5px);
}


/* =========================================
   INDUSTRIES SECTION
========================================= */
/* ==========================================
   INDUSTRY SOLUTIONS SECTION
========================================== */

.pws-industries {
    position: relative;
    background: #000;
    padding: 100px 0;
    overflow: hidden;
}

.pws-industries .container {
    position: relative;
    z-index: 2;
}

/* ==========================================
   BACKGROUND
========================================== */

.pws-industries-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.pws-industries-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at center,
        rgba(234, 179, 8, 0.08) 0%,
        transparent 60%
    );
}

/* ==========================================
   SECTION HEADER
========================================== */

.pws-section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 70px;
}

.pws-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(234, 179, 8, 0.1);
    border: 1px solid rgba(234, 179, 8, 0.3);
    border-radius: 50px;
    font-size: 13px;
    color: #eab308;
    margin-bottom: 20px;
}

.pws-section-title {
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.pws-text-gradient {
    background: linear-gradient(135deg, #eab308, #facc15);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pws-section-desc {
    color: #9ca3af;
    font-size: 16px;
    line-height: 1.7;
}

/* ==========================================
   INDUSTRIES GRID
========================================== */

.pws-industries-wrapper {
    position: relative;
}

.pws-industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

/* ==========================================
   INDUSTRY CARD
========================================== */

.pws-industry-card {
    position: relative;
    background: linear-gradient(
        160deg,
        rgba(255,255,255,0.05),
        rgba(255,255,255,0.02)
    );
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.35s ease;
    overflow: hidden;
}

.pws-industry-card:hover {
    transform: translateY(-10px);
    border-color: rgba(234, 179, 8, 0.3);
    box-shadow: 0 25px 50px rgba(0,0,0,0.6);
}



/* Number */
.pws-industry-number {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 60px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
    transition: color 0.3s ease;
}

.pws-industry-card:hover .pws-industry-number {
    color: rgba(234, 179, 8, 0.1);
}

/* Icon */
.pws-industry-icon {
    width: 60px;
    height: 60px;
    background: rgba(234, 179, 8, 0.08);
    border: 1px solid rgba(234, 179, 8, 0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #eab308;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.pws-industry-card:hover .pws-industry-icon {
    background: #eab308;
    color: #000;
    transform: scale(1.1);
}

/* Title */
.pws-industry-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #fff;
}

/* Description */
.pws-industry-desc {
    font-size: 14px;
    color: #9ca3af;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* Learn More Link */
.pws-industry-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    color: #eab308;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pws-industry-link:hover {
    gap: 10px;
}

/* ==========================================
   FEATURED CARD
========================================== */

.pws-industry-featured {
    background: linear-gradient(
        160deg,
        rgba(234,179,8,0.12),
        rgba(234,179,8,0.03)
    );
    border-color: rgba(234,179,8,0.3);
}

/* ==========================================
   HIDDEN CARDS (VIEW ALL SYSTEM)
========================================== */

.pws-hidden {
    display: none;
}

/* Fade Overlay */
.pws-industries-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to bottom, transparent, #000);
    pointer-events: none;
}

/* ==========================================
   TOGGLE BUTTON
========================================== */

.pws-industries-toggle {
    text-align: center;
    margin-top: 50px;
}

.pws-toggle-btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 16px 30px;
    background: rgba(234,179,8,0.1);
    border: 1px solid rgba(234,179,8,0.3);
    color: #eab308;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pws-toggle-btn:hover {
    background: #eab308;
    color: #000;
}

.pws-toggle-icon {
    transition: transform 0.3s ease;
}

.pws-toggle-btn.active .pws-toggle-icon {
    transform: rotate(180deg);
}

/* ==========================================
   RESPONSIVE DESIGN
========================================== */

@media (max-width: 1200px) {
    .pws-section-title {
        font-size: 32px;
    }
}

@media (max-width: 992px) {
    .pws-industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .pws-industries {
        padding: 70px 0;
    }

    .pws-industries-grid {
        grid-template-columns: 1fr;
    }

    .pws-section-title {
        font-size: 26px;
    }

    .pws-industry-card {
        padding: 22px;
    }
}


/* =========================================
   WHY CHOOSE SECTION
========================================= */
.pws-why-choose {
    position: relative;
    background: #000;
}

.pws-why-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Why Content */
.pws-why-content {
    position: relative;
    z-index: 1;
}

.pws-why-title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #fff;
}

.pws-why-desc {
    font-size: 17px;
    color: #9ca3af;
    line-height: 1.7;
    margin-bottom: 35px;
}

.pws-why-features {
    list-style: none;
}

.pws-why-feature {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s ease;
}

.pws-why-feature:last-child {
    border-bottom: none;
}

.pws-why-feature:hover {
    transform: translateX(10px);
}

.pws-why-check {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, rgba(234, 179, 8, 0.15), rgba(234, 179, 8, 0.05));
    border: 1px solid rgba(234, 179, 8, 0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #eab308;
    transition: all 0.3s ease;
}

.pws-why-feature:hover .pws-why-check {
    background: linear-gradient(135deg, #eab308, #ca8a04);
    color: #000;
    border-color: #eab308;
    transform: scale(1.1);
}

.pws-why-feature span {
    font-size: 16px;
    color: #d1d5db;
    font-weight: 500;
    transition: color 0.3s ease;
}

.pws-why-feature:hover span {
    color: #fff;
}

/* Why Visual */
.pws-why-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pws-why-card-stack {
    position: relative;
    width: 100%;
    height: 100%;
}

.pws-stack-card {
    position: absolute;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 24px 32px;
    display: flex;
    align-items: center;
    gap: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.5s ease;
}

.pws-stack-card:hover {
    transform: scale(1.05);
    border-color: rgba(234, 179, 8, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.pws-stack-icon {
    font-size: 32px;
}

.pws-stack-card span {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

.pws-stack-card-1 {
    top: 10%;
    left: 10%;
    animation: pwsFloatCard 6s ease-in-out infinite;
}

.pws-stack-card-2 {
    top: 30%;
    right: 5%;
    animation: pwsFloatCard 6s ease-in-out infinite 1.5s;
}

.pws-stack-card-3 {
    bottom: 30%;
    left: 5%;
    animation: pwsFloatCard 6s ease-in-out infinite 3s;
}

.pws-stack-card-4 {
    bottom: 10%;
    right: 15%;
    animation: pwsFloatCard 6s ease-in-out infinite 4.5s;
}

@keyframes pwsFloatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.pws-why-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(234, 179, 8, 0.15) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}


/* =========================================
   CTA SECTION
========================================= */
.pws-cta {
    position: relative;
}

.pws-cta-wrapper {
    position: relative;
    background: linear-gradient(160deg, rgba(234, 179, 8, 0.1) 0%, rgba(234, 179, 8, 0.02) 100%);
    border: 1px solid rgba(234, 179, 8, 0.2);
    border-radius: 32px;
    padding: 80px 60px;
    text-align: center;
    overflow: hidden;
}

.pws-cta-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.pws-cta-gradient {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(234, 179, 8, 0.15) 0%, transparent 60%);
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
}

.pws-cta-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(rgba(234, 179, 8, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.5;
}

.pws-cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.pws-cta-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #fff;
}

.pws-cta-desc {
    font-size: 17px;
    color: #d1d5db;
    line-height: 1.7;
    margin-bottom: 40px;
}

.pws-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.pws-cta-trust {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.pws-trust-text {
    display: block;
    font-size: 13px;
    color: #9ca3af;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pws-trust-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 15px;
    color: #eab308;
    font-weight: 600;
}

.pws-trust-divider {
    color: rgba(255, 255, 255, 0.2);
}


/* =========================================
   RESPONSIVE DESIGN
========================================= */
@media (max-width: 1200px) {
    .pws-industries-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .pws-why-wrapper {
        gap: 50px;
    }
}

@media (max-width: 992px) {
    .section-padding {
        padding: 60px 0;
    }
    
    .pws-hero {
        min-height: auto;
        padding-top: 80px;
    }
    
    .pws-expertise-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .pws-industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pws-why-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .pws-why-visual {
        height: 400px;
        order: -1;
    }
    
    .pws-hero-stats {
        gap: 25px;
        padding: 25px 30px;
    }
    
    .pws-stat-number {
        font-size: 30px;
    }
    
    .pws-stat-divider {
        display: none;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 50px 0;
    }
    
    .pws-hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .pws-btn-primary,
    .pws-btn-secondary,
    .pws-btn-outline {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .pws-hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .pws-section-header {
        margin-bottom: 40px;
    }
    
    .pws-expertise-card {
        padding: 30px;
    }
    
    .pws-card-icon {
        width: 70px;
        height: 70px;
    }
    
    .pws-card-number {
        font-size: 48px;
        top: 20px;
        right: 20px;
    }
    
    .pws-industries-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }
    
    .pws-industry-card {
        padding: 24px;
    }
    
    .pws-why-visual {
        height: 350px;
    }
    
    .pws-stack-card {
        padding: 18px 24px;
    }
    
    .pws-stack-card span {
        font-size: 14px;
    }
    
    .pws-cta-wrapper {
        padding: 50px 30px;
        border-radius: 24px;
    }
    
    .pws-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .pws-trust-logos {
        flex-direction: column;
        gap: 10px;
    }
    
    .pws-trust-divider {
        display: none;
    }
}

@media (max-width: 480px) {
    .section-padding {
        padding: 40px 0;
    }
    
    .pws-hero {
        padding-top: 60px;
    }
    
    .pws-hero-badge {
        padding: 10px 20px;
        font-size: 11px;
    }
    
    .pws-hero-title {
        font-size: 28px;
    }
    
    .pws-hero-subtitle {
        font-size: 16px;
    }
    
    .pws-hero-desc p {
        font-size: 14px;
    }
    
    .pws-section-badge {
        padding: 8px 18px;
        font-size: 11px;
    }
    
    .pws-section-title {
        font-size: 26px;
    }
    
    .pws-section-desc {
        font-size: 15px;
    }
    
    .pws-expertise-card {
        padding: 25px;
    }
    
    .pws-card-icon {
        width: 60px;
        height: 60px;
    }
    
    .pws-card-icon svg {
        width: 26px;
        height: 26px;
    }
    
    .pws-card-number {
        font-size: 40px;
    }
    
    .pws-card-title {
        font-size: 20px;
    }
    
    .pws-card-desc {
        font-size: 14px;
    }
    
    .pws-card-features li {
        font-size: 13px;
        padding: 8px 0;
    }
    
    .pws-card-link {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 14px;
    }
    
    .pws-industry-card {
        padding: 22px;
    }
    
    .pws-industry-icon {
        width: 50px;
        height: 50px;
    }
    
    .pws-industry-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .pws-industry-title {
        font-size: 16px;
    }
    
    .pws-industry-desc {
        font-size: 13px;
    }
    
    .pws-why-title {
        font-size: 26px;
    }
    
    .pws-why-desc {
        font-size: 15px;
    }
    
    .pws-why-feature {
        padding: 14px 0;
    }
    
    .pws-why-check {
        width: 32px;
        height: 32px;
    }
    
    .pws-why-feature span {
        font-size: 14px;
    }
    
    .pws-why-visual {
        height: 300px;
    }
    
    .pws-stack-card {
        padding: 14px 18px;
    }
    
    .pws-stack-icon {
        font-size: 24px;
    }
    
    .pws-stack-card span {
        font-size: 12px;
    }
    
    .pws-cta-wrapper {
        padding: 40px 20px;
    }
    
    .pws-cta-title {
        font-size: 24px;
    }
    
    .pws-cta-desc {
        font-size: 15px;
    }
    
    .pws-btn-lg {
        padding: 14px 28px;
        font-size: 14px;
    }
}

/* =========================================
   ANIMATIONS
========================================= */
.pws-expertise-card,
.pws-industry-card {
    opacity: 0;
    transform: translateY(40px);
    animation: pwsReveal 0.6s ease forwards;
}

.pws-expertise-card:nth-child(1) { animation-delay: 0.1s; }
.pws-expertise-card:nth-child(2) { animation-delay: 0.2s; }
.pws-expertise-card:nth-child(3) { animation-delay: 0.3s; }
.pws-expertise-card:nth-child(4) { animation-delay: 0.4s; }

.pws-industry-card:nth-child(1) { animation-delay: 0.05s; }
.pws-industry-card:nth-child(2) { animation-delay: 0.1s; }
.pws-industry-card:nth-child(3) { animation-delay: 0.15s; }
.pws-industry-card:nth-child(4) { animation-delay: 0.2s; }
.pws-industry-card:nth-child(5) { animation-delay: 0.25s; }
.pws-industry-card:nth-child(6) { animation-delay: 0.3s; }
.pws-industry-card:nth-child(7) { animation-delay: 0.35s; }
.pws-industry-card:nth-child(8) { animation-delay: 0.4s; }
.pws-industry-card:nth-child(9) { animation-delay: 0.45s; }
.pws-industry-card:nth-child(10) { animation-delay: 0.5s; }
.pws-industry-card:nth-child(11) { animation-delay: 0.55s; }
.pws-industry-card:nth-child(12) { animation-delay: 0.6s; }
.pws-industry-card:nth-child(13) { animation-delay: 0.65s; }
.pws-industry-card:nth-child(14) { animation-delay: 0.7s; }
.pws-industry-card:nth-child(15) { animation-delay: 0.75s; }
.pws-industry-card:nth-child(16) { animation-delay: 0.8s; }
.pws-industry-card:nth-child(17) { animation-delay: 0.85s; }
.pws-industry-card:nth-child(18) { animation-delay: 0.9s; }
.pws-industry-card:nth-child(19) { animation-delay: 0.95s; }
.pws-industry-card:nth-child(20) { animation-delay: 1s; }
.pws-industry-card:nth-child(21) { animation-delay: 1.05s; }
.pws-industry-card:nth-child(22) { animation-delay: 1.1s; }
.pws-industry-card:nth-child(23) { animation-delay: 1.15s; }
.pws-industry-card:nth-child(24) { animation-delay: 1.2s; }

@keyframes pwsReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

