/* ============================================
   ULTRA-MODERN CORPORATE PAGE DESIGN
   Premium UI/UX for Corporate & Dynamic Pages
   Matching Coaches & Clubs Page Style
============================================= */

:root {
    --corp-primary: #002b1b;
    --corp-secondary: #00d9a3;
    --corp-accent: #00ffc8;
    --corp-gold: #fbbf24;
    --corp-text-dark: #1a1a1a;
    --corp-text-light: #666666;
    --corp-bg-light: #f8fafb;
    --corp-white: #ffffff;
    --corp-border: #e5e7eb;
    --corp-shadow: 0 10px 30px rgba(0, 43, 27, 0.08);
    --corp-shadow-hover: 0 25px 60px rgba(0, 43, 27, 0.15);
}

/* ============================================
   CORPORATE HERO SECTION
============================================= */

.corporate-hero-ultra {
    position: relative;
    padding: 140px 0 120px;
    background: linear-gradient(135deg, #f8fafb 0%, #ffffff 50%, #f1f5f9 100%);
    overflow: hidden;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.corp-hero-bg-pattern {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.04;
}

.corp-pattern-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--corp-secondary), var(--corp-accent));
}

.corp-circle-1 {
    width: 500px;
    height: 500px;
    top: -250px;
    right: -250px;
    animation: corpFloatPattern 15s ease-in-out infinite;
}

.corp-circle-2 {
    width: 350px;
    height: 350px;
    bottom: -175px;
    left: -175px;
    animation: corpFloatPattern 12s ease-in-out infinite reverse;
}

.corp-circle-3 {
    width: 200px;
    height: 200px;
    top: 35%;
    left: 55%;
    animation: corpFloatPattern 18s ease-in-out infinite;
}

.corp-pattern-dots {
    position: absolute;
    top: 18%;
    right: 12%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.corp-pattern-dot {
    width: 14px;
    height: 14px;
    background: var(--corp-secondary);
    border-radius: 50%;
    animation: corpDotPulse 3s ease-in-out infinite;
}

.corp-pattern-dot:nth-child(2) { animation-delay: 0.6s; }
.corp-pattern-dot:nth-child(3) { animation-delay: 1.2s; }
.corp-pattern-dot:nth-child(4) { animation-delay: 1.8s; }

@keyframes corpFloatPattern {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }
    33% {
        transform: translateY(-35px) rotate(120deg) scale(1.1);
    }
    66% {
        transform: translateY(25px) rotate(240deg) scale(0.9);
    }
}

@keyframes corpDotPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.7);
        opacity: 1;
    }
}

/* Hero Content */
.corp-hero-content {
    padding-right: 50px;
}

.corp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, rgba(0, 217, 163, 0.12), rgba(0, 255, 200, 0.08));
    border: 2px solid rgba(0, 217, 163, 0.25);
    border-radius: 60px;
    color: var(--corp-secondary);
    font-weight: 800;
    font-size: 14px;
    margin-bottom: 32px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    overflow: hidden;
}

.corp-hero-badge::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(0, 217, 163, 0.2), transparent);
    transform: translateX(-100%);
    animation: corpBadgeShine 3s ease-in-out infinite;
}

@keyframes corpBadgeShine {
    0% { transform: translateX(-100%); }
    50%, 100% { transform: translateX(100%); }
}

.corp-hero-badge i {
    font-size: 18px;
}

.corp-hero-title {
    font-size: 62px;
    font-weight: 900;
    line-height: 1.1;
    color: var(--corp-text-dark);
    margin-bottom: 28px;
    letter-spacing: -1px;
}

.corp-title-highlight {
    background: linear-gradient(135deg, var(--corp-secondary), var(--corp-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.corp-title-highlight::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--corp-secondary), var(--corp-accent));
    border-radius: 3px;
    animation: corpUnderlineGlow 3s ease-in-out infinite;
}

@keyframes corpUnderlineGlow {
    0%, 100% {
        box-shadow: 0 0 0 rgba(0, 217, 163, 0);
    }
    50% {
        box-shadow: 0 0 25px rgba(0, 217, 163, 0.7);
    }
}

.corp-hero-description {
    font-size: 20px;
    line-height: 1.8;
    color: var(--corp-text-light);
    margin-bottom: 45px;
    max-width: 540px;
}

.corp-hero-stats {
    display: flex;
    align-items: center;
    gap: 36px;
    margin-bottom: 45px;
}

.corp-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.corp-stat-number {
    font-size: 42px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--corp-primary), var(--corp-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.corp-stat-label {
    font-size: 14px;
    color: var(--corp-text-light);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 700;
}

.corp-stat-divider {
    width: 3px;
    height: 55px;
    background: linear-gradient(to bottom, transparent, var(--corp-secondary), transparent);
    border-radius: 2px;
}

.corp-hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.corp-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 22px 44px;
    background: linear-gradient(135deg, var(--corp-primary), var(--corp-secondary));
    color: white;
    text-decoration: none;
    border-radius: 60px;
    font-weight: 800;
    font-size: 16px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 43, 27, 0.35);
    border: none;
}

.corp-btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--corp-secondary), var(--corp-accent));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.corp-btn-primary:hover::before {
    opacity: 1;
}

.corp-btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(0, 43, 27, 0.45);
    color: white;
}

.corp-btn-primary span,
.corp-btn-primary i {
    position: relative;
    z-index: 2;
}

.corp-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 22px 44px;
    background: transparent;
    color: var(--corp-text-dark);
    text-decoration: none;
    border-radius: 60px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.4s ease;
    border: 2px solid rgba(0, 43, 27, 0.15);
}

.corp-btn-secondary:hover {
    background: rgba(0, 43, 27, 0.05);
    border-color: var(--corp-secondary);
    color: var(--corp-primary);
    transform: translateY(-3px);
}

/* Hero Visual */
.corp-hero-visual {
    position: relative;
    height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.corp-visual-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.corp-hero-main-visual {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 220px;
    height: 220px;
    background: linear-gradient(135deg, var(--corp-primary), var(--corp-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 90px;
    color: white;
    box-shadow: var(--corp-shadow-hover);
    z-index: 3;
}

.corp-visual-glow {
    position: absolute;
    inset: -35px;
    background: inherit;
    border-radius: inherit;
    opacity: 0.4;
    filter: blur(45px);
    animation: corpVisualGlow 4s ease-in-out infinite;
}

@keyframes corpVisualGlow {
    0%, 100% {
        transform: scale(1);
        opacity: 0.4;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.6;
    }
}

/* Visual Rings */
.corp-visual-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.corp-ring {
    position: absolute;
    border: 3px solid rgba(0, 217, 163, 0.3);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.corp-ring-1 {
    width: 300px;
    height: 300px;
    animation: corpRingRotate 20s linear infinite;
    border-style: dashed;
}

.corp-ring-2 {
    width: 380px;
    height: 380px;
    animation: corpRingRotate 28s linear infinite reverse;
    border-color: rgba(0, 255, 200, 0.25);
}

.corp-ring-3 {
    width: 460px;
    height: 460px;
    animation: corpRingRotate 35s linear infinite;
    border-color: rgba(0, 43, 27, 0.12);
    border-width: 2px;
}

@keyframes corpRingRotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Floating Achievement Cards */
.corp-floating-achievement {
    position: absolute;
    background: var(--corp-white);
    border-radius: 22px;
    padding: 22px;
    box-shadow: var(--corp-shadow);
    display: flex;
    align-items: center;
    gap: 18px;
    min-width: 180px;
    border: 2px solid rgba(0, 217, 163, 0.12);
    backdrop-filter: blur(20px);
    z-index: 5;
}

.corp-achievement-1 {
    top: 10%;
    left: 0%;
    animation: corpFloatAchievement1 7s ease-in-out infinite;
}

.corp-achievement-2 {
    top: 55%;
    right: 0%;
    animation: corpFloatAchievement2 9s ease-in-out infinite;
}

.corp-achievement-3 {
    bottom: 10%;
    left: 10%;
    animation: corpFloatAchievement3 8s ease-in-out infinite;
}

@keyframes corpFloatAchievement1 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-25px) rotate(4deg); }
}

@keyframes corpFloatAchievement2 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(-4deg); }
}

@keyframes corpFloatAchievement3 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-18px) rotate(3deg); }
}

.corp-achievement-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--corp-secondary), var(--corp-accent));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: 0 8px 25px rgba(0, 217, 163, 0.3);
}

.corp-achievement-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.corp-achievement-number {
    font-size: 24px;
    font-weight: 900;
    color: var(--corp-text-dark);
    line-height: 1;
}

.corp-achievement-label {
    font-size: 12px;
    color: var(--corp-text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 700;
}

/* ============================================
   CORPORATE CONTENT SECTION
============================================= */

.corporate-content-ultra {
    padding: 100px 0;
    background: var(--corp-white);
    position: relative;
}

.corporate-content-ultra::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--corp-secondary), transparent);
}

/* Section Header */
.corp-section-header {
    text-align: center;
    margin-bottom: 70px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.corp-header-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 32px;
}

.corp-decoration-line {
    flex: 1;
    height: 2px;
    max-width: 160px;
    background: linear-gradient(90deg, transparent, var(--corp-secondary), transparent);
    position: relative;
}

.corp-decoration-line::before,
.corp-decoration-line::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--corp-secondary);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.corp-decoration-line.left::after {
    right: 0;
}

.corp-decoration-line.right::before {
    left: 0;
}

.corp-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 16px 36px;
    background: linear-gradient(135deg, var(--corp-primary), var(--corp-secondary));
    border-radius: 50px;
    color: white;
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 12px 35px rgba(0, 43, 27, 0.35);
    position: relative;
    overflow: hidden;
}

.corp-section-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    animation: corpBadgeShine 3s ease-in-out infinite;
}

.corp-section-badge i {
    font-size: 20px;
}

.corp-section-title {
    font-size: 50px;
    font-weight: 900;
    color: var(--corp-text-dark);
    margin-bottom: 20px;
    line-height: 1.15;
}

.corp-section-description {
    font-size: 18px;
    color: var(--corp-text-light);
    line-height: 1.8;
    max-width: 680px;
    margin: 0 auto;
}

/* ============================================
   CORPORATE SERVICES/FEATURES GRID
============================================= */

.corp-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.corp-service-card {
    position: relative;
    background: var(--corp-white);
    border-radius: 28px;
    padding: 45px 35px;
    box-shadow: var(--corp-shadow);
    border: 2px solid var(--corp-border);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    overflow: hidden;
}

.corp-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--corp-secondary), var(--corp-accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.corp-service-card:hover::before {
    transform: scaleX(1);
}

.corp-service-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--corp-shadow-hover);
    border-color: var(--corp-secondary);
}

.corp-service-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(0, 217, 163, 0.12), rgba(0, 255, 200, 0.08));
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    transition: all 0.4s ease;
    position: relative;
}

.corp-service-icon i {
    font-size: 42px;
    background: linear-gradient(135deg, var(--corp-secondary), var(--corp-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.corp-service-card:hover .corp-service-icon {
    background: linear-gradient(135deg, var(--corp-secondary), var(--corp-accent));
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 217, 163, 0.35);
}

.corp-service-card:hover .corp-service-icon i {
    -webkit-text-fill-color: white;
    background: none;
}

.corp-service-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--corp-text-dark);
    margin-bottom: 16px;
    line-height: 1.3;
}

.corp-service-description {
    font-size: 16px;
    color: var(--corp-text-light);
    line-height: 1.75;
    margin-bottom: 24px;
}

.corp-service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
}

.corp-service-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 15px;
    color: var(--corp-text-dark);
    font-weight: 600;
    border-bottom: 1px solid rgba(0, 43, 27, 0.08);
}

.corp-service-features li:last-child {
    border-bottom: none;
}

.corp-service-features li i {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, rgba(0, 217, 163, 0.15), rgba(0, 255, 200, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--corp-secondary);
}

.corp-service-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 15px;
    color: var(--corp-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.corp-service-link:hover {
    color: var(--corp-primary);
    gap: 16px;
}

.corp-service-link i {
    transition: transform 0.3s ease;
}

.corp-service-link:hover i {
    transform: translateX(5px);
}

/* Card Glow Effect */
.corp-card-glow {
    position: absolute;
    inset: -4px;
    background: linear-gradient(135deg, var(--corp-secondary), var(--corp-accent));
    border-radius: 32px;
    opacity: 0;
    filter: blur(25px);
    transition: opacity 0.5s ease;
    z-index: -1;
}

.corp-service-card:hover .corp-card-glow {
    opacity: 0.25;
}

/* ============================================
   CORPORATE BENEFITS SECTION
============================================= */

.corp-benefits-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--corp-bg-light) 0%, #ffffff 100%);
    position: relative;
}

.corp-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.corp-benefit-card {
    text-align: center;
    padding: 40px 25px;
    background: var(--corp-white);
    border-radius: 24px;
    box-shadow: var(--corp-shadow);
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.corp-benefit-card:hover {
    transform: translateY(-10px);
    border-color: var(--corp-secondary);
    box-shadow: var(--corp-shadow-hover);
}

.corp-benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--corp-secondary), var(--corp-accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 36px;
    color: white;
    box-shadow: 0 12px 35px rgba(0, 217, 163, 0.35);
    transition: all 0.4s ease;
}

.corp-benefit-card:hover .corp-benefit-icon {
    transform: scale(1.1) rotate(5deg);
}

.corp-benefit-number {
    font-size: 38px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--corp-primary), var(--corp-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    line-height: 1;
}

.corp-benefit-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--corp-text-dark);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

/* ============================================
   CORPORATE CTA SECTION
============================================= */

.corp-cta-section {
    position: relative;
    padding: 140px 0;
    background: linear-gradient(135deg, var(--corp-primary) 0%, #003d2a 100%);
    overflow: hidden;
}

.corp-cta-bg-pattern {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.1;
}

.corp-cta-wave {
    position: absolute;
    width: 200%;
    height: 250px;
    background: linear-gradient(90deg, transparent, var(--corp-secondary), transparent);
    border-radius: 50%;
}

.corp-cta-wave-1 {
    top: -125px;
    left: -50%;
    animation: corpWaveFloat 22s ease-in-out infinite;
}

.corp-cta-wave-2 {
    bottom: -125px;
    right: -50%;
    animation: corpWaveFloat 28s ease-in-out infinite reverse;
}

@keyframes corpWaveFloat {
    0%, 100% {
        transform: translateX(0) rotate(0deg);
    }
    50% {
        transform: translateX(120px) rotate(5deg);
    }
}

.corp-cta-content {
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
    color: white;
    position: relative;
    z-index: 2;
}

.corp-cta-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--corp-secondary), var(--corp-accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    margin: 0 auto 45px;
    box-shadow: 0 25px 70px rgba(0, 217, 163, 0.4);
    animation: corpCtaFloat 5s ease-in-out infinite;
}

@keyframes corpCtaFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.corp-cta-title {
    font-size: 54px;
    font-weight: 900;
    margin-bottom: 28px;
    line-height: 1.15;
}

.corp-cta-description {
    font-size: 20px;
    line-height: 1.75;
    margin-bottom: 55px;
    opacity: 0.92;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.corp-cta-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.corp-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 22px 44px;
    border-radius: 60px;
    font-weight: 800;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.corp-cta-btn.primary {
    background: linear-gradient(135deg, var(--corp-secondary), var(--corp-accent));
    color: var(--corp-primary);
    box-shadow: 0 18px 50px rgba(0, 217, 163, 0.45);
}

.corp-cta-btn.secondary {
    background: rgba(255, 255, 255, 0.12);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(20px);
}

.corp-cta-btn:hover {
    transform: translateY(-5px);
}

.corp-cta-btn.primary:hover {
    box-shadow: 0 28px 70px rgba(0, 217, 163, 0.65);
    color: var(--corp-primary);
}

.corp-cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.55);
    color: white;
}

/* ============================================
   DYNAMIC PAGE CONTENT STYLING
============================================= */

.dynamic-page-content-area {
    padding: 0 !important;
}

.dynamic-page-content-wrap {
    max-width: 100%;
}

/* Override default paragraph styles */
.dynamic-page-content-wrap p {
    font-size: 18px;
    line-height: 1.85;
    color: var(--corp-text-light);
    margin-bottom: 28px;
}

.dynamic-page-content-wrap h2,
.dynamic-page-content-wrap h3 {
    font-weight: 800;
    color: var(--corp-text-dark);
    margin-bottom: 24px;
    margin-top: 50px;
    line-height: 1.3;
}

.dynamic-page-content-wrap h2 {
    font-size: 42px;
}

.dynamic-page-content-wrap h3 {
    font-size: 32px;
}

.dynamic-page-content-wrap h4 {
    font-size: 24px;
    font-weight: 700;
    color: var(--corp-text-dark);
    margin-bottom: 16px;
    margin-top: 35px;
}

.dynamic-page-content-wrap ul,
.dynamic-page-content-wrap ol {
    padding-left: 0;
    margin-bottom: 30px;
    list-style: none;
}

.dynamic-page-content-wrap ul li,
.dynamic-page-content-wrap ol li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 14px;
    font-size: 17px;
    color: var(--corp-text-light);
    line-height: 1.7;
}

.dynamic-page-content-wrap ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 10px;
    height: 10px;
    background: linear-gradient(135deg, var(--corp-secondary), var(--corp-accent));
    border-radius: 50%;
}

.dynamic-page-content-wrap strong {
    color: var(--corp-text-dark);
    font-weight: 700;
}

.dynamic-page-content-wrap a {
    color: var(--corp-secondary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.dynamic-page-content-wrap a:hover {
    color: var(--corp-primary);
}

.dynamic-page-content-wrap img {
    border-radius: 20px;
    margin: 30px 0;
    box-shadow: var(--corp-shadow);
}

/* ============================================
   RESPONSIVE DESIGN
============================================= */

@media (max-width: 1199px) {
    .corp-hero-title {
        font-size: 52px;
    }
    
    .corp-section-title {
        font-size: 42px;
    }
    
    .corp-cta-title {
        font-size: 46px;
    }
    
    .corp-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .corporate-hero-ultra {
        padding: 100px 0 80px;
        min-height: auto;
    }
    
    .corp-hero-content {
        padding-right: 0;
        margin-bottom: 70px;
    }
    
    .corp-hero-stats {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .corp-hero-visual {
        height: 400px;
    }
    
    .corp-services-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .corp-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 767px) {
    .corporate-hero-ultra {
        padding: 90px 0 70px;
    }
    
    .corp-hero-title {
        font-size: 38px;
    }
    
    .corp-hero-description {
        font-size: 18px;
    }
    
    .corp-hero-stats {
        flex-direction: column;
        gap: 22px;
    }
    
    .corp-stat-divider {
        width: 55px;
        height: 3px;
    }
    
    .corp-hero-visual {
        height: 320px;
    }
    
    .corp-section-title {
        font-size: 34px;
    }
    
    .corp-decoration-line {
        display: none;
    }
    
    .corp-services-grid {
        grid-template-columns: 1fr;
    }
    
    .corp-benefits-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .corp-floating-achievement {
        display: none;
    }
    
    .corp-cta-title {
        font-size: 34px;
    }
    
    .dynamic-page-content-wrap h2 {
        font-size: 32px;
    }
    
    .dynamic-page-content-wrap h3 {
        font-size: 26px;
    }
}

@media (max-width: 575px) {
    .corp-hero-visual {
        height: 260px;
    }
    
    .corp-hero-main-visual {
        width: 150px;
        height: 150px;
        font-size: 60px;
    }
    
    .corp-section-title {
        font-size: 30px;
    }
    
    .corp-section-badge {
        padding: 14px 28px;
        font-size: 12px;
    }
    
    .corp-benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .corp-benefit-card {
        padding: 30px 20px;
    }
    
    .corp-cta-icon {
        width: 100px;
        height: 100px;
        font-size: 42px;
    }
}

/* ============================================
   ACCESSIBILITY & PERFORMANCE
============================================= */

@media (prefers-reduced-motion: reduce) {
    .corp-pattern-circle,
    .corp-pattern-dot,
    .corp-visual-glow,
    .corp-floating-achievement,
    .corp-ring,
    .corp-cta-wave,
    .corp-cta-icon,
    .corp-hero-badge::before,
    .corp-section-badge::before {
        animation: none !important;
    }
    
    .corp-btn-primary:hover,
    .corp-btn-secondary:hover,
    .corp-cta-btn:hover,
    .corp-service-card:hover,
    .corp-benefit-card:hover {
        transform: none !important;
    }
}

/* Focus styles for accessibility */
.corp-btn-primary:focus,
.corp-btn-secondary:focus,
.corp-cta-btn:focus,
.corp-service-link:focus {
    outline: 3px solid rgba(0, 217, 163, 0.55);
    outline-offset: 3px;
}

