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

/* Cairo Font for all paragraphs */
p {
    font-family: 'Cairo', sans-serif;
    font-size: 1.2rem;
    line-height: 1.7;
}

:root {
    --primary-color: #3c93ff;
    --primary-dark: #102641;
    --secondary-color: #3c93ff;
    --accent-color: #a6e7fd;
    --text-primary: #33383d;
    --text-secondary: #73859b;
    --text-light: #73859b;
    --bg-primary: #f8f8f8;
    --bg-secondary: #ffffff;
    --bg-dark: #000000;
    --gradient-primary: linear-gradient(135deg, #102641 0%, #3c93ff 50%, #a6e7fd 100%);
    --gradient-secondary: linear-gradient(135deg, #3c93ff 0%, #a6e7fd 100%);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cairo', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    direction: rtl;
    text-align: right;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 900;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.875rem;
}

h4 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo h2 {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    font-size: 1.5rem;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    z-index: -2;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}


.quote-line {
    display: block;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.quote-line.highlight {
    background: linear-gradient(45deg, #a6e7fd, #3c93ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.6;
    color: #a6e7fd;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.cta-primary, .cta-secondary {
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-family: inherit;
}

.cta-primary {
    background: var(--gradient-secondary);
    color: white;
    box-shadow: var(--shadow-lg);
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.cta-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.cta-primary.large {
    padding: 1.25rem 2.5rem;
    font-size: 1.25rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: #a6e7fd;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Problem Section - Vision Style Grid */
.problem-section {
    padding: 6rem 0;
    background: white;
}

/* Creative 3D Story Narrative */
.creative-story-narrative {
    max-width: 1000px;
    margin: 4rem auto;
    padding: 1.5rem;
    perspective: 1500px;
    transform-style: preserve-3d;
}

.story-card-3d {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem 2rem;
    background: white;
    border-radius: 18px;
    box-shadow: 
        0 15px 40px rgba(60, 147, 255, 0.12),
        0 6px 20px rgba(0, 0, 0, 0.08);
    transform-style: preserve-3d;
    opacity: 0;
    transform: translateX(100px) rotateY(-15deg);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.story-card-3d::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 6px;
    height: 100%;
    background: var(--gradient-primary);
    transform: translateZ(5px);
}

.story-card-3d.visible {
    opacity: 1;
    transform: translateX(0) rotateY(0deg);
}

.story-card-3d:nth-child(even) {
    flex-direction: row-reverse;
    transform: translateX(-100px) rotateY(15deg);
}

.story-card-3d:nth-child(even).visible {
    transform: translateX(0) rotateY(0deg);
}

.story-card-3d:hover {
    transform: translateY(-10px) rotateY(-2deg) scale(1.02);
    box-shadow: 
        0 35px 80px rgba(60, 147, 255, 0.18),
        0 15px 40px rgba(0, 0, 0, 0.12);
}

.story-card-3d:nth-child(even):hover {
    transform: translateY(-10px) rotateY(2deg) scale(1.02);
}

/* Smaller card-5 */
.card-5 {
    padding: 1.2rem 1.8rem;
    gap: 1.2rem;
}

.card-image-wrapper {
    flex-shrink: 0;
    position: relative;
    transform-style: preserve-3d;
}

.card-image-3d {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.2rem;
    color: white;
    position: relative;
    transform-style: preserve-3d;
    transform: translateZ(20px);
    transition: transform 0.5s ease;
}

.card-image-3d::before {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    background: var(--gradient-primary);
    z-index: -1;
    opacity: 0.3;
    filter: blur(20px);
    transform: translateZ(-10px);
}

.card-1 .card-image-3d {
    background: linear-gradient(135deg, #3c93ff 0%, #74b9ff 100%);
    box-shadow: 
        0 20px 50px rgba(60, 147, 255, 0.4),
        inset 0 -10px 30px rgba(16, 38, 65, 0.3),
        inset 0 10px 30px rgba(166, 231, 253, 0.3);
}

.card-2 .card-image-3d {
    background: linear-gradient(135deg, #ff6b6b 0%, #ffa8a8 100%);
    box-shadow: 
        0 18px 45px rgba(255, 107, 107, 0.4),
        inset 0 -8px 25px rgba(200, 50, 50, 0.3),
        inset 0 8px 25px rgba(255, 200, 200, 0.3);
    width: 95px;
    height: 95px;
    font-size: 2.8rem;
}

.card-2-content {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.card-3 .card-image-3d {
    background: linear-gradient(135deg, #fdcb6e 0%, #ffeaa7 100%);
    box-shadow: 
        0 20px 50px rgba(253, 203, 110, 0.4),
        inset 0 -10px 30px rgba(200, 150, 50, 0.3),
        inset 0 10px 30px rgba(255, 235, 180, 0.3);
}

.card-4 .card-image-3d {
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
    box-shadow: 
        0 20px 50px rgba(108, 92, 231, 0.4),
        inset 0 -10px 30px rgba(70, 60, 180, 0.3),
        inset 0 10px 30px rgba(180, 170, 255, 0.3);
}

.card-5 .card-image-3d {
    background: var(--gradient-primary);
    box-shadow: 
        0 20px 50px rgba(60, 147, 255, 0.5),
        inset 0 -8px 25px rgba(16, 38, 65, 0.4),
        inset 0 8px 25px rgba(166, 231, 253, 0.4);
    width: 100px;
    height: 100px;
    font-size: 3rem;
}

.story-card-3d:hover .card-image-3d {
    transform: translateZ(30px) rotateY(15deg) scale(1.1);
}

.card-content-3d {
    flex: 1;
    text-align: right;
    position: relative;
    z-index: 2;
    transform: translateZ(10px);
}

.story-question {
    font-size: 1.6rem;
    font-weight: 900;
    line-height: 1.5;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    letter-spacing: -0.3px;
    position: relative;
}

.story-question::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 0;
    width: 120px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
    box-shadow: 0 4px 12px rgba(60, 147, 255, 0.4);
}

.story-text {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--text-primary);
    margin: 0;
    font-weight: 400;
}

.story-text.emotional-text {
    font-size: 1.8rem;
    font-style: italic;
    color: var(--text-secondary);
    padding: 0;
    margin: 0;
    position: relative;
    line-height: 1.8;
    white-space: normal;
}

.story-text.revelation-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 0.5rem;
}

.story-text.program-line {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 0.6rem;
    font-weight: 400;
}

.story-text.program-line strong {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    font-size: 1.3rem;
}

.story-text.tagline-line {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.6;
}

/* Solution text in one line with original colors */
.story-text.solution-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-primary);
    margin: 0;
}

.story-text.solution-text strong {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    font-size: 1.2rem;
}

/* Smaller text for card-5 solution box */
.card-5 .story-text.solution-text {
    font-size: 1rem;
    line-height: 1.7;
}

.card-5 .story-text.solution-text strong {
    font-size: 1.05rem;
}

.highlight-badge {
    color: var(--primary-color);
    font-weight: 800;
    background: linear-gradient(135deg, rgba(60, 147, 255, 0.15), rgba(166, 231, 253, 0.2));
    padding: 0.4rem 1rem;
    border-radius: 10px;
    display: inline-block;
    box-shadow: 
        0 4px 12px rgba(60, 147, 255, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(60, 147, 255, 0.3);
    transform: translateZ(15px);
    margin: 0 0.3rem;
}

.highlight-strong {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    font-size: 1.15em;
    display: inline-block;
    position: relative;
}

.highlight-strong::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, rgba(60, 147, 255, 0.3), rgba(166, 231, 253, 0.4), rgba(60, 147, 255, 0.3));
    border-radius: 3px;
    z-index: -1;
}

.solution-box {
    padding: 1.2rem 1.5rem;
    background: linear-gradient(135deg, rgba(60, 147, 255, 0.05), rgba(166, 231, 253, 0.08));
    border-radius: 16px;
    border: 2px solid rgba(60, 147, 255, 0.15);
    box-shadow: 
        inset 0 2px 8px rgba(60, 147, 255, 0.1),
        0 8px 25px rgba(60, 147, 255, 0.15);
}

.solution-box::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 16px 16px 0 0;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.problem-card {
    background: var(--bg-secondary);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

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

.problem-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 0.8rem;
    color: white;
    font-weight: 600;
    text-align: center;
    line-height: 1.1;
    position: relative;
}

.problem-icon span {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(-15deg);
    font-size: 0.7rem;
    letter-spacing: 1px;
}

.problem-card h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.problem-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.problem-emotion {
    background: var(--gradient-primary);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(60, 147, 255, 0.3);
    transition: var(--transition);
}

.problem-card:hover .problem-emotion {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(60, 147, 255, 0.4);
}

/* Reality Section Creative */
.reality-section-creative {
    margin-top: 4rem;
    position: relative;
    z-index: 1;
}

.reality-container {
    background: white;
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(60, 147, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.reality-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.reality-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    text-align: center;
    justify-content: center;
}

.reality-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 4px 12px rgba(60, 147, 255, 0.3);
}

.reality-header h3 {
    color: var(--text-primary);
    font-size: 2rem;
    margin: 0;
}

.reality-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.reality-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8f8f8, #ffffff);
    border-radius: 15px;
    border-right: 4px solid #3c93ff;
    transition: var(--transition);
}

.reality-item:hover {
    transform: translateX(-5px);
    box-shadow: 0 8px 20px rgba(60, 147, 255, 0.15);
}

.reality-number {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.reality-content {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    flex: 1;
}

.reality-content i {
    color: #3c93ff;
    font-size: 1.2rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.reality-content p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
    font-size: 1.1rem;
}

.reality-message-creative {
    position: relative;
    background: var(--gradient-primary);
    border-radius: 20px;
    padding: 2.5rem;
    color: white;
    overflow: hidden;
}

.message-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
}

.message-pattern {
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="white"/></svg>');
    background-size: 20px 20px;
}

.message-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.message-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.message-text strong {
    display: block;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #a6e7fd;
}

.message-text p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Vision Section */
.vision-section {
    padding: 6rem 0;
    background: white;
}

.vision-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.vision-card {
    background: var(--bg-secondary);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

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

.vision-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.vision-card h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.vision-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Story Section */
.story-section {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

.story-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.story-image {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.story-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: var(--gradient-primary);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.1;
}

.story-image img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    border: 3px solid white;
}

.story-image img:hover {
    transform: scale(1.1);
    box-shadow: 0 20px 40px rgba(60, 147, 255, 0.4);
}

.story-text {
    background: white;
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    margin-bottom: 3rem;
    position: relative;
    max-width: 800px;
}

.story-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.story-text .section-header {
    margin-bottom: 2rem;
}

.story-text .section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.story-text .section-header h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 0;
}

.story-paragraph {
    margin-bottom: 2rem;
}

.story-paragraph p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.story-turning-point {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin: 2rem 0;
    border-right: 4px solid var(--primary-color);
}

.story-turning-point h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.story-quote {
    text-align: center;
    margin: 2rem 0;
}

.story-quote blockquote {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    padding: 1.5rem;
    background: rgba(99, 102, 241, 0.1);
    border-radius: var(--border-radius);
    border-right: 4px solid var(--primary-color);
}

.journey-section {
    background: white;
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    margin-bottom: 3rem;
}

.journey-section h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.journey-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.journey-card {
    text-align: center;
    padding: 2rem;
    background: var(--bg-secondary);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.journey-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.journey-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
}

.journey-card h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.journey-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.credentials {
    background: var(--gradient-primary);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    position: relative;
    overflow: hidden;
    margin-top: 3rem;
}

.credentials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.credentials h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: white;
    font-size: 2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.credentials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.credential {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.credential::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.credential:hover::before {
    left: 100%;
}

.credential:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.25);
}

.credential i {
    font-size: 2.5rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.credential:hover i {
    transform: scale(1.2) rotate(5deg);
    color: var(--accent-color);
}

.credential span {
    color: white;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.4;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Program Section */
.program-section {
    padding: 6rem 0;
    background: white;
}

.program-intro {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.program-intro h3 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.program-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.keys-grid {
    position: relative;
    padding: 2rem 0;
    margin-bottom: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Timeline vertical line */
.keys-grid::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--ikigai-orange) 0%, var(--ikigai-purple) 50%, var(--ikigai-gold) 100%);
    transform: translateX(-50%);
    border-radius: 2px;
    z-index: 0;
    opacity: 0.4;
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.3);
}

.key-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 2rem;
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    transition: var(--transition);
    border: 2px solid transparent;
    margin-bottom: 3rem;
    width: 45%;
    box-shadow: var(--shadow-md);
    z-index: 1;
}

/* Timeline cards on left side (odd) */
.key-card:nth-child(odd) {
    margin-left: 0;
    margin-right: auto;
    flex-direction: row;
}

/* Timeline cards on right side (even) */
.key-card:nth-child(even) {
    margin-left: auto;
    margin-right: 0;
    flex-direction: row-reverse;
}

/* Timeline connector dot */
.key-card::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: var(--gradient-primary);
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.2),
                0 4px 15px rgba(255, 107, 53, 0.4);
    z-index: 2;
}

.key-card:nth-child(odd)::after {
    left: calc(100% + 20px);
}

.key-card:nth-child(even)::after {
    right: calc(100% + 20px);
}

.key-card:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-xl);
    z-index: 3;
}

.key-card:hover::after {
    transform: translate(-50%, -50%) scale(1.3);
    box-shadow: 0 0 0 6px rgba(255, 107, 53, 0.3),
                0 6px 20px rgba(255, 107, 53, 0.6);
}

.key-number {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 900;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    transition: var(--transition);
    border: 3px solid white;
}

.key-card:hover .key-number {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.5);
}

.key-content h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.key-content h4 i {
    color: var(--primary-color);
    font-size: 1rem;
    opacity: 0.7;
    transition: var(--transition);
}

.key-card:hover .key-content h4 i {
    opacity: 1;
    transform: translateX(-3px);
    color: var(--ikigai-orange);
}

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

.program-results {
    background: transparent;
    padding: 0;
    margin-bottom: 0;
    position: relative;
}

.program-results h3 {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleWave 3s ease-in-out infinite;
    position: relative;
    padding-bottom: 2rem;
}

.program-results h3::before {
    content: '🚀';
    position: absolute;
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    animation: rocketSpin 3s ease-in-out infinite;
}

.program-results h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(60, 147, 255, 0.5);
    animation: underlineWave 2s ease-in-out infinite;
}

@keyframes titleWave {
    0%, 100% {
        transform: translateY(0) scale(1);
        filter: drop-shadow(0 0 10px rgba(60, 147, 255, 0.3));
    }
    25% {
        transform: translateY(-5px) scale(1.02);
        filter: drop-shadow(0 0 15px rgba(60, 147, 255, 0.5));
    }
    50% {
        transform: translateY(0) scale(1);
        filter: drop-shadow(0 0 20px rgba(60, 147, 255, 0.7))
               drop-shadow(0 0 30px rgba(166, 231, 253, 0.5));
    }
    75% {
        transform: translateY(-5px) scale(1.02);
        filter: drop-shadow(0 0 15px rgba(60, 147, 255, 0.5));
    }
}

@keyframes rocketSpin {
    0%, 100% {
        transform: translateY(-50%) rotate(0deg) scale(1);
    }
    25% {
        transform: translateY(-50%) rotate(90deg) scale(1.1);
    }
    50% {
        transform: translateY(-50%) rotate(180deg) scale(1);
    }
    75% {
        transform: translateY(-50%) rotate(270deg) scale(1.1);
    }
}

@keyframes underlineWave {
    0%, 100% {
        width: 0;
        opacity: 0;
    }
    50% {
        width: 150px;
        opacity: 1;
    }
}

/* Mind Map Container - Horizontal */
.mindmap-container {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    min-height: 500px;
    width: 100%;
}

/* Center Node */
.mindmap-center {
    position: relative;
    z-index: 10;
    margin: 0 3rem;
    flex-shrink: 0;
}

.center-node {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: white;
    font-weight: 900;
    font-size: 1.1rem;
    box-shadow: 0 10px 40px rgba(60, 147, 255, 0.4),
                0 0 60px rgba(60, 147, 255, 0.2);
    animation: centerPulse 3s ease-in-out infinite;
    position: relative;
}

.center-node i {
    font-size: 2.5rem;
    animation: iconSpin 4s linear infinite;
}

.center-node::before {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    background: var(--gradient-primary);
    opacity: 0.3;
    filter: blur(20px);
    z-index: -1;
    animation: glowPulse 2s ease-in-out infinite;
}

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

/* Mind Map Branches - Horizontal */
.mindmap-branches {
    position: relative;
    width: 100%;
    max-width: 1600px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem 1.5rem;
    padding: 2rem 0;
}

.mindmap-branch {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    animation: branchFadeIn 0.8s ease-out forwards;
}

.mindmap-branch.branch-top {
    justify-content: flex-start;
    padding-left: 0;
}

.mindmap-branch.branch-bottom {
    justify-content: flex-end;
    padding-right: 0;
    grid-row: 2;
}

/* Branch Lines - Horizontal */
.branch-line {
    position: absolute;
    width: 3px;
    height: 120px;
    background: var(--gradient-primary);
    z-index: 0;
    box-shadow: 0 2px 10px rgba(60, 147, 255, 0.3);
    animation: lineDraw 1s ease-out forwards;
}

.branch-top .branch-line {
    left: 50%;
    bottom: 100%;
    transform: translateX(-50%);
    border-radius: 3px 3px 0 0;
}

.branch-bottom .branch-line {
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
    border-radius: 0 0 3px 3px;
}

/* Connector from center to branch - Horizontal */
.mindmap-branch::before {
    content: '';
    position: absolute;
    width: 120px;
    height: 3px;
    background: var(--gradient-primary);
    z-index: 0;
    box-shadow: 0 2px 10px rgba(60, 147, 255, 0.3);
    animation: horizontalLineDraw 1s ease-out forwards;
}

.branch-top::before {
    right: 50%;
    bottom: 100%;
    transform: translateX(50%);
    border-radius: 0 3px 3px 0;
    margin-bottom: 120px;
}

.branch-bottom::before {
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
    border-radius: 3px 0 0 3px;
    margin-top: 120px;
}

/* Connection dot - Horizontal */
.mindmap-branch::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    background: var(--gradient-primary);
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 3px rgba(60, 147, 255, 0.2),
                0 4px 15px rgba(60, 147, 255, 0.4);
    z-index: 1;
    animation: dotAppear 0.5s ease-out 0.8s forwards;
    opacity: 0;
}

.branch-top::after {
    left: 50%;
    bottom: 100%;
    transform: translate(-50%, 50%);
    margin-bottom: 120px;
    margin-left: -60px;
}

.branch-bottom::after {
    left: 50%;
    top: 100%;
    transform: translate(-50%, -50%);
    margin-top: 120px;
    margin-left: -60px;
}

@keyframes branchFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes lineDraw {
    from {
        height: 0;
    }
    to {
        height: 120px;
    }
}

@keyframes horizontalLineDraw {
    from {
        width: 0;
    }
    to {
        width: 120px;
    }
}

@keyframes dotAppear {
    to {
        opacity: 1;
    }
}

.result-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 1.5rem 2.5rem;
    min-height: 80px;
    max-width: 100%;
    width: 100%;
    background: transparent;
    border-radius: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    transform: scale(1) rotate(0deg);
    animation: cardBounceIn 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
    transform-style: preserve-3d;
    z-index: 2;
}

/* Ensure all cards in the section have consistent sizing */
.program-results-plan-section .result-item {
    min-height: 80px;
    width: 100%;
    max-width: 100%;
    padding: 1.5rem 2.5rem;
}

.program-results-plan-section .mindmap-branch {
    width: 100%;
}

.program-results-plan-section .mindmap-branch .result-item {
    min-height: 80px;
    width: 100%;
}

.mindmap-branch:nth-child(1) {
    animation-delay: 0.1s;
}

.mindmap-branch:nth-child(1) .branch-line,
.mindmap-branch:nth-child(1)::before {
    animation-delay: 0.2s;
}

.mindmap-branch:nth-child(1)::after {
    animation-delay: 1s;
}

.mindmap-branch:nth-child(1) .result-item {
    animation-delay: 0.3s;
}

.mindmap-branch:nth-child(2) {
    animation-delay: 0.2s;
}

.mindmap-branch:nth-child(2) .branch-line,
.mindmap-branch:nth-child(2)::before {
    animation-delay: 0.3s;
}

.mindmap-branch:nth-child(2)::after {
    animation-delay: 1.1s;
}

.mindmap-branch:nth-child(2) .result-item {
    animation-delay: 0.4s;
}

.mindmap-branch:nth-child(3) {
    animation-delay: 0.3s;
}

.mindmap-branch:nth-child(3) .branch-line,
.mindmap-branch:nth-child(3)::before {
    animation-delay: 0.4s;
}

.mindmap-branch:nth-child(3)::after {
    animation-delay: 1.2s;
}

.mindmap-branch:nth-child(3) .result-item {
    animation-delay: 0.5s;
}

.mindmap-branch:nth-child(4) {
    animation-delay: 0.4s;
}

.mindmap-branch:nth-child(4) .branch-line,
.mindmap-branch:nth-child(4)::before {
    animation-delay: 0.5s;
}

.mindmap-branch:nth-child(4)::after {
    animation-delay: 1.3s;
}

.mindmap-branch:nth-child(4) .result-item {
    animation-delay: 0.6s;
}

.mindmap-branch:nth-child(5) {
    animation-delay: 0.5s;
}

.mindmap-branch:nth-child(5) .branch-line,
.mindmap-branch:nth-child(5)::before {
    animation-delay: 0.6s;
}

.mindmap-branch:nth-child(5)::after {
    animation-delay: 1.4s;
}

.mindmap-branch:nth-child(5) .result-item {
    animation-delay: 0.7s;
}

.mindmap-branch:nth-child(6) {
    animation-delay: 0.6s;
}

.mindmap-branch:nth-child(6) .branch-line,
.mindmap-branch:nth-child(6)::before {
    animation-delay: 0.7s;
}

.mindmap-branch:nth-child(6)::after {
    animation-delay: 1.5s;
}

.mindmap-branch:nth-child(6) .result-item {
    animation-delay: 0.8s;
}

.result-item::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 25px;
    padding: 3px;
    background: var(--gradient-primary);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.result-item .card-background {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 25px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    z-index: -1;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.result-item:hover {
    transform: translateY(-10px) translateX(10px) rotateY(5deg) scale(1.05);
    animation: cardHoverPulse 0.6s ease-in-out infinite;
}

.mindmap-branch:hover::after {
    transform: translate(-50%, -50%) scale(1.3);
    box-shadow: 0 0 0 6px rgba(60, 147, 255, 0.3),
                0 6px 20px rgba(60, 147, 255, 0.6);
}

.mindmap-branch.branch-bottom:hover::after {
    transform: translate(50%, -50%) scale(1.3);
}

.result-item:hover::before {
    opacity: 1;
    animation: borderPulse 1.5s ease-in-out infinite;
}

.result-item:hover .card-background {
    box-shadow: 0 20px 60px rgba(60, 147, 255, 0.3),
                0 0 40px rgba(60, 147, 255, 0.2);
    animation: shadowPulse 2s ease-in-out infinite;
}

.result-item:hover .result-icon-wrapper {
    transform: scale(1.2) rotateY(360deg);
    box-shadow: 0 10px 30px rgba(60, 147, 255, 0.4);
    animation: iconBounce 1s ease-in-out infinite;
}

.result-item:hover .result-content {
    transform: translateX(10px);
    animation: contentShake 0.5s ease-in-out infinite;
}

@keyframes cardBounceIn {
    0% {
        transform: scale(0.8) rotate(-5deg);
    }
    50% {
        transform: scale(1.05) rotate(3deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
    }
}

@keyframes cardHoverPulse {
    0%, 100% {
        transform: translateY(-15px) rotateY(5deg) scale(1.05);
    }
    50% {
        transform: translateY(-18px) rotateY(5deg) scale(1.06);
    }
}

@keyframes borderPulse {
    0%, 100% {
        opacity: 0.8;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.02);
    }
}

@keyframes shadowPulse {
    0%, 100% {
        box-shadow: 0 20px 60px rgba(60, 147, 255, 0.3),
                    0 0 40px rgba(60, 147, 255, 0.2);
    }
    50% {
        box-shadow: 0 25px 70px rgba(60, 147, 255, 0.4),
                    0 0 50px rgba(60, 147, 255, 0.3);
    }
}

@keyframes iconBounce {
    0%, 100% {
        transform: scale(1.2) rotateY(360deg) translateY(0);
    }
    50% {
        transform: scale(1.25) rotateY(360deg) translateY(-5px);
    }
}

@keyframes contentShake {
    0%, 100% {
        transform: translateX(10px);
    }
    25% {
        transform: translateX(12px);
    }
    75% {
        transform: translateX(8px);
    }
}

.result-icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 8px 25px rgba(60, 147, 255, 0.3);
    z-index: 1;
    animation: iconFloat 3s ease-in-out infinite;
}

.result-icon-wrapper::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 25px;
    background: var(--gradient-primary);
    opacity: 0;
    filter: blur(15px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
    animation: glowPulse 2s ease-in-out infinite;
}

.result-item:hover .result-icon-wrapper::before {
    opacity: 0.6;
    animation: glowPulseFast 0.8s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-8px) rotate(5deg);
    }
}

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

@keyframes glowPulseFast {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1.1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.2);
    }
}

.result-item:nth-child(odd) .result-icon-wrapper {
    background: var(--gradient-primary);
}

.result-item:nth-child(even) .result-icon-wrapper {
    background: linear-gradient(135deg, rgba(60, 147, 255, 0.9) 0%, rgba(166, 231, 253, 0.9) 100%);
    box-shadow: 0 8px 25px rgba(60, 147, 255, 0.3);
}

.result-item i {
    color: white;
    font-size: 2rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    animation: iconSpin 4s linear infinite;
}

@keyframes iconSpin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.result-content {
    flex: 1;
    width: 100%;
    text-align: center;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.result-item span {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1.2rem;
    line-height: 1.6;
    display: block;
}

.program-plan {
    background: white;
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    position: relative;
    transform: translateY(0);
    animation: fadeInUp 0.8s ease-out 0.3s both;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.program-plan::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(60, 147, 255, 0.05) 0%, transparent 70%);
    animation: rotateGlow 20s linear infinite;
    pointer-events: none;
}

.program-plan:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(60, 147, 255, 0.15);
}

.program-plan h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-primary);
    font-size: 2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleSlideIn 0.8s ease-out 0.5s both;
    position: relative;
}

.program-plan h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
    animation: underlineExpand 0.8s ease-out 0.8s forwards;
}

@keyframes rotateGlow {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.plan-timeline {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.plan-phase {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem;
    background: var(--bg-secondary);
    border-radius: var(--border-radius);
    border-right: 4px solid var(--primary-color);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateX(-30px);
    animation: phaseSlideIn 0.6s ease-out forwards;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.plan-phase:nth-child(1) {
    animation-delay: 0.7s;
}

.plan-phase:nth-child(2) {
    animation-delay: 0.8s;
}

.plan-phase:nth-child(3) {
    animation-delay: 0.9s;
}

.plan-phase:nth-child(4) {
    animation-delay: 1s;
}

.plan-phase::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(60, 147, 255, 0.1) 100%);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.plan-phase:hover {
    transform: translateX(-10px) scale(1.02);
    box-shadow: 0 10px 30px rgba(60, 147, 255, 0.2);
    border-right-width: 6px;
}

.plan-phase:hover::before {
    width: 100%;
}

.plan-phase:hover .phase-number {
    transform: scale(1.15) rotate(360deg);
    box-shadow: 0 8px 25px rgba(60, 147, 255, 0.4);
}

@keyframes phaseSlideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.phase-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    flex-shrink: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 4px 15px rgba(60, 147, 255, 0.3);
}

.phase-number::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: var(--gradient-primary);
    opacity: 0;
    z-index: -1;
    filter: blur(10px);
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.plan-phase:hover .phase-number::before {
    opacity: 0.6;
}

.phase-content h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.phase-content p {
    color: var(--text-secondary);
    margin: 0;
}

.plan-features h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

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

.plan-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    background: var(--bg-secondary);
    border-radius: var(--border-radius);
    opacity: 0;
    transform: translateY(15px);
    animation: featureFadeIn 0.5s ease-out forwards;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.plan-features li:nth-child(1) {
    animation-delay: 1.1s;
}

.plan-features li:nth-child(2) {
    animation-delay: 1.2s;
}

.plan-features li:nth-child(3) {
    animation-delay: 1.3s;
}

.plan-features li:nth-child(4) {
    animation-delay: 1.4s;
}

.plan-features li:nth-child(5) {
    animation-delay: 1.5s;
}

.plan-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: var(--gradient-primary);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.plan-features li:hover {
    transform: translateX(-5px);
    box-shadow: 0 5px 15px rgba(60, 147, 255, 0.15);
}

.plan-features li:hover::before {
    transform: scaleY(1);
}

.plan-features li:hover i {
    transform: scale(1.3) rotateY(360deg);
    color: var(--primary-color);
}

.plan-features i {
    color: var(--primary-color);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes featureFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Program Results & Plan Section */
.program-results-plan-section {
    padding: 6rem 0;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.program-results-plan-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(16, 38, 65, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(60, 147, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(166, 231, 253, 0.03) 0%, transparent 50%);
    animation: backgroundPulse 15s ease-in-out infinite;
    pointer-events: none;
}

@keyframes backgroundPulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

/* Method Section - Creative 3D Style */
.method-section {
    padding: 8rem 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.microphone-bubbles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.microphone-bubble {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: floatBubble 20s infinite ease-in-out;
    opacity: 0.6;
}

.fingerprint-icon {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fingerprint-icon .fa-fingerprint {
    position: absolute;
    font-size: 2.5rem;
    color: rgba(0, 0, 0, 0.15);
    z-index: 1;
}

.fingerprint-icon .fa-microphone {
    position: absolute;
    font-size: 1rem;
    z-index: 2;
    color: rgba(60, 147, 255, 0.5);
}

/* الميكروفونات الزرقاء */
.microphone-bubble:nth-child(odd) .fa-fingerprint {
    color: rgba(0, 0, 0, 0.12);
}

.microphone-bubble:nth-child(odd) .fa-microphone {
    color: rgba(60, 147, 255, 0.5);
}

.microphone-bubble:nth-child(odd) .fingerprint-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(60, 147, 255, 0.08) 0%, rgba(166, 231, 253, 0.08) 100%);
    z-index: 0;
    box-shadow: 0 4px 15px rgba(60, 147, 255, 0.1);
}

/* الميكروفونات الذهبية */
.microphone-bubble:nth-child(even) .fa-fingerprint {
    color: rgba(0, 0, 0, 0.12);
}

.microphone-bubble:nth-child(even) .fa-microphone {
    color: rgba(217, 164, 65, 0.5);
}

.microphone-bubble:nth-child(even) .fingerprint-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(217, 164, 65, 0.08) 0%, rgba(255, 200, 87, 0.08) 100%);
    z-index: 0;
    box-shadow: 0 4px 15px rgba(217, 164, 65, 0.1);
}

.microphone-bubble:nth-child(1) {
    left: 10%;
    top: 20%;
    animation-delay: 0s;
    animation-duration: 18s;
    width: 35px;
    height: 35px;
}

.microphone-bubble:nth-child(1) .fa-fingerprint {
    font-size: 2rem;
}

.microphone-bubble:nth-child(1) .fa-microphone {
    font-size: 0.85rem;
}

.microphone-bubble:nth-child(2) {
    left: 80%;
    top: 15%;
    animation-delay: 2s;
    animation-duration: 22s;
    width: 45px;
    height: 45px;
}

.microphone-bubble:nth-child(2) .fa-fingerprint {
    font-size: 2.5rem;
}

.microphone-bubble:nth-child(2) .fa-microphone {
    font-size: 1.1rem;
}

.microphone-bubble:nth-child(3) {
    left: 25%;
    top: 60%;
    animation-delay: 4s;
    animation-duration: 16s;
    width: 30px;
    height: 30px;
}

.microphone-bubble:nth-child(3) .fa-fingerprint {
    font-size: 1.8rem;
}

.microphone-bubble:nth-child(3) .fa-microphone {
    font-size: 0.75rem;
}

.microphone-bubble:nth-child(4) {
    left: 70%;
    top: 50%;
    animation-delay: 1s;
    animation-duration: 24s;
    width: 50px;
    height: 50px;
}

.microphone-bubble:nth-child(4) .fa-fingerprint {
    font-size: 2.8rem;
}

.microphone-bubble:nth-child(4) .fa-microphone {
    font-size: 1.2rem;
}

.microphone-bubble:nth-child(5) {
    left: 15%;
    top: 80%;
    animation-delay: 3s;
    animation-duration: 19s;
    width: 38px;
    height: 38px;
}

.microphone-bubble:nth-child(5) .fa-fingerprint {
    font-size: 2.2rem;
}

.microphone-bubble:nth-child(5) .fa-microphone {
    font-size: 0.95rem;
}

.microphone-bubble:nth-child(6) {
    left: 85%;
    top: 75%;
    animation-delay: 5s;
    animation-duration: 21s;
    width: 42px;
    height: 42px;
}

.microphone-bubble:nth-child(6) .fa-fingerprint {
    font-size: 2.4rem;
}

.microphone-bubble:nth-child(6) .fa-microphone {
    font-size: 1rem;
}

.microphone-bubble:nth-child(7) {
    left: 50%;
    top: 10%;
    animation-delay: 1.5s;
    animation-duration: 17s;
    width: 33px;
    height: 33px;
}

.microphone-bubble:nth-child(7) .fa-fingerprint {
    font-size: 1.9rem;
}

.microphone-bubble:nth-child(7) .fa-microphone {
    font-size: 0.8rem;
}

.microphone-bubble:nth-child(8) {
    left: 40%;
    top: 40%;
    animation-delay: 2.5s;
    animation-duration: 23s;
    width: 48px;
    height: 48px;
}

.microphone-bubble:nth-child(8) .fa-fingerprint {
    font-size: 2.7rem;
}

.microphone-bubble:nth-child(8) .fa-microphone {
    font-size: 1.15rem;
}

.microphone-bubble:nth-child(9) {
    left: 60%;
    top: 85%;
    animation-delay: 3.5s;
    animation-duration: 20s;
    width: 36px;
    height: 36px;
}

.microphone-bubble:nth-child(9) .fa-fingerprint {
    font-size: 2.1rem;
}

.microphone-bubble:nth-child(9) .fa-microphone {
    font-size: 0.9rem;
}

.microphone-bubble:nth-child(10) {
    left: 90%;
    top: 30%;
    animation-delay: 4.5s;
    animation-duration: 18s;
    width: 40px;
    height: 40px;
}

.microphone-bubble:nth-child(10) .fa-fingerprint {
    font-size: 2.3rem;
}

.microphone-bubble:nth-child(10) .fa-microphone {
    font-size: 1rem;
}

.microphone-bubble:nth-child(11) {
    left: 5%;
    top: 45%;
    animation-delay: 0.5s;
    animation-duration: 25s;
    width: 44px;
    height: 44px;
}

.microphone-bubble:nth-child(11) .fa-fingerprint {
    font-size: 2.6rem;
}

.microphone-bubble:nth-child(11) .fa-microphone {
    font-size: 1.05rem;
}

.microphone-bubble:nth-child(12) {
    left: 75%;
    top: 5%;
    animation-delay: 6s;
    animation-duration: 19s;
    width: 32px;
    height: 32px;
}

.microphone-bubble:nth-child(12) .fa-fingerprint {
    font-size: 1.85rem;
}

.microphone-bubble:nth-child(12) .fa-microphone {
    font-size: 0.8rem;
}

@keyframes floatBubble {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 0.6;
    }
    25% {
        transform: translateY(-30px) translateX(20px) rotate(90deg);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-60px) translateX(-15px) rotate(180deg);
        opacity: 0.5;
    }
    75% {
        transform: translateY(-30px) translateX(-25px) rotate(270deg);
        opacity: 0.7;
    }
}

.method-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(60, 147, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(166, 231, 253, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(217, 164, 65, 0.05) 0%, transparent 50%);
    animation: backgroundShift 20s ease-in-out infinite;
}

@keyframes backgroundShift {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.method-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.method-header {
    text-align: center;
    margin-bottom: 5rem;
    perspective: 1000px;
}

.method-header h2 {
    font-size: 3rem;
    color: var(--text-primary);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    line-height: 1.3;
    text-shadow: 0 0 30px rgba(60, 147, 255, 0.3),
                 0 0 60px rgba(166, 231, 253, 0.2);
    animation: titleGlow 3s ease-in-out infinite;
    transform-style: preserve-3d;
}

@keyframes titleGlow {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(60, 147, 255, 0.4))
               drop-shadow(0 0 40px rgba(166, 231, 253, 0.2));
    }
    50% {
        filter: drop-shadow(0 0 30px rgba(60, 147, 255, 0.6))
               drop-shadow(0 0 60px rgba(166, 231, 253, 0.4))
               drop-shadow(0 0 80px rgba(217, 164, 65, 0.3));
    }
}

.method-philosophy {
    text-align: center;
    margin-bottom: 4rem;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    border: 1px solid rgba(60, 147, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.9),
                0 0 0 1px rgba(60, 147, 255, 0.05);
    transform-style: preserve-3d;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.method-philosophy:hover {
    transform: translateY(-5px) rotateX(2deg);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 1),
                0 0 30px rgba(60, 147, 255, 0.3),
                0 0 0 1px rgba(60, 147, 255, 0.1);
}

.method-philosophy h3 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(60, 147, 255, 0.2);
}

.method-description {
    font-size: 1.3rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0;
    font-weight: 500;
}

.method-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
    perspective: 1000px;
}

.method-feature {
    position: relative;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    border: 1px solid rgba(60, 147, 255, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08),
                inset 0 1px 0 rgba(255, 255, 255, 1),
                0 0 0 1px rgba(60, 147, 255, 0.05);
    transform-style: preserve-3d;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.method-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        rgba(60, 147, 255, 0.8) 0%,
        rgba(166, 231, 253, 0.8) 50%,
        rgba(217, 164, 65, 0.8) 100%);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.method-feature:nth-child(1)::before {
    background: linear-gradient(90deg, rgba(60, 147, 255, 0.9) 0%, rgba(166, 231, 253, 0.9) 100%);
}

.method-feature:nth-child(2)::before {
    background: linear-gradient(90deg, rgba(166, 231, 253, 0.9) 0%, rgba(217, 164, 65, 0.9) 100%);
}

.method-feature:nth-child(3)::before {
    background: linear-gradient(90deg, rgba(217, 164, 65, 0.9) 0%, rgba(255, 200, 87, 0.9) 100%);
}

.method-feature:hover {
    transform: translateY(-10px) rotateX(5deg) rotateY(-2deg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 1),
                0 0 40px rgba(60, 147, 255, 0.2),
                0 0 0 1px rgba(60, 147, 255, 0.15);
}

.method-feature:hover::before {
    transform: scaleX(1);
}

.method-feature:nth-child(1):hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 1),
                0 0 40px rgba(60, 147, 255, 0.3),
                0 0 0 1px rgba(60, 147, 255, 0.2);
}

.method-feature:nth-child(2):hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 1),
                0 0 40px rgba(166, 231, 253, 0.3),
                0 0 0 1px rgba(166, 231, 253, 0.2);
}

.method-feature:nth-child(3):hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 1),
                0 0 40px rgba(217, 164, 65, 0.3),
                0 0 0 1px rgba(217, 164, 65, 0.2);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(60, 147, 255, 0.9) 0%, rgba(166, 231, 253, 0.9) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 8px 25px rgba(60, 147, 255, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
    margin-bottom: 1.5rem;
    transform-style: preserve-3d;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.method-feature:nth-child(2) .feature-icon {
    background: linear-gradient(135deg, rgba(166, 231, 253, 0.9) 0%, rgba(217, 164, 65, 0.9) 100%);
    box-shadow: 0 8px 25px rgba(166, 231, 253, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.method-feature:nth-child(3) .feature-icon {
    background: linear-gradient(135deg, rgba(217, 164, 65, 0.9) 0%, rgba(255, 200, 87, 0.9) 100%);
    box-shadow: 0 8px 25px rgba(217, 164, 65, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.method-feature:hover .feature-icon {
    transform: scale(1.15) rotateY(10deg) rotateZ(5deg);
    box-shadow: 0 12px 35px rgba(60, 147, 255, 0.6),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.method-feature:nth-child(2):hover .feature-icon {
    box-shadow: 0 12px 35px rgba(166, 231, 253, 0.6),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.method-feature:nth-child(3):hover .feature-icon {
    box-shadow: 0 12px 35px rgba(217, 164, 65, 0.6),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.feature-content h4 {
    color: var(--text-primary);
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.feature-content p {
    color: var(--text-secondary);
    font-size: 1.15rem;
    line-height: 1.8;
    margin: 0;
    font-weight: 400;
}

.method-quote {
    text-align: center;
    padding: 4rem 3rem;
    background: linear-gradient(135deg, 
        rgba(60, 147, 255, 0.1) 0%,
        rgba(166, 231, 253, 0.1) 50%,
        rgba(217, 164, 65, 0.1) 100%);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    border: 2px solid rgba(60, 147, 255, 0.2);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.9),
                0 0 60px rgba(60, 147, 255, 0.2),
                0 0 0 1px rgba(60, 147, 255, 0.1);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.method-quote::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(60, 147, 255, 0.15) 0%, transparent 70%);
    animation: quotePulse 4s ease-in-out infinite;
}

@keyframes quotePulse {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.2) rotate(180deg);
        opacity: 0.6;
    }
}

.method-quote::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        transparent 30%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%);
    }
    100% {
        transform: translateX(100%) translateY(100%);
    }
}

.method-quote p {
    font-size: 2rem;
    color: var(--text-primary);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    margin: 0;
    position: relative;
    z-index: 1;
    line-height: 1.6;
    font-style: italic;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.1),
                 0 0 30px rgba(166, 231, 253, 0.2);
    letter-spacing: 1px;
}

.quote-icon {
    font-size: 2.5rem;
    display: inline-block;
    margin-right: 0.8rem;
    animation: quoteFloat 4s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(166, 231, 253, 0.3));
}

@keyframes quoteFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-15px) rotate(-5deg);
    }
    50% {
        transform: translateY(-10px) rotate(0deg);
    }
    75% {
        transform: translateY(-15px) rotate(5deg);
    }
}

/* Pricing Section */
.pricing-section {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

.pricing-card {
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
    border: 2px solid var(--primary-color);
}

.pricing-header {
    background: var(--gradient-primary);
    color: white;
    padding: 3rem 2rem;
    text-align: center;
}

.pricing-header h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
}

.amount {
    font-size: 4rem;
    font-weight: 900;
}

.period {
    font-size: 1.2rem;
    opacity: 0.9;
}

.pricing-features {
    padding: 3rem 2rem;
}

.feature {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.feature i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.feature-content h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

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

.bonuses {
    background: var(--bg-secondary);
    padding: 2rem;
    margin: 0 2rem 2rem;
    border-radius: var(--border-radius);
}

.bonuses h4 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    text-align: center;
}

.bonus-list {
    display: grid;
    gap: 1rem;
}

.bonus-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.bonus-item:hover {
    transform: translateX(-5px);
    box-shadow: var(--shadow-md);
}

.bonus-item i {
    color: #3c93ff;
    font-size: 1.2rem;
}

.bonus-item span {
    font-weight: 500;
    color: var(--text-primary);
}

.guarantee {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    margin: 0 2rem 2rem;
    background: rgba(34, 197, 94, 0.1);
    border-radius: var(--border-radius);
    border: 2px solid rgba(34, 197, 94, 0.2);
}

.guarantee-icon {
    width: 60px;
    height: 60px;
    background: #22c55e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.guarantee-content h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.guarantee-content p {
    color: var(--text-secondary);
    margin: 0;
}

.urgency {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
    margin: 0 2rem 2rem;
    background: rgba(239, 68, 68, 0.1);
    border-radius: var(--border-radius);
    border: 2px solid rgba(239, 68, 68, 0.2);
    flex-wrap: wrap;
}

.urgency-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #dc2626;
    font-weight: 600;
}

.urgency-item i {
    font-size: 1.2rem;
}

.pricing-cta {
    padding: 2rem;
    text-align: center;
    background: var(--bg-secondary);
}

.cta-note {
    margin-top: 1rem;
    color: #dc2626;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Final CTA Section */
.final-cta-section {
    padding: 6rem 0;
    background: var(--gradient-primary);
    color: white;
    text-align: center;
}

.final-cta-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #a6e7fd;
}

.final-cta-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: white;
}

.final-message {
    max-width: 800px;
    margin: 3rem auto;
    font-size: 1.2rem;
    line-height: 1.8;
}

.final-message p {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.welcome-message {
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    color: #a6e7fd !important;
    margin-top: 2rem !important;
}

.final-cta-btn {
    background: var(--gradient-secondary);
    color: white;
    border: none;
    padding: 1.5rem 3rem;
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-xl);
}

.final-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 4rem 0 2rem;
}

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

.footer-section h3 {
    color: white;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.contact-info i {
    color: var(--primary-color);
    width: 20px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 1200px) {
    /* Program Results & Plan Section - Large Tablet */
    .mindmap-container {
        padding: 3.5rem 2rem;
    }
    
    .mindmap-branches {
        max-width: 1400px;
        gap: 1.75rem;
    }
    
    .result-item {
        padding: 1.4rem 2.2rem;
    }
}

@media (max-width: 1024px) {
    /* Program Results & Plan Section - Tablet */
    .program-results-plan-section {
        padding: 4rem 0;
    }
    
    .program-results h3 {
        font-size: 2rem;
        margin-bottom: 3rem;
        padding-bottom: 1.5rem;
    }
    
    .mindmap-container {
        flex-direction: column;
        padding: 3rem 1.5rem;
        min-height: auto;
    }
    
    .mindmap-center {
        margin: 0 0 3rem 0;
    }
    
    .center-node {
        width: 110px;
        height: 110px;
        font-size: 1rem;
    }
    
    .center-node i {
        font-size: 2.2rem;
    }
    
    .mindmap-branches {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        max-width: 100%;
    }
    
    .mindmap-branch.branch-top {
        justify-content: center;
        padding-left: 0;
    }
    
    .mindmap-branch.branch-bottom {
        justify-content: center;
        padding-right: 0;
        grid-row: auto;
    }
    
    .branch-top::before,
    .branch-bottom::before {
        display: none;
    }
    
    .branch-top .branch-line,
    .branch-bottom .branch-line {
        display: none;
    }
    
    .branch-top::after,
    .branch-bottom::after {
        display: none;
    }
    
    .result-item {
        padding: 1.5rem 2rem;
        min-height: auto;
    }
    
    .result-content span {
        font-size: 1.15rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero-title {
        font-size: 2.5rem;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .hero-title .quote-line {
        margin-bottom: 0 !important;
        margin-top: 0 !important;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    /* Program Results & Plan Section - Mobile */
    .program-results-plan-section {
        padding: 3rem 0;
    }
    
    .program-results h3 {
        font-size: 1.75rem;
        margin-bottom: 2.5rem;
        padding-bottom: 1rem;
    }
    
    .program-results h3::before {
        display: none;
    }
    
    .mindmap-container {
        flex-direction: column;
        padding: 2rem 1rem;
        min-height: auto;
    }
    
    .mindmap-center {
        margin: 0 0 2rem 0;
    }
    
    .center-node {
        width: 100px;
        height: 100px;
        font-size: 0.95rem;
    }
    
    .center-node i {
        font-size: 2rem;
    }
    
    .mindmap-branches {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 100%;
        padding: 1rem 0;
    }
    
    .mindmap-branch {
        width: 100%;
        justify-content: center !important;
    }
    
    .mindmap-branch.branch-top,
    .mindmap-branch.branch-bottom {
        justify-content: center;
        padding: 0;
        grid-row: auto;
    }
    
    .branch-top::before,
    .branch-bottom::before {
        display: none;
    }
    
    .branch-top .branch-line,
    .branch-bottom .branch-line {
        display: none;
    }
    
    .branch-top::after,
    .branch-bottom::after {
        display: none;
    }
    
    .result-item {
        padding: 1.2rem 1.5rem;
        min-height: auto;
        width: 100%;
        max-width: 100%;
    }
    
    .result-content {
        width: 100%;
    }
    
    .result-content span {
        font-size: 1.1rem;
        line-height: 1.5;
    }
    
    .creative-story-narrative {
        padding: 1rem;
        margin: 3rem auto;
    }
    
    .story-card-3d {
        flex-direction: column !important;
        gap: 2rem;
        padding: 2.5rem 2rem;
        margin-bottom: 3rem;
        text-align: center;
    }
    
    .card-image-3d {
        width: 140px;
        height: 140px;
        font-size: 4rem;
        margin: 0 auto;
    }
    
    .card-5 .card-image-3d {
        width: 160px;
        height: 160px;
        font-size: 4.5rem;
    }
    
    .story-question {
        font-size: 1.8rem;
    }
    
    .story-text {
        font-size: 1.3rem;
    }
    
    .story-text.emotional-text {
        font-size: 1.4rem;
    }
    
    .story-text.revelation-text {
        font-size: 1.6rem;
    }
    
    .story-text.program-line {
        font-size: 1.3rem;
    }
    
    .story-text.tagline-line {
        font-size: 1.5rem;
    }
    
    .problem-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .vision-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .journey-cards,
    .credentials-grid {
        grid-template-columns: 1fr;
    }
    
    .story-image img {
        width: 150px;
        height: 150px;
    }
    
    .story-text {
        padding: 2rem;
    }
    
    .story-text .section-header h2 {
        font-size: 2rem;
    }
    
    .story-text .section-header h3 {
        font-size: 1.5rem;
    }
    
    .keys-grid::before {
        left: 30px;
    }
    
    .key-card {
        width: calc(100% - 60px) !important;
        margin-left: 60px !important;
        margin-right: 0 !important;
        flex-direction: column !important;
        text-align: center;
        gap: 1rem;
    }
    
    .key-card::after {
        left: -40px !important;
        right: auto !important;
    }
    
    .key-card:nth-child(even) {
        flex-direction: column !important;
    }
    
    .plan-phase {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .urgency {
        flex-direction: column;
        gap: 1rem;
    }
    
    .final-cta-content h2 {
        font-size: 2rem;
    }
    
    .final-cta-content h3 {
        font-size: 1.5rem;
    }
    
    .pricing-header {
        padding: 2rem 1rem;
    }
    
    .method-section {
        padding: 3rem 0;
    }
    
    .method-header {
        margin-bottom: 3rem;
        padding: 0 1rem;
    }
    
    .method-header h2 {
        font-size: 1.6rem;
        line-height: 1.4;
        padding: 0;
    }
    
    .method-philosophy {
        padding: 2rem 1.5rem;
        margin-bottom: 3rem;
        border-radius: 20px;
    }
    
    .method-philosophy h3 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }
    
    .method-description {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .method-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
        padding: 0 1rem;
    }
    
    .method-feature {
        display: flex;
        text-align: right;
        padding: 1.8rem 1.5rem;
        border-radius: 20px;
        flex-direction: row;
        gap: 1.5rem;
        align-items: flex-start;
    }
    
    .method-feature:hover {
        transform: translateY(-5px) rotateX(0deg) rotateY(0deg);
    }
    
    .feature-icon {
        width: 55px;
        height: 55px;
        margin: 0;
        font-size: 1.4rem;
        flex-shrink: 0;
    }
    
    .method-feature:hover .feature-icon {
        transform: scale(1.1) rotateY(0deg) rotateZ(0deg);
    }
    
    .feature-content {
        flex: 1;
        text-align: right;
    }
    
    .feature-content h4 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }
    
    .feature-content p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .method-quote {
        padding: 0 1rem;
        margin-bottom: 2rem;
    }
    
    .method-quote p {
        font-size: 1.1rem;
        line-height: 1.6;
    }
    
    /* Microphone Bubbles Responsive */
    .microphone-bubble {
        width: 30px !important;
        height: 30px !important;
        opacity: 0.4;
    }
    
    .fingerprint-icon .fa-fingerprint {
        font-size: 1.5rem !important;
    }
    
    .fingerprint-icon .fa-microphone {
        font-size: 0.7rem !important;
    }
    
    .microphone-bubble:nth-child(n) {
        width: 30px !important;
        height: 30px !important;
    }
    
    .microphone-bubble:nth-child(n) .fa-fingerprint {
        font-size: 1.5rem !important;
    }
    
    .microphone-bubble:nth-child(n) .fa-microphone {
        font-size: 0.7rem !important;
    }
    
    .method-quote {
        padding: 2.5rem 1.5rem !important;
        margin-bottom: 2rem;
        border-radius: 20px;
    }
    
    .method-quote p {
        font-size: 1rem !important;
        line-height: 1.6;
    }
    
    .quote-icon {
        font-size: 2rem;
        margin-right: 0.5rem;
    }
    
    .amount {
        font-size: 3rem;
    }
    
    .feature {
        flex-direction: column;
        gap: 1rem;
    }
    
    .guarantee {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
    
    .hero-title .quote-line {
        margin-bottom: 0 !important;
        margin-top: 0 !important;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .cta-primary,
    .cta-secondary {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    .creative-story-narrative {
        padding: 0.5rem;
        margin: 2rem auto;
    }
    
    .story-card-3d {
        padding: 2rem 1.5rem;
        margin-bottom: 2.5rem;
        gap: 1.5rem;
    }
    
    .card-image-3d {
        width: 120px;
        height: 120px;
        font-size: 3.5rem;
    }
    
    .card-5 .card-image-3d {
        width: 140px;
        height: 140px;
        font-size: 4rem;
    }
    
    .story-question {
        font-size: 1.5rem;
    }
    
    .story-text {
        font-size: 1.15rem;
        line-height: 1.9;
    }
    
    .story-text.emotional-text {
        font-size: 1.2rem;
    }
    
    .story-text.revelation-text {
        font-size: 1.4rem;
    }
    
    .story-text.program-line {
        font-size: 1.15rem;
    }
    
    .story-text.tagline-line {
        font-size: 1.3rem;
    }
    
    .highlight-badge {
        padding: 0.3rem 0.7rem;
        font-size: 0.9em;
    }
    
    .narrative-text:first-of-type {
        font-size: 1rem;
    }
    
    .narrative-text.emphasis {
        font-size: 1.3rem;
        margin-top: 0.5rem;
        margin-bottom: 1.2rem;
    }
    
    .narrative-text.program {
        font-size: 1.2rem;
        margin-top: 1.5rem;
        padding-top: 1.2rem;
    }
    
    .narrative-text.program strong {
        font-size: 1.3rem;
    }
    
    .problem-grid,
    .vision-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .problem-card,
    .vision-card {
        padding: 2rem 1.5rem;
    }
    
    .problem-icon {
        width: 60px;
        height: 60px;
        margin: 0 auto 1rem;
        font-size: 0.6rem;
    }
    
    .problem-icon span {
        font-size: 0.5rem;
        letter-spacing: 0.5px;
    }
    
    .problem-card h3 {
        font-size: 1.3rem;
    }
    
    .problem-card p {
        font-size: 0.9rem;
    }
    
    .problem-emotion {
        font-size: 0.8rem;
        padding: 0.6rem 1rem;
    }
    
    .reality-content {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .message-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .problem-card,
    .vision-card,
    .story-text,
    .journey-section,
    .credentials,
    .program-plan {
        padding: 1.5rem;
    }
    
    .pricing-features,
    .bonuses,
    .guarantee,
    .urgency,
    .pricing-cta {
        margin-left: 1rem;
        margin-right: 1rem;
    }
    
    /* Mind Map - Small Mobile Enhancements */
    .program-results-plan-section {
        padding: 2.5rem 0;
    }
    
    .program-results h3 {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .mindmap-container {
        padding: 1.5rem 0.75rem;
    }
    
    .center-node {
        width: 90px;
        height: 90px;
        font-size: 0.85rem;
    }
    
    .center-node i {
        font-size: 1.8rem;
    }
    
    .mindmap-branches {
        gap: 1.25rem;
    }
    
    .result-item {
        padding: 1rem 1.25rem;
    }
    
    .result-content span {
        font-size: 1rem;
        line-height: 1.4;
    }
}

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

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

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

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

.animate-fade-in-left {
    animation: fadeInLeft 0.6s ease-out;
}

.animate-fade-in-right {
    animation: fadeInRight 0.6s ease-out;
}

/* Smooth scrolling enhancement */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

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

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

