/* =====================================================
   Penetration Testing & Web Vulnerability Diagnostics
   Landing Page Styles - Blue Security Theme
   ===================================================== */

/* CSS Variables - Blue Security Theme */
:root {
    --pwd-primary: #2563EB;
    --pwd-primary-light: #3B82F6;
    --pwd-primary-dark: #1D4ED8;
    --pwd-secondary: #7C3AED;
    --pwd-accent: #F97316;
    --pwd-accent-hover: #EA580C;
    --pwd-success: #10B981;
    --pwd-danger: #EF4444;
    --pwd-warning: #F59E0B;

    /* Light theme backgrounds */
    --pwd-bg-primary: #FFFFFF;
    --pwd-bg-secondary: #EFF6FF;
    --pwd-bg-tertiary: #DBEAFE;
    --pwd-bg-card: #FFFFFF;

    /* Text colors */
    --pwd-text-primary: #1E293B;
    --pwd-text-secondary: #475569;
    --pwd-text-muted: #94A3B8;

    /* Borders and shadows */
    --pwd-border: #E2E8F0;
    --pwd-shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --pwd-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --pwd-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --pwd-shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

    /* Gradients */
    --pwd-gradient-primary: linear-gradient(135deg, #2563EB 0%, #7C3AED 100%);
    --pwd-gradient-light: linear-gradient(135deg, #EFF6FF 0%, #F5F3FF 100%);
    --pwd-gradient-hero: linear-gradient(180deg, #EFF6FF 0%, #FFFFFF 100%);
}

/* =====================================================
   Base Styles
   ===================================================== */
.pwd-page {
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--pwd-text-primary);
    background: var(--pwd-bg-primary);
    overflow-x: hidden;
}

.pwd-section {
    padding: 80px 0;
}

.pwd-section-alt {
    background: var(--pwd-bg-secondary);
}

.pwd-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.pwd-section-header h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--pwd-text-primary);
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.pwd-section-header h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--pwd-gradient-primary);
    border-radius: 2px;
}

.pwd-section-header p {
    font-size: 1.125rem;
    color: var(--pwd-text-secondary);
    max-width: 700px;
    margin: 20px auto 0;
}

/* =====================================================
   Hero Section
   ===================================================== */
.pwd-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: var(--pwd-gradient-hero);
    padding: 120px 0 80px;
    overflow: hidden;
}

.pwd-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(37, 99, 235, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(124, 58, 237, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.pwd-hero-content {
    position: relative;
    z-index: 2;
}

.pwd-hero-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.pwd-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--pwd-bg-card);
    border: 1px solid var(--pwd-border);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--pwd-primary);
    box-shadow: var(--pwd-shadow-sm);
}

.pwd-badge i {
    color: var(--pwd-success);
}

.pwd-badge.pwd-badge-manual {
    background: linear-gradient(135deg, #DBEAFE 0%, #E0E7FF 100%);
    border-color: #93C5FD;
    color: #1E40AF;
}

.pwd-badge.pwd-badge-manual i {
    color: #2563EB;
}

.pwd-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--pwd-text-primary);
    margin-bottom: 24px;
}

.pwd-hero h1 span {
    background: var(--pwd-gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pwd-hero-subtitle {
    font-size: 1.25rem;
    color: var(--pwd-text-secondary);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 540px;
}

.pwd-hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.pwd-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.pwd-btn-primary {
    background: var(--pwd-gradient-primary);
    color: #fff;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.4);
}

.pwd-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.5);
    color: #fff;
}

.pwd-btn-outline {
    background: var(--pwd-bg-card);
    color: var(--pwd-text-primary);
    border: 2px solid var(--pwd-border);
}

.pwd-btn-outline:hover {
    border-color: var(--pwd-primary);
    color: var(--pwd-primary);
    background: var(--pwd-bg-secondary);
}

.pwd-hero-image {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pwd-hero-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 16px;
    box-shadow: var(--pwd-shadow-xl);
}

/* Service Icon */
.pwd-service-icon {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--pwd-gradient-primary);
    border-radius: 20px;
    margin-bottom: 24px;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
}

.pwd-service-icon i {
    font-size: 2.5rem;
    color: #fff;
}

/* =====================================================
   Comparison Section
   ===================================================== */
.pwd-comparison-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 40px;
}

.pwd-comparison-card {
    background: var(--pwd-bg-card);
    border: 2px solid var(--pwd-border);
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pwd-comparison-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--pwd-shadow-xl);
}

.pwd-comparison-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 6px 14px;
    background: var(--pwd-bg-secondary);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--pwd-primary);
}

.pwd-comparison-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    background: var(--pwd-gradient-light);
    border-radius: 20px;
    font-size: 2rem;
    color: var(--pwd-primary);
}

.pwd-comparison-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--pwd-text-primary);
    margin-bottom: 8px;
}

.pwd-comparison-subtitle {
    font-size: 0.875rem;
    color: var(--pwd-text-muted);
    margin-bottom: 16px;
}

.pwd-comparison-desc {
    margin-bottom: 24px;
}

.pwd-comparison-desc p {
    font-size: 0.9375rem;
    color: var(--pwd-text-secondary);
    line-height: 1.6;
}

.pwd-comparison-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    text-align: left;
}

.pwd-comparison-list li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--pwd-border);
    font-size: 0.875rem;
}

.pwd-comparison-list li:last-child {
    border-bottom: none;
}

.pwd-comparison-list li strong {
    color: var(--pwd-text-primary);
    font-weight: 600;
}

.pwd-comparison-list li span {
    color: var(--pwd-text-secondary);
}

.pwd-comparison-highlight {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--pwd-bg-secondary);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--pwd-primary);
}

.pwd-comparison-highlight i {
    color: var(--pwd-warning);
}

/* Manual Card Special Style */
.pwd-comparison-card.pwd-card-manual {
    border-color: #93C5FD;
    background: linear-gradient(180deg, #EFF6FF 0%, #FFFFFF 100%);
}

.pwd-comparison-card.pwd-card-manual .pwd-comparison-badge {
    background: #DBEAFE;
    color: #1E40AF;
}

/* Auto Card Special Style */
.pwd-comparison-card.pwd-card-auto {
    border-color: #A78BFA;
    background: linear-gradient(180deg, #F5F3FF 0%, #FFFFFF 100%);
}

.pwd-comparison-card.pwd-card-auto .pwd-comparison-badge {
    background: #EDE9FE;
    color: #6D28D9;
}

.pwd-comparison-card.pwd-card-auto .pwd-comparison-icon {
    background: linear-gradient(135deg, #EDE9FE 0%, #DDD6FE 100%);
    color: #7C3AED;
}

.pwd-comparison-card.pwd-card-auto .pwd-comparison-highlight {
    background: #EDE9FE;
    color: #6D28D9;
}

/* Combined Box */
.pwd-combined-box {
    background: linear-gradient(135deg, #DBEAFE 0%, #E0E7FF 100%);
    border: 1px solid #93C5FD;
    border-radius: 16px;
    padding: 32px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.pwd-combined-box i {
    font-size: 3rem;
    color: var(--pwd-primary);
    flex-shrink: 0;
}

.pwd-combined-box h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--pwd-text-primary);
    margin-bottom: 8px;
}

.pwd-combined-box p {
    margin: 0;
    font-size: 0.9375rem;
    color: var(--pwd-text-secondary);
    line-height: 1.6;
}

/* =====================================================
   Penetration Detail Section
   ===================================================== */
.pwd-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.pwd-detail-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--pwd-text-primary);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.pwd-detail-content h3 i {
    color: var(--pwd-primary);
}

.pwd-detail-content > p {
    font-size: 1rem;
    color: var(--pwd-text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

.pwd-feature-list {
    display: grid;
    gap: 12px;
}

.pwd-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--pwd-bg-secondary);
    border-radius: 8px;
    font-size: 0.9375rem;
    color: var(--pwd-text-primary);
}

.pwd-feature-item i {
    color: var(--pwd-success);
    font-size: 1rem;
}

/* Standards Grid */
.pwd-detail-standards {
    background: var(--pwd-bg-card);
    border: 1px solid var(--pwd-border);
    border-radius: 16px;
    padding: 32px;
    box-shadow: var(--pwd-shadow);
}

.pwd-detail-standards h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--pwd-text-primary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pwd-detail-standards h4 i {
    color: var(--pwd-primary);
}

.pwd-standards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.pwd-standard-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: var(--pwd-bg-secondary);
    border-radius: 8px;
    font-size: 0.8125rem;
    color: var(--pwd-text-primary);
}

.pwd-standard-num {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--pwd-primary);
    color: #fff;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

.pwd-standard-item.more {
    background: var(--pwd-gradient-light);
    justify-content: center;
    color: var(--pwd-primary);
    font-weight: 600;
}

/* =====================================================
   Web Scan Tool Section
   ===================================================== */
.pwd-tool-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.pwd-tool-logo {
    background: linear-gradient(135deg, #1E40AF 0%, #4338CA 100%);
    padding: 24px 32px;
    border-radius: 12px;
    display: inline-block;
    margin-bottom: 24px;
}

.pwd-tool-logo img {
    height: 40px;
}

.pwd-tool-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--pwd-text-primary);
    margin-bottom: 8px;
}

.pwd-tool-subtitle {
    font-size: 1rem;
    color: var(--pwd-text-muted);
    margin-bottom: 16px;
}

.pwd-tool-desc {
    font-size: 1rem;
    color: var(--pwd-text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
}

.pwd-tool-features {
    display: grid;
    gap: 16px;
    margin-bottom: 24px;
}

.pwd-tool-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    background: var(--pwd-bg-card);
    border-radius: 12px;
    border: 1px solid var(--pwd-border);
}

.pwd-tool-feature i {
    font-size: 1.5rem;
    color: var(--pwd-primary);
    flex-shrink: 0;
}

.pwd-tool-feature h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--pwd-text-primary);
    margin-bottom: 4px;
}

.pwd-tool-feature p {
    font-size: 0.875rem;
    color: var(--pwd-text-secondary);
    margin: 0;
}

.pwd-tool-image {
    position: relative;
    background: var(--pwd-bg-card);
    border: 1px solid var(--pwd-border);
    border-radius: 16px;
    padding: 20px;
    box-shadow: var(--pwd-shadow-lg);
}

.pwd-tool-image img {
    width: 100%;
    border-radius: 8px;
}

.pwd-solution-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--pwd-bg-card);
    border: 1px solid var(--pwd-border);
    border-radius: 8px;
    color: var(--pwd-text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.pwd-solution-link:hover {
    border-color: var(--pwd-primary);
    color: var(--pwd-primary);
    box-shadow: var(--pwd-shadow);
}

/* Scan Standards */
.pwd-scan-standards {
    margin-top: 60px;
    text-align: center;
}

.pwd-scan-standards h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--pwd-text-primary);
    margin-bottom: 24px;
}

.pwd-scan-standards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.pwd-scan-standard {
    background: var(--pwd-bg-card);
    border: 1px solid var(--pwd-border);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.pwd-scan-standard:hover {
    transform: translateY(-4px);
    box-shadow: var(--pwd-shadow-lg);
}

.pwd-scan-standard-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.pwd-scan-standard h5 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--pwd-text-primary);
    margin-bottom: 8px;
}

.pwd-scan-standard p {
    font-size: 0.875rem;
    color: var(--pwd-text-muted);
    margin: 0;
}

/* =====================================================
   Process Timeline
   ===================================================== */
.pwd-timeline {
    position: relative;
    padding: 40px 0;
}

.pwd-timeline::before {
    content: '';
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    width: 75%;
    height: 4px;
    background: var(--pwd-border);
    border-radius: 2px;
}

.pwd-timeline-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}

.pwd-timeline-item {
    text-align: center;
    position: relative;
}

.pwd-timeline-number {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    background: var(--pwd-gradient-primary);
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    position: relative;
    z-index: 2;
}

.pwd-timeline-item:last-child .pwd-timeline-number {
    background: linear-gradient(135deg, #F97316 0%, #EA580C 100%);
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.pwd-timeline-content {
    background: var(--pwd-bg-card);
    border: 1px solid var(--pwd-border);
    border-radius: 12px;
    padding: 24px 16px;
    box-shadow: var(--pwd-shadow-sm);
}

.pwd-timeline-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--pwd-text-primary);
    margin-bottom: 12px;
}

.pwd-timeline-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pwd-timeline-content li {
    font-size: 0.8125rem;
    color: var(--pwd-text-secondary);
    padding: 4px 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.pwd-timeline-content li::before {
    content: '';
    width: 4px;
    height: 4px;
    background: var(--pwd-primary);
    border-radius: 50%;
    flex-shrink: 0;
}

/* Tip Box */
.pwd-tip-box {
    background: linear-gradient(135deg, #DBEAFE 0%, #E0E7FF 100%);
    border: 1px solid #93C5FD;
    border-radius: 12px;
    padding: 24px 32px;
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.pwd-tip-box i {
    font-size: 1.5rem;
    color: var(--pwd-primary);
}

.pwd-tip-box p {
    margin: 0;
    font-size: 0.9375rem;
    color: var(--pwd-text-secondary);
}

/* =====================================================
   Benefits Section
   ===================================================== */
.pwd-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.pwd-benefit-card {
    background: var(--pwd-bg-card);
    border: 1px solid var(--pwd-border);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.pwd-benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--pwd-shadow-lg);
    border-color: var(--pwd-primary-light);
}

.pwd-benefit-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    background: var(--pwd-gradient-light);
    border-radius: 16px;
}

.pwd-benefit-icon i {
    font-size: 1.75rem;
    color: var(--pwd-primary);
}

.pwd-benefit-card h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--pwd-text-primary);
    margin-bottom: 12px;
}

.pwd-benefit-card p {
    font-size: 0.875rem;
    color: var(--pwd-text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* =====================================================
   CTA Section
   ===================================================== */
.pwd-cta {
    background: linear-gradient(135deg, #2563EB 0%, #7C3AED 100%);
    padding: 80px 0;
    text-align: center;
    color: #fff;
}

.pwd-cta h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.pwd-cta p {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.pwd-cta-benefits {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.pwd-cta-benefits span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9375rem;
}

.pwd-cta-benefits i {
    color: #86EFAC;
}

.pwd-btn-white {
    background: #fff;
    color: var(--pwd-primary);
    font-weight: 600;
}

.pwd-btn-white:hover {
    background: #F8FAFC;
    color: var(--pwd-primary-dark);
    transform: translateY(-2px);
}

/* Contact Info */
.pwd-contact-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.pwd-contact-item {
    text-align: center;
}

.pwd-contact-item i {
    font-size: 1.5rem;
    margin-bottom: 12px;
    display: block;
}

.pwd-contact-item a,
.pwd-contact-item span {
    color: #fff;
    font-size: 0.9375rem;
    text-decoration: none;
}

.pwd-contact-item a:hover {
    text-decoration: underline;
}

/* =====================================================
   FAQ Section
   ===================================================== */
.pwd-faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.pwd-faq-item {
    background: var(--pwd-bg-card);
    border: 1px solid var(--pwd-border);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.pwd-faq-item:hover {
    border-color: var(--pwd-primary-light);
}

.pwd-faq-question {
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    background: var(--pwd-bg-secondary);
}

.pwd-faq-question h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--pwd-text-primary);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.pwd-faq-question h4 span {
    color: var(--pwd-primary);
    font-weight: 700;
}

.pwd-faq-question i {
    color: var(--pwd-text-muted);
    transition: transform 0.3s ease;
}

.pwd-faq-item.active .pwd-faq-question i {
    transform: rotate(180deg);
}

.pwd-faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.pwd-faq-item.active .pwd-faq-answer {
    padding: 20px 24px;
    max-height: 300px;
}

.pwd-faq-answer p {
    font-size: 0.9375rem;
    color: var(--pwd-text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* =====================================================
   Responsive Styles
   ===================================================== */
@media (max-width: 1199px) {
    .pwd-hero h1 {
        font-size: 2.75rem;
    }

    .pwd-timeline-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
    }

    .pwd-timeline-content {
        padding: 16px 12px;
    }

    .pwd-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .pwd-section {
        padding: 60px 0;
    }

    .pwd-hero {
        min-height: auto;
        padding: 100px 0 60px;
    }

    .pwd-hero h1 {
        font-size: 2.25rem;
    }

    .pwd-hero-image {
        margin-top: 40px;
    }

    .pwd-comparison-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .pwd-detail-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .pwd-tool-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .pwd-standards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pwd-scan-standards-grid {
        grid-template-columns: 1fr;
    }

    .pwd-timeline::before {
        display: none;
    }

    .pwd-timeline-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .pwd-timeline-item {
        display: flex;
        gap: 20px;
        text-align: left;
    }

    .pwd-timeline-number {
        margin: 0;
        flex-shrink: 0;
    }

    .pwd-timeline-content {
        flex: 1;
    }

    .pwd-contact-info {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .pwd-combined-box {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .pwd-section-header h2 {
        font-size: 1.75rem;
    }

    .pwd-hero h1 {
        font-size: 1.875rem;
    }

    .pwd-hero-subtitle {
        font-size: 1rem;
    }

    .pwd-hero-cta {
        flex-direction: column;
    }

    .pwd-btn {
        width: 100%;
    }

    .pwd-standards-grid {
        grid-template-columns: 1fr;
    }

    .pwd-benefits-grid {
        grid-template-columns: 1fr;
    }

    .pwd-cta h2 {
        font-size: 1.75rem;
    }

    .pwd-cta-benefits {
        flex-direction: column;
        gap: 12px;
    }
}
