/* ==============================================
   HansenCX Corporate Design Variables
   ============================================== */
:root {
    /* HansenCX Corporate Colors */
    --primary-color: #DC0032;
    --primary-dark: #B80000;
    --primary-light: #E6335A;
    --secondary-color: #4d4242;
    --accent-color: #FFFFFF;
    
    /* Neutral Colors */
    --text-primary: #1a1a1a;
    --text-secondary: #666666;
    --text-light: #999999;
    --background: #ffffff;
    --background-light: #f8f9fa;
    --background-gray: #e9ecef;
    --border-color: #dee2e6;
    
    /* Status Colors */
    --success: #28a745;
    --warning: #ffc107;
    --danger: #dc3545;
    --info: #17a2b8;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Modern Effects */
    --glow-sm: 0 0 12px rgba(220, 0, 50, 0.2);
    --glow-md: 0 0 20px rgba(220, 0, 50, 0.3);
    --glow-lg: 0 0 32px rgba(220, 0, 50, 0.4);
}

/* ==============================================
   Reset & Base Styles
   ============================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--text-primary);
    background-color: var(--background);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: var(--spacing-sm);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: var(--spacing-sm);
    font-size: 1.125rem;
    line-height: 1.7;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-fast);
    position: relative;
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

li {
    font-size: 1.125rem;
    line-height: 1.7;
}

/* ==============================================
   Container & Layout
   ============================================== */
.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    width: 100%;
}

@media (min-width: 768px) {
    .container {
        padding: 0 var(--spacing-lg);
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1600px;
        padding: 0 var(--spacing-xl);
    }
}

/* ==============================================
   Navigation
   ============================================== */
.navbar {
    background: #000000;
    border-bottom: 1px solid rgba(220, 0, 50, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: var(--spacing-sm) 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand h1 {
    font-size: 1.5rem;
    color: #FFFFFF;
    margin: 0;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.nav-brand h1 span {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: var(--spacing-lg);
}

.nav-links a {
    font-weight: 500;
    color: #FFFFFF;
    transition: all var(--transition-fast);
    padding: var(--spacing-xs) 0;
    border-bottom: 2px solid transparent;
}

.nav-links a:hover {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.nav-links .nav-highlight {
    background: var(--primary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 1.125rem;
    border-bottom: none;
}

.nav-links .nav-highlight:hover {
    background: var(--primary-dark);
    color: white;
    border-bottom: none;
}

.nav-links .lang-switch {
    padding: 0.5rem 1rem !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: var(--radius-sm) !important;
    font-size: 0.95rem !important;
    font-weight: 500 !important;
}

.nav-links .lang-switch:hover {
    border-color: var(--primary-color) !important;
    background: rgba(220, 0, 50, 0.1) !important;
    color: var(--primary-color) !important;
}

@media (max-width: 768px) {
    .nav-links {
        gap: var(--spacing-sm);
    }
    
    .nav-links a {
        font-size: 1rem;
    }
    
    .nav-links .nav-highlight {
        padding: 0.625rem 1.25rem;
        font-size: 1rem;
    }
    
    .btn {
        font-size: 1.125rem;
        padding: 1rem 2rem;
        min-height: 52px;
    }
    
    .cta-buttons .btn {
        font-size: 1.25rem;
        padding: 1.25rem 2.5rem;
        min-height: 60px;
        width: 100%;
        justify-content: center;
    }
}

/* ==============================================
   Hero Section
   ============================================== */
.hero {
    background: #000000;
    color: white;
    padding: var(--spacing-xxl) 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 600px 400px at 20% 30%, rgba(220, 0, 50, 0.5) 0%, transparent 50%),
        radial-gradient(ellipse 700px 450px at 80% 60%, rgba(184, 0, 0, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse 500px 350px at 50% 80%, rgba(220, 0, 50, 0.3) 0%, transparent 50%);
    opacity: 0.8;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(45deg, transparent 48%, rgba(220, 0, 50, 0.1) 48%, rgba(220, 0, 50, 0.1) 52%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(220, 0, 50, 0.1) 48%, rgba(220, 0, 50, 0.1) 52%, transparent 52%);
    background-size: 60px 60px;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    width: 100%;
}

.hero-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--radius-xl);
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: var(--spacing-md);
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 800;
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: clamp(1rem, 3.5vw, 1.5rem);
    line-height: 1.6;
    opacity: 0.95;
    margin-bottom: var(--spacing-xl);
}

.hero-stats {
    display: flex;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.stat {
    display: flex;
    flex-direction: column;
    min-width: 120px;
    white-space: nowrap;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: var(--spacing-xs);
}

.stat-label {
    font-size: 1.125rem;
    opacity: 0.9;
    white-space: normal;
}

/* Logo next to role/company in start hero */
.start-role {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.start-role-logo {
    height: 36px;
    width: auto;
    display: inline-block;
    vertical-align: middle;
}

.role-sep {
    color: #FFFFFF;
    opacity: 0.9;
    margin-left: 0.25rem;
    margin-right: 0.25rem;
}

.role-company {
    color: #FFFFFF;
    opacity: 0.95;
}

@media (max-width: 1024px) {
    .hero-content {
        padding: 0 var(--spacing-md);
    }
}

@media (max-width: 768px) {
    .hero {
        padding: var(--spacing-xl) 0;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: var(--spacing-md);
    }
}

@media (max-width: 480px) {
    .hero {
        padding: var(--spacing-lg) 0;
    }
    
    .hero-title {
        font-size: 1.5rem;
        margin-bottom: var(--spacing-sm);
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: var(--spacing-lg);
    }
    
    .hero-stats {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
}

/* ==============================================
   Buttons
   ============================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 1.25rem 2.5rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 1.25rem;
    text-decoration: none;
    transition: all var(--transition-normal);
    cursor: pointer;
    border: 2px solid transparent;
    min-height: 56px;
    line-height: 1.4;
}

.btn-primary {
    background: linear-gradient(90deg, #DC0032, #B80000);
    color: white !important;
    box-shadow: var(--shadow-md), var(--glow-sm);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0.2), rgba(255,255,255,0));
    transition: left var(--transition-normal);
}

.btn-primary:hover {
    background: linear-gradient(90deg, #B80000, #DC0032);
    color: white !important;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg), var(--glow-md);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-color);
}

/* ==============================================
   Section Styles
   ============================================== */
section {
    padding: var(--spacing-xxl) 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
}

.section-intro {
    text-align: center;
    font-size: 1.125rem;
    color: #444444;
    max-width: 800px;
    margin: 0 auto var(--spacing-xl);
    line-height: 1.7;
}

/* ==============================================
   Key Messages Section
   ============================================== */
.key-messages {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.messages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.message-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg) var(--spacing-xl);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    border: 2px solid transparent;
    background-image: linear-gradient(white, white), linear-gradient(135deg, #DC0032, #E6335A);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.message-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: var(--shadow-lg), var(--glow-md);
    background-image: linear-gradient(white, white), linear-gradient(135deg, #E6335A, #B80000);
}

.message-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
}

.message-icon i {
    font-size: 1.75rem;
    color: white;
}

.message-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
    line-height: 1.4;
}

.message-card p {
    color: #333333;
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.message-data {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--border-color);
}

.message-data span {
    font-size: 1.125rem;
    color: #333333;
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-weight: 600;
}

.message-data i {
    color: var(--success);
}

/* ==============================================
   PESTEL Section
   ============================================== */
.pestel-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.pestel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

@supports (grid-template-columns: repeat(auto-fit, minmax(380px, 1fr))) {
    .pestel-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1200px) {
    .pestel-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pestel-grid {
        grid-template-columns: 1fr;
    }
}

.pestel-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-normal);
}

.pestel-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg), var(--glow-sm);
    transform: translateY(-6px) scale(1.01);
}

.pestel-header {
    background: #000000;
    border-left: 4px solid var(--primary-color);
    color: white;
    padding: var(--spacing-lg) var(--spacing-lg);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.pestel-header i {
    font-size: 1.75rem;
}

.pestel-header h3 {
    margin: 0;
    font-size: 1.5rem;
}

.pestel-content {
    padding: var(--spacing-lg) var(--spacing-lg);
}

.pestel-content h4 {
    color: var(--primary-color);
    font-size: 1.125rem;
    font-weight: 700;
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-xs);
}

.pestel-content h4:first-child {
    margin-top: 0;
}

.pestel-content p {
    color: #333333;
    font-size: 1.0625rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

/* Color variations for PESTEL cards */
.pestel-card[data-dimension="political"] .pestel-header {
    border-left-color: #DC0032;
}

.pestel-card[data-dimension="economic"] .pestel-header {
    border-left-color: #B80000;
}

.pestel-card[data-dimension="social"] .pestel-header {
    border-left-color: #E6335A;
}

.pestel-card[data-dimension="technological"] .pestel-header {
    border-left-color: #DC0032;
}

.pestel-card[data-dimension="environmental"] .pestel-header {
    border-left-color: #B80000;
}

.pestel-card[data-dimension="legal"] .pestel-header {
    border-left-color: #E6335A;
}

/* ==============================================
   Regulatory Section
   ============================================== */
.regulatory-section {
    background: var(--background-light);
}

.regulatory-accordion {
    margin-top: var(--spacing-xl);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.accordion-item {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.accordion-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md) var(--spacing-lg);
    cursor: pointer;
    transition: background var(--transition-fast);
    border-bottom: 2px solid transparent;
    background-image: linear-gradient(white, white), linear-gradient(90deg, #DC0032, #E6335A);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.accordion-header:hover {
    background: var(--background-light);
}

.accordion-icon {
    width: 50px;
    height: 50px;
    background: #000000;
    border: 2px solid var(--primary-color);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.accordion-icon i {
    color: var(--primary-color) !important;
    font-size: 1.5rem;
}

.accordion-title {
    flex: 1;
}

.accordion-title h3 {
    margin: 0 0 var(--spacing-xs);
    font-size: 1.5rem;
}

.accordion-tag {
    display: inline-block;
    background: var(--background-light);
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
}

.accordion-toggle {
    font-size: 1.25rem;
    color: #444444;
    transition: transform var(--transition-normal);
}

.accordion-item.active .accordion-toggle {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow);
}

.accordion-item.active .accordion-content {
    max-height: 3000px;
}

.regulation-detail {
    padding: 0 var(--spacing-lg) var(--spacing-lg);
}

.regulation-detail h4 {
    color: var(--text-primary);
    font-size: 1.25rem;
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
}

.regulation-detail h4:first-child {
    margin-top: 0;
}

.regulation-detail p {
    color: #333333;
    font-size: 1.0625rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.regulation-detail ul {
    margin-bottom: var(--spacing-md);
}

.regulation-detail ul li {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
    color: #333333;
    font-size: 1.0625rem;
    line-height: 1.8;
}

.regulation-detail ul li i {
    color: var(--success);
    margin-top: 4px;
}

.regulation-box {
    border-left: 4px solid;
    padding: var(--spacing-md);
    margin: var(--spacing-md) 0;
    border-radius: var(--radius-md);
}

.regulation-box h5 {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-sm);
    font-size: 1.1rem;
}

.regulation-box p {
    margin-bottom: 0;
}

.regulation-box.hurdle {
    background: #fff3cd;
    border-color: var(--warning);
}

.regulation-box.hurdle h5 {
    color: #856404;
}

.regulation-box.deadline {
    background: #f8d7da;
    border-color: var(--danger);
}

.regulation-box.deadline h5 {
    color: #721c24;
}

.regulation-box.advantage {
    background: #d4edda;
    border-color: var(--success);
}

.regulation-box.advantage h5 {
    color: #155724;
}

.regulation-box.example {
    background: #d1ecf1;
    border-color: var(--info);
}

.regulation-box.example h5 {
    color: #0c5460;
}

/* ==============================================
   Strategy Section
   ============================================== */
.strategy-section {
    background: white;
}

.strategy-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto var(--spacing-xl);
}

.strategy-intro p {
    font-size: 1.125rem;
    color: #333333;
    line-height: 1.8;
}

.strategy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.strategy-pillar {
    background: var(--background-light);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg) var(--spacing-xl);
    position: relative;
    border: 2px solid transparent;
    transition: all var(--transition-normal);
}

.strategy-pillar:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.pillar-number {
    position: absolute;
    top: -20px;
    left: var(--spacing-lg);
    width: 50px;
    height: 50px;
    background: #000000;
    border: 3px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    box-shadow: var(--shadow-md);
}

.strategy-pillar h3 {
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-sm);
    font-size: 1.25rem;
}

.strategy-pillar p {
    color: #333333;
    font-size: 1.0625rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.pillar-question {
    background: white;
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary-color);
    margin-top: var(--spacing-md);
}

.pillar-question strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
}

.strategy-impact {
    background: #000000;
    border: 2px solid var(--primary-color);
    color: white;
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    margin-top: var(--spacing-xl);
}

.strategy-impact h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: var(--spacing-xl);
    font-weight: 800;
    line-height: 1.3;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
}

.impact-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.impact-item i {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
    opacity: 0.9;
    color: #DC0032;
}

.impact-item h4 {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-sm);
    font-weight: 700;
    line-height: 1.4;
}

.impact-item p {
    font-size: 1rem;
    opacity: 0.85;
    line-height: 1.6;
}

/* Responsive für Tablet */
@media (max-width: 768px) {
    .strategy-impact {
        padding: var(--spacing-lg);
        margin-top: var(--spacing-lg);
    }

    .strategy-impact h3 {
        font-size: 1.5rem;
        margin-bottom: var(--spacing-lg);
    }

    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }

    .impact-item i {
        font-size: 2rem;
        margin-bottom: var(--spacing-sm);
    }

    .impact-item h4 {
        font-size: 1rem;
        margin-bottom: var(--spacing-xs);
    }

    .impact-item p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
}

/* Responsive für Mobile Phones */
@media (max-width: 480px) {
    .strategy-impact {
        padding: var(--spacing-md);
        margin-top: var(--spacing-md);
        border: 1px solid var(--primary-color);
    }

    .strategy-impact h3 {
        font-size: 1.25rem;
        margin-bottom: var(--spacing-md);
    }

    .impact-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }

    .impact-item {
        padding: var(--spacing-md);
        border: 1px solid rgba(220, 0, 50, 0.2);
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, 0.02);
    }

    .impact-item i {
        font-size: 1.75rem;
        margin-bottom: var(--spacing-sm);
    }

    .impact-item h4 {
        font-size: 0.95rem;
        margin-bottom: var(--spacing-xs);
    }

    .impact-item p {
        font-size: 0.85rem;
        line-height: 1.4;
        text-align: center;
    }
}


/* ==============================================
   CTA Section
   ============================================== */
.cta-section {
    background: var(--background-light);
    text-align: center;
}

.cta-content {
    max-width: 900px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 1.75rem;
    margin-bottom: var(--spacing-md);
}

.cta-content > p {
    font-size: 1rem;
    color: #333333;
    line-height: 1.8;
    margin-bottom: var(--spacing-xl);
}

.cta-questions {
    background: #f5f5f5;
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
    box-shadow: var(--shadow-md);
    border: 2px solid #e0e0e0;
}

.cta-questions h3 {
    font-size: 1.75rem;
    margin-bottom: var(--spacing-lg);
    color: var(--text-primary);
    font-weight: 700;
    text-align: center;
}

.questions-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    text-align: left;
}

.question-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    background: #f0f0f0;
    border-radius: var(--radius-md);
    border: 1px solid #e0e0e0;
}

.question-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 2px;
}

.question-item p {
    margin: 0;
    color: #353031;
    line-height: 1.7;
    font-size: 1.125rem;
    font-weight: 600;
}

.cta-decision {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.decision-box {
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg) var(--spacing-xl);
    text-align: left;
}

.decision-box h4 {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
}

.decision-box p {
    margin: 0;
    line-height: 1.7;
    font-size: 1.125rem;
    font-weight: 500;
}

.decision-box.success {
    background: #e8f5e9;
    border: 3px solid var(--success);
}

.decision-box.success h4 {
    color: #1a771a;
}

.decision-box.success p {
    color: #1a771a;
    font-size: 1.125rem;
    font-weight: 600;
}

.decision-box.warning {
    background: #ffebee;
    border: 3px solid var(--danger);
}

.decision-box.warning h4 {
    color: #DC0032;
}

.decision-box.warning p {
    color: #DC0032;
    font-size: 1.125rem;
    font-weight: 600;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
    max-width: 600px;
    margin: 0 auto;
}

.cta-buttons .btn {
    font-size: 1.125rem;
    padding: 1rem 2rem;
    min-height: 52px;
    font-weight: 700;
    line-height: 1.4;
    justify-content: center;
}

.cta-buttons .btn-primary {
    background: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
}

.cta-buttons .btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

.cta-buttons .btn-secondary {
    background: rgb(241, 238, 238);
    color: var(--text-primary);
    border: 2px solid var(--text-primary);
    font-weight: 700;
}

.cta-buttons .btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* ==============================================
   Example Box & Methods
   ============================================== */
.example-box,
.method-box,
.principle-box,
.anchor-evidence,
.anchor-style {
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    margin-top: var(--spacing-md);
}

.example-box {
    background: #fff3cd;
    border-left: 4px solid var(--warning);
}

.example-box ul {
    list-style: disc;
    margin-left: var(--spacing-lg);
    margin-top: var(--spacing-sm);
}

.example-box ul li {
    margin-bottom: var(--spacing-sm);
}

.example-box ul ul {
    margin-top: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
    margin-left: var(--spacing-lg);
}

.example-box ul ul li {
    margin-bottom: var(--spacing-xs);
}

.method-box {
    background: #f0f8ff;
    border-left: 4px solid var(--info);
}

.principle-box {
    background: #f5f5f5;
    border-left: 4px solid #cccccc;
}

.anchor-evidence {
    background: #f9f9f9;
    border-left: 4px solid #999999;
}

.anchor-style {
    background: #fffbea;
    border-left: 4px solid #ffb84d;
}

/* ==============================================
   Footer
   ============================================== */
.footer {
    background: #000000;
    border-top: 1px solid rgba(220, 0, 50, 0.3);
    color: white;
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer-section h4 {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-md);
    color: white;
}

.footer-section p,
.footer-section ul li {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    font-size: 1.0625rem;
}

.footer-section ul {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: color var(--transition-fast);
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.0625rem;
    margin: 0;
}

/* ==============================================
   Responsive Design
   ============================================== */
@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.25rem; }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    section {
        padding: var(--spacing-xl) 0;
    }
    
    .pestel-grid,
    .messages-grid,
    .strategy-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        gap: var(--spacing-md);
    }
    
    .cta-decision {
        grid-template-columns: 1fr;
    }
    
    .btn {
        font-size: 1.125rem !important;
        padding: 1rem 2rem !important;
        min-height: 52px !important;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: var(--spacing-md);
    }
    
    .cta-buttons .btn {
        font-size: 1.25rem !important;
        padding: 1.25rem 2.5rem !important;
        min-height: 60px !important;
        width: 100%;
    }
}

/* ==============================================
   Animations
   ============================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* ==============================================
   Utility Classes
   ============================================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-sm { margin-top: var(--spacing-sm); }
.mt-md { margin-top: var(--spacing-md); }
.mt-lg { margin-top: var(--spacing-lg); }
.mt-xl { margin-top: var(--spacing-xl); }

.mb-sm { margin-bottom: var(--spacing-sm); }
.mb-md { margin-bottom: var(--spacing-md); }
.mb-lg { margin-bottom: var(--spacing-lg); }
.mb-xl { margin-bottom: var(--spacing-xl); }

.hidden { display: none; }

/* ==============================================
   Modern Animations & Effects
   ============================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

/* Stagger effect for grid items */
.message-card,
.pestel-card,
.strategy-pillar {
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.messages-grid .message-card:nth-child(1) { animation-delay: 0.1s; }
.messages-grid .message-card:nth-child(2) { animation-delay: 0.2s; }
.messages-grid .message-card:nth-child(3) { animation-delay: 0.3s; }

.pestel-grid .pestel-card:nth-child(1) { animation-delay: 0.1s; }
.pestel-grid .pestel-card:nth-child(2) { animation-delay: 0.2s; }
.pestel-grid .pestel-card:nth-child(3) { animation-delay: 0.3s; }
.pestel-grid .pestel-card:nth-child(4) { animation-delay: 0.4s; }
.pestel-grid .pestel-card:nth-child(5) { animation-delay: 0.5s; }
.pestel-grid .pestel-card:nth-child(6) { animation-delay: 0.6s; }

/* ==============================================
   Executive Summary Section
   ============================================== */
.executive-summary {
    background: linear-gradient(180deg, #1a1a1a 0%, #2a2a2a 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.executive-summary::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(220, 0, 50, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.executive-summary::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(220, 0, 50, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.executive-title {
    position: relative;
    z-index: 1;
    text-align: center;
    margin-bottom: var(--spacing-xxl);
}

.executive-title h2 {
    font-size: clamp(2rem, 5vw, 2.75rem);
    color: white;
    margin-bottom: var(--spacing-md);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.executive-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.executive-pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    position: relative;
    z-index: 1;
    margin-top: var(--spacing-xxl);
}

@media (min-width: 1024px) {
    .executive-pillars {
        grid-template-columns: repeat(3, 1fr);
    }
}

.executive-pillar {
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(220, 0, 50, 0.4);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl) var(--spacing-lg);
    backdrop-filter: blur(10px);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.executive-pillar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #DC0032, #E6335A);
}

.executive-pillar:hover {
    border-color: rgba(220, 0, 50, 0.8);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 32px rgba(220, 0, 50, 0.2);
    transform: translateY(-4px);
}

.executive-pillar-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #DC0032, #B80000);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-lg);
    font-size: 1.75rem;
    color: white;
    box-shadow: 0 0 20px rgba(220, 0, 50, 0.3);
}

.executive-pillar h3 {
    font-size: 1.375rem;
    color: white;
    margin-bottom: var(--spacing-md);
    font-weight: 700;
    letter-spacing: -0.01em;
}

.executive-pillar p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .executive-pillar {
        padding: var(--spacing-lg);
    }
    
    .executive-pillar-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .executive-pillar h3 {
        font-size: 1.25rem;
    }
}

