* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #4A90E2;
    --secondary-color: #7B68EE;
    --accent-color: #FF6B9D;
    --success-color: #4CAF50;
    --warning-color: #FF9800;
    --danger-color: #F44336;
    --text-dark: #2C3E50;
    --text-light: #6C757D;
    --bg-light: #F8F9FA;
    --bg-white: #FFFFFF;
    --border-color: #E0E0E0;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    color: var(--text-dark);
    overflow: hidden;
}

/* Stepper Navigation */
.stepper-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--bg-white);
    box-shadow: var(--shadow);
    z-index: 1000;
    padding: 1rem 2rem;
}

.stepper {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.stepper::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 5%;
    right: 5%;
    height: 2px;
    background: var(--border-color);
    z-index: -1;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
    position: relative;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-light);
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    color: var(--text-light);
    transition: all 0.3s ease;
    z-index: 1;
}

.step-label {
    font-size: 0.75rem;
    color: var(--text-light);
    text-align: center;
    transition: all 0.3s ease;
    font-weight: 500;
}

.step.active .step-number {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-color: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.step.active .step-label {
    color: var(--primary-color);
    font-weight: 600;
}

.step.completed .step-number {
    background: var(--success-color);
    border-color: var(--success-color);
    color: white;
}

.step.completed .step-number::after {
    content: '✓';
}

.step:hover .step-number {
    transform: scale(1.05);
}

/* Slides Container */
.slides-container {
    margin-top: 100px;
    height: calc(100vh - 180px);
    position: relative;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    padding: 2rem;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.slide.prev {
    transform: translateX(-100px);
}

.slide-content {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--bg-white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    min-height: 100%;
}

/* Slide 1: Cover */
.cover-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.logo-container {
    margin-bottom: 2rem;
}

.psychula-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.logo-icon {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    animation: pulse 2s ease-in-out infinite;
    backdrop-filter: blur(10px);
}

.psych-symbol {
    font-size: 5rem;
    font-weight: 300;
    color: white;
    font-family: Georgia, serif;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.psychula-logo h1 {
    font-size: 4rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: -1px;
}

.subtitle {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.tagline p {
    font-size: 1.3rem;
    font-weight: 300;
    opacity: 0.9;
    margin-bottom: 3rem;
}

.heart-shape {
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
    transform: rotate(45deg);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: rotate(45deg) translateY(0);
    }
    50% {
        transform: rotate(45deg) translateY(-20px);
    }
}

/* Slide Titles */
.slide-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Slide 2: Profile */
.content-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.profile-section {
    display: flex;
    gap: 2rem;
    align-items: start;
}

.profile-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-lg);
}

.profile-initial {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    letter-spacing: 2px;
}

.profile-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.detail-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow);
}

.icon-badge {
    min-width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.icon-badge.experience {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.icon-badge.audience {
    background: linear-gradient(135deg, #f093fb, #f5576c);
}

.icon-badge.location {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.icon-badge.hours {
    background: linear-gradient(135deg, #43e97b, #38f9d7);
}

.icon-badge.tone {
    background: linear-gradient(135deg, #fa709a, #fee140);
}

.detail-item .text {
    font-size: 1.1rem;
    color: var(--text-dark);
}

.insight-box {
    padding: 2rem;
    background: linear-gradient(135deg, #667eea15, #764ba215);
    border-left: 4px solid var(--primary-color);
    border-radius: 12px;
    line-height: 1.6;
}

.insight-label {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: var(--primary-color);
    color: white;
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: 6px;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.insight-box p {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin: 0;
}

/* Slide 3: Current State */
.current-state {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.website-card {
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.website-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.website-card.problem {
    background: linear-gradient(135deg, #ff6b9d15, #ff980015);
    border: 2px solid var(--danger-color);
}

.website-card.success {
    background: linear-gradient(135deg, #4caf5015, #4a90e215);
    border: 2px solid var(--success-color);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.status-badge {
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 1px;
    color: white;
}

.status-badge.web {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.status-badge.google {
    background: linear-gradient(135deg, #4285F4, #34A853);
}

.card-header h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
}

.issues-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.issues-list li {
    font-size: 1rem;
    padding: 0.5rem 0;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.marker {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.issues-list li.positive .marker {
    background: var(--success-color);
    color: white;
}

.issues-list li.negative .marker {
    background: var(--danger-color);
    color: white;
}

.marker.success {
    background: var(--success-color);
    color: white;
}

.highlight {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.conclusion-box {
    padding: 2rem;
    background: linear-gradient(135deg, #4a90e215, #7b68ee15);
    border-radius: 12px;
    border: 2px solid var(--primary-color);
}

.conclusion-label {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: var(--primary-color);
    color: white;
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: 6px;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.conclusion-box p {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.6;
}

/* Slide 4: Vision */
.vision-statement {
    text-align: center;
    margin-bottom: 3rem;
}

.vision-statement blockquote {
    font-size: 1.8rem;
    font-style: italic;
    color: var(--primary-color);
    font-weight: 500;
    line-height: 1.6;
    padding: 2rem;
    background: linear-gradient(135deg, #667eea10, #764ba210);
    border-radius: 16px;
    position: relative;
}

.vision-statement blockquote::before {
    content: '"';
    font-size: 4rem;
    position: absolute;
    top: -10px;
    left: 20px;
    color: var(--primary-color);
    opacity: 0.3;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.pillar {
    text-align: center;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.pillar:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    background: white;
}

.pillar-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.pillar h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.pillar p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
}

.question-box {
    padding: 2rem;
    background: linear-gradient(135deg, #ff6b9d15, #7b68ee15);
    border-radius: 12px;
    border: 2px dashed var(--secondary-color);
    display: flex;
    align-items: start;
    gap: 1.5rem;
}

.question-label {
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.question-box p {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.6;
    flex: 1;
}

/* Slide 5: The Idea */
.idea-hero {
    text-align: center;
    margin-bottom: 3rem;
}

.idea-tagline h3 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-weight: 600;
}

.brand-name-showcase {
    padding: 3rem;
    background: linear-gradient(135deg, #667eea15, #764ba215);
    border-radius: 20px;
    margin-bottom: 2rem;
}

.brand-large {
    font-size: 5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.brand-breakdown {
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.part-psych {
    color: var(--primary-color);
    font-weight: 700;
}

.plus {
    color: var(--text-light);
    font-size: 1.5rem;
}

.part-oula {
    color: var(--secondary-color);
    font-weight: 700;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.benefit-card {
    padding: 2rem;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    transition: all 0.3s ease;
}

.benefit-card.global::before {
    background: linear-gradient(180deg, #667eea, #764ba2);
}

.benefit-card.memorable::before {
    background: linear-gradient(180deg, #f093fb, #f5576c);
}

.benefit-card.accessible::before {
    background: linear-gradient(180deg, #4facfe, #00f2fe);
}

.benefit-card.emotional::before {
    background: linear-gradient(180deg, #43e97b, #38f9d7);
}

.benefit-card:hover {
    border-color: transparent;
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.benefit-card:hover::before {
    width: 100%;
    opacity: 0.1;
}

.benefit-label {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    background: var(--text-dark);
    color: white;
    font-weight: 700;
    font-size: 0.7rem;
    border-radius: 6px;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.benefit-card p {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0;
}

.definition-box {
    padding: 2.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.definition-symbol {
    font-size: 3rem;
    font-weight: 300;
    opacity: 0.9;
}

.definition-box p {
    font-size: 1.3rem;
    margin: 0;
    line-height: 1.6;
}

/* Slide 6: Value Table */
.subtitle-text {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.value-table {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.table-row {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.table-row.header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
}

.table-row:not(.header) {
    background: var(--bg-light);
}

.table-row:not(.header):hover {
    background: white;
    box-shadow: var(--shadow);
    transform: translateX(10px);
}

.table-cell {
    display: flex;
    align-items: center;
}

/* Tooltips */
.tooltip {
    position: relative;
    color: var(--primary-color);
    font-weight: 600;
    cursor: help;
    border-bottom: 2px dotted var(--primary-color);
    transition: all 0.3s ease;
}

.tooltip:hover {
    color: var(--secondary-color);
    border-bottom-color: var(--secondary-color);
}

.tooltip-popup {
    position: fixed;
    background: var(--text-dark);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-size: 0.9rem;
    max-width: 300px;
    box-shadow: var(--shadow-lg);
    z-index: 10000;
    pointer-events: none;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    line-height: 1.5;
}

.tooltip-popup.show {
    opacity: 1;
    transform: translateY(0);
}

.tooltip-popup::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 6px solid var(--text-dark);
}

/* Navigation Controls */
.navigation-controls {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-white);
    box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

.nav-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.nav-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.slide-counter {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* Responsive Design */
@media (max-width: 768px) {
    .stepper-container {
        padding: 0.5rem 1rem;
    }

    .stepper {
        overflow-x: auto;
        justify-content: flex-start;
        gap: 1rem;
    }

    .step-label {
        display: none;
    }

    .slide-content {
        padding: 1.5rem;
    }

    .slide-title {
        font-size: 1.8rem;
    }

    .psychula-logo h1 {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1.3rem;
    }

    .current-state {
        grid-template-columns: 1fr;
    }

    .pillars-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .table-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .brand-large {
        font-size: 3rem;
    }

    .navigation-controls {
        padding: 0.8rem 1rem;
    }

    .btn-text {
        display: none;
    }
}

/* Scrollbar Styling */
.slide::-webkit-scrollbar {
    width: 8px;
}

.slide::-webkit-scrollbar-track {
    background: transparent;
}

.slide::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

.slide::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* ===== NEW SLIDES STYLES ===== */

/* Slide 3: Target Audience */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.persona-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border-left: 4px solid;
}

.persona-card.primary {
    border-left-color: #667eea;
}

.persona-card.secondary {
    border-left-color: #f093fb;
}

.persona-card.tertiary {
    border-left-color: #4facfe;
}

.persona-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.persona-header {
    margin-bottom: 1.5rem;
}

.persona-badge {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.75rem;
    color: white;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.persona-badge.primary-badge {
    background: #667eea;
}

.persona-badge.secondary-badge {
    background: #f093fb;
}

.persona-badge.tertiary-badge {
    background: #4facfe;
}

.persona-header h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin: 0;
}

.persona-body {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.persona-detail strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.persona-detail ul {
    margin: 0.5rem 0 0 1.2rem;
    line-height: 1.6;
}

.persona-detail ul li {
    margin-bottom: 0.3rem;
}

.brand-connection-box {
    padding: 2rem;
    background: linear-gradient(135deg, #667eea15, #764ba215);
    border-radius: 16px;
    border: 2px solid var(--primary-color);
}

.connection-label {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--primary-color);
    color: white;
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: 6px;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.brand-connection-box p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin: 0;
}

/* Slide 5: Competitive Analysis */
.competitive-intro {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.2rem;
    color: var(--text-light);
}

.competitive-analysis {
    margin-bottom: 2rem;
}

.comp-table-header,
.comp-table-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 0.5rem;
}

.comp-table-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
}

.comp-table-row {
    background: var(--bg-light);
    transition: all 0.3s ease;
}

.comp-table-row:hover {
    background: white;
    box-shadow: var(--shadow);
    transform: translateX(10px);
}

.comp-cell {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.highlight-col {
    background: rgba(102, 126, 234, 0.1);
    border-left: 3px solid var(--primary-color);
    padding-left: 1rem;
}

.advantage {
    color: var(--success-color);
    font-size: 1.3rem;
    font-weight: 700;
}

.disadvantage {
    color: var(--danger-color);
    font-size: 1.3rem;
    font-weight: 700;
}

.neutral {
    color: var(--warning-color);
    font-size: 1.3rem;
    font-weight: 700;
}

.competitive-edge-box {
    padding: 2rem;
    background: linear-gradient(135deg, #43e97b15, #38f9d715);
    border-radius: 16px;
    border: 2px solid var(--success-color);
}

.edge-label {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--success-color);
    color: white;
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: 6px;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.competitive-edge-box p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin: 0;
}

/* Slide 9: Visual Identity */
.visual-identity-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.visual-identity-section h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.color-palette-box,
.typography-box,
.tone-voice-box,
.imagery-box {
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 16px;
}

.color-swatches {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
}

.swatch {
    text-align: center;
}

.color-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    box-shadow: var(--shadow);
}

.swatch p {
    font-size: 0.9rem;
    color: var(--text-dark);
}

.font-examples {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.font-item {
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.font-demo {
    margin-bottom: 1rem;
}

.tone-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.tone-item {
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.tone-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.tone-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--primary-color);
    color: white;
    font-weight: 700;
    font-size: 0.8rem;
    border-radius: 6px;
    margin-bottom: 1rem;
}

.tone-item p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 0;
}

.imagery-guidelines {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.guideline-item {
    display: flex;
    align-items: start;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 12px;
}

.guideline-check {
    color: var(--success-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.guideline-cross {
    color: var(--danger-color);
    font-size: 1.5rem;
    font-weight: 700;
}

/* Slide 10: Implementation Roadmap */
.roadmap-phase {
    margin-bottom: 3rem;
}

.phase-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
}

.phase-number {
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    font-weight: 700;
    border-radius: 50px;
    font-size: 0.9rem;
}

.phase-header h3 {
    flex: 1;
    font-size: 1.8rem;
    color: var(--text-dark);
    margin: 0;
}

.timeline {
    padding: 0.5rem 1rem;
    background: var(--bg-light);
    border-radius: 8px;
    font-weight: 600;
    color: var(--text-light);
}

.phase-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.action-item {
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border-left: 4px solid;
}

.action-item.priority-high {
    border-left-color: var(--danger-color);
}

.action-item.priority-medium {
    border-left-color: var(--warning-color);
}

.priority-badge {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.75rem;
    color: white;
    margin-bottom: 1rem;
}

.priority-badge.high {
    background: var(--danger-color);
}

.priority-badge.medium {
    background: var(--warning-color);
}

.action-details strong {
    display: block;
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
}

.action-details ul {
    margin: 0.8rem 0 0.8rem 1.5rem;
    line-height: 1.8;
}

.action-details ul li {
    margin-bottom: 0.5rem;
}

.cost-note {
    font-style: italic;
    color: var(--text-light);
    margin-top: 0.8rem;
}

.reasoning-box {
    margin-top: 1rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.reasoning-label {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: var(--primary-color);
    color: white;
    font-weight: 700;
    font-size: 0.7rem;
    border-radius: 4px;
    margin-bottom: 0.8rem;
}

.reasoning-box ul {
    margin: 0.5rem 0 0 1.2rem;
    line-height: 1.6;
}

/* Slide 11: Digital Ecosystem */
.ecosystem-overview {
    margin-bottom: 2rem;
}

.intro-text {
    font-size: 1.2rem;
    color: var(--text-light);
    text-align: center;
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.platform-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow);
    border-top: 4px solid;
    transition: all 0.3s ease;
}

.platform-card.instagram {
    border-top-color: #E4405F;
}

.platform-card.facebook {
    border-top-color: #1877F2;
}

.platform-card.google {
    border-top-color: #4285F4;
}

.platform-card.linkedin {
    border-top-color: #0A66C2;
}

.platform-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.platform-header {
    margin-bottom: 1.5rem;
}

.platform-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--text-dark);
    color: white;
    font-weight: 700;
    font-size: 0.8rem;
    border-radius: 6px;
    margin-bottom: 0.5rem;
}

.handle {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 600;
    margin: 0;
}

.platform-content {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.content-type ul,
.content-language {
    font-size: 0.95rem;
    line-height: 1.6;
}

.content-type ul {
    margin: 0.5rem 0 0 1.2rem;
}

.language-consistency-box {
    padding: 2rem;
    background: linear-gradient(135deg, #667eea15, #764ba215);
    border-radius: 16px;
}

.consistency-label {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--primary-color);
    color: white;
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: 6px;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.language-examples {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
}

.example-item {
    padding: 1rem;
    background: white;
    border-radius: 12px;
    border-left: 4px solid;
}

.example-item:has(.example-bad) {
    border-left-color: var(--danger-color);
}

.example-item:has(.example-good) {
    border-left-color: var(--success-color);
}

.example-bad,
.example-good {
    display: block;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.example-bad {
    color: var(--danger-color);
}

.example-good {
    color: var(--success-color);
}

.language-note {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-dark);
    margin: 0;
}

/* Slide 12: Content Strategy */
.content-pillars h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.pillars-content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.content-pillar {
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.content-pillar:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    background: white;
}

.content-pillar h4 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin: 1rem 0;
}

.content-pillar p {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.content-pillar ul {
    margin: 0 0 0 1.2rem;
    line-height: 1.8;
}

.content-calendar-preview {
    margin-bottom: 2rem;
}

.content-calendar-preview h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.calendar-week {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.calendar-day {
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border-top: 3px solid var(--primary-color);
}

.calendar-day strong {
    display: block;
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
}

.post-type {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 600;
    margin: 0.5rem 0;
}

.calendar-day p:last-child {
    font-size: 0.95rem;
    color: var(--text-dark);
    margin: 0;
}

.content-tools-box {
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 16px;
}

.content-tools-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.tools-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.tool-item {
    padding: 1rem;
    background: white;
    border-radius: 8px;
    font-size: 0.95rem;
}

/* Slide 13: Success Metrics */
.google-impact-section h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.impact-comparison {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.impact-before,
.impact-after {
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
}

.impact-before {
    background: linear-gradient(135deg, #ff6b9d15, #f4433615);
    border: 2px solid var(--danger-color);
}

.impact-after {
    background: linear-gradient(135deg, #43e97b15, #38f9d715);
    border: 2px solid var(--success-color);
}

.impact-label {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    color: white;
    margin-bottom: 1.5rem;
}

.impact-label.before {
    background: var(--danger-color);
}

.impact-label.after {
    background: var(--success-color);
}

.impact-metrics {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.metric-item {
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    border-left: 4px solid;
}

.metric-item.negative {
    border-left-color: var(--danger-color);
}

.metric-item.positive {
    border-left-color: var(--success-color);
}

.metric-icon {
    font-size: 2rem;
    margin-right: 0.5rem;
}

.metric-item strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.metric-item p {
    margin: 0;
    line-height: 1.6;
    color: var(--text-light);
}

.seo-keywords-box {
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 16px;
    margin-bottom: 3rem;
}

.seo-keywords-box h4 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.keywords-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.keyword-group {
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    border-top: 3px solid;
}

.keyword-group.primary-keywords {
    border-top-color: #667eea;
}

.keyword-group.secondary-keywords {
    border-top-color: #f093fb;
}

.keyword-group.long-tail {
    border-top-color: #4facfe;
}

.group-label {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    background: var(--text-dark);
    color: white;
    font-weight: 700;
    font-size: 0.75rem;
    border-radius: 6px;
    margin-bottom: 1rem;
}

.keyword-group ul {
    margin: 0 0 0 1.2rem;
    line-height: 1.8;
}

.kpis-section h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.kpis-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.kpi-card {
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-color);
}

.kpi-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.kpi-number {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.kpi-label {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.kpi-timeline {
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
}

/* Slide 14: Domain Acquisition */
.urgency-box {
    padding: 2rem;
    border-radius: 16px;
    margin-bottom: 3rem;
    border: 3px solid var(--danger-color);
    background: linear-gradient(135deg, #ff6b9d15, #f4433615);
}

.urgency-badge {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background: var(--danger-color);
    color: white;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.urgency-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.urgency-reasons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.reason-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
}

.reason-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.reason-content strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.reason-content p {
    margin: 0;
    line-height: 1.6;
    color: var(--text-light);
}

.domain-purchase-plan h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.domains-to-buy {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.domain-item {
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow);
    border-left: 4px solid;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1.5rem;
    align-items: center;
}

.domain-item.must-have {
    border-left-color: var(--danger-color);
}

.domain-item.recommended {
    border-left-color: var(--warning-color);
}

.domain-item.optional {
    border-left-color: var(--success-color);
}

.domain-priority {
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.8rem;
    color: white;
}

.domain-item.must-have .domain-priority {
    background: var(--danger-color);
}

.domain-item.recommended .domain-priority {
    background: var(--warning-color);
}

.domain-item.optional .domain-priority {
    background: var(--success-color);
}

.domain-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: monospace;
}

.domain-details {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.domain-details p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

.domain-status {
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
}

.domain-status.available {
    background: var(--success-color);
    color: white;
}

.total-cost-box {
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 16px;
    margin-bottom: 2rem;
}

.total-cost-box h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.cost-breakdown {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.cost-row {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    background: white;
    border-radius: 8px;
}

.cost-row.total {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    font-size: 1.2rem;
}

.next-steps-domain-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.action-checklist {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.checklist-item {
    display: flex;
    align-items: start;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 12px;
}

.checkbox {
    font-size: 1.5rem;
    color: var(--text-light);
}

/* Slide 15: Action Plan */
.immediate-actions h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.action-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.timeline-item {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow);
    border-left: 4px solid;
}

.timeline-item.urgent {
    border-left-color: var(--danger-color);
}

.timeline-item.important {
    border-left-color: var(--warning-color);
}

.timeline-marker {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.timeline-content {
    flex: 1;
}

.timeline-content h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.timeline-content ul {
    margin: 0 0 1rem 1.2rem;
    line-height: 1.8;
}

.responsibility {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    margin: 0;
}

.next-30-days h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.weeks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.week-card {
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.week-header {
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.week-badge {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

.week-header h4 {
    margin: 0;
    font-size: 1.3rem;
}

.week-card ul {
    padding: 1.5rem;
    margin: 0 0 0 1.2rem;
    line-height: 1.8;
}

.resources-needed h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.resources-table {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 1rem;
}

.resource-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 1rem;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.resource-row.header-row {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    font-weight: 700;
}

.resource-row.total-row {
    background: var(--bg-light);
    font-size: 1.2rem;
    border-bottom: none;
}

.budget-note {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.6;
}

/* Slide 16: Final / Closure */
.decision-framework h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.decisions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.decision-card {
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow);
    text-align: center;
    border-top: 4px solid;
}

.decision-card.approved {
    border-top-color: var(--success-color);
}

.decision-card.pending {
    border-top-color: var(--warning-color);
}

.decision-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.decision-card.approved .decision-icon {
    background: var(--success-color);
    color: white;
}

.decision-card.pending .decision-icon {
    background: var(--warning-color);
    color: white;
}

.decision-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.why-now-box {
    margin-bottom: 3rem;
}

.why-now-box h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.reason-card {
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow);
    text-align: center;
}

.reason-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.reason-card h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.final-pitch-box {
    padding: 3rem;
    background: linear-gradient(135deg, #667eea15, #764ba215);
    border-radius: 20px;
    margin-bottom: 3rem;
}

.final-pitch-box h3 {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 2rem;
}

.final-quote {
    font-size: 1.3rem;
    font-style: italic;
    text-align: center;
    line-height: 1.8;
    color: var(--primary-color);
    font-weight: 500;
}

.contact-next-steps {
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 16px;
    margin-bottom: 2rem;
}

.contact-next-steps h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.contact-option {
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    text-align: center;
}

.contact-option strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.contact-option p {
    margin: 0;
    color: var(--text-light);
    line-height: 1.6;
}

.thank-you-box {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 20px;
}

.thank-you-box h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.thank-you-tagline {
    font-size: 1.5rem;
    font-weight: 300;
    margin: 0;
}

/* Mobile Responsive for New Slides */
@media (max-width: 768px) {
    .audience-grid {
        grid-template-columns: 1fr;
    }

    .comp-table-header,
    .comp-table-row {
        grid-template-columns: 1fr;
    }

    .impact-comparison {
        grid-template-columns: 1fr;
    }

    .platforms-grid {
        grid-template-columns: 1fr;
    }

    .weeks-grid {
        grid-template-columns: 1fr;
    }

    .decisions-grid,
    .reasons-grid {
        grid-template-columns: 1fr;
    }

    .domain-item {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .domain-name {
        font-size: 1.3rem;
    }

    .resource-row {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .stepper {
        gap: 0.5rem;
    }

    .step-number {
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
    }
}

