/* ═══════════════════════════════════════════════════════
   IDL Leadership Development Program — One Pager
   Premium Design with Orange/Amber Branding
   ═══════════════════════════════════════════════════════ */

:root {
    --orange-50: #fff8f0;
    --orange-100: #ffedd5;
    --orange-200: #fed7aa;
    --orange-300: #fdba74;
    --orange-400: #fb923c;
    --orange-500: #e8760a;
    --orange-600: #c2590a;
    --orange-700: #9a3f08;
    --orange-800: #6b2c06;
    --dark-900: #0f0f0f;
    --dark-800: #1a1a1a;
    --dark-700: #2a2a2a;
    --dark-600: #3a3a3a;
    --gray-100: #f7f7f7;
    --gray-200: #e8e8e8;
    --gray-300: #d4d4d4;
    --gray-400: #a3a3a3;
    --gray-500: #737373;
    --gray-600: #525252;
    --white: #ffffff;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
}

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

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

body {
    font-family: var(--font-sans);
    color: var(--dark-900);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* ═══════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════ */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: all 0.4s var(--ease-out-expo);
    background: transparent;
}

.nav.scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.75rem 0;
    box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    color: var(--orange-500);
    font-size: 1.25rem;
}

.logo-text {
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: -0.02em;
}

.logo-sub {
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-500);
    margin-left: 0.25rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-600);
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--orange-500);
}

.nav-cta {
    background: var(--orange-500);
    color: var(--white) !important;
    padding: 0.6rem 1.25rem;
    border-radius: 100px;
    transition: all 0.3s ease !important;
}

.nav-cta:hover {
    background: var(--orange-600) !important;
    transform: translateY(-1px);
}

/* ═══════════════════════════════════════════════════════
   PROGRESS BAR
   ═══════════════════════════════════════════════════════ */

.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--orange-400), var(--orange-600));
    z-index: 1001;
    width: 0%;
    transition: width 0.1s linear;
}

/* ═══════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════ */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s var(--ease-out-expo);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--orange-500);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(232, 118, 10, 0.3);
}

.btn-primary:hover {
    background: var(--orange-600);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(232, 118, 10, 0.4);
}

.btn-outline {
    border: 1.5px solid var(--gray-300);
    color: var(--dark-900);
    background: transparent;
}

.btn-outline:hover {
    border-color: var(--orange-500);
    color: var(--orange-500);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1.1rem 2.5rem;
    font-size: 1rem;
}

/* ═══════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════ */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, var(--white) 0%, var(--orange-50) 50%, var(--white) 100%);
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: var(--orange-400);
    top: -200px;
    right: -100px;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: var(--orange-300);
    bottom: -100px;
    left: -100px;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: var(--orange-500);
    top: 50%;
    left: 60%;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(232, 118, 10, 0.08);
    border: 1px solid rgba(232, 118, 10, 0.15);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--orange-600);
    letter-spacing: 0.02em;
    margin-bottom: 2rem;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

.hero-title-line {
    display: block;
}

.hero-title-line.accent {
    color: var(--orange-500);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--gray-500);
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

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

.hero-scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: var(--gray-400);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--orange-400), transparent);
    animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.5; transform: scaleY(0.6); }
}

/* ═══════════════════════════════════════════════════════
   SECTIONS
   ═══════════════════════════════════════════════════════ */

.section {
    padding: 8rem 0;
    position: relative;
}

.section-dark {
    background: var(--dark-900);
    color: var(--white);
}

.section-dark .section-subtitle {
    color: var(--gray-400);
}

.section-accent {
    background: linear-gradient(160deg, var(--orange-50) 0%, var(--white) 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-number {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--orange-500);
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    padding: 0.3rem 0.8rem;
    border: 1px solid rgba(232, 118, 10, 0.3);
    border-radius: 100px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════
   CHALLENGE GRID (Section 2)
   ═══════════════════════════════════════════════════════ */

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

.challenge-card {
    background: var(--dark-700);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    transition: all 0.4s var(--ease-out-expo);
}

.challenge-card:hover {
    transform: translateY(-4px);
    border-color: rgba(232, 118, 10, 0.3);
    background: var(--dark-600);
}

.challenge-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    color: var(--orange-400);
}

.challenge-card h3 {
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.5;
    color: var(--gray-200);
}

/* ═══════════════════════════════════════════════════════
   COMPARISON (Section 3)
   ═══════════════════════════════════════════════════════ */

.comparison {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: start;
    max-width: 900px;
    margin: 0 auto;
}

.comparison-col {
    padding: 2.5rem;
    border-radius: 20px;
}

.comparison-standard {
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
}

.comparison-idl {
    background: linear-gradient(135deg, var(--orange-50), rgba(232, 118, 10, 0.05));
    border: 1px solid rgba(232, 118, 10, 0.2);
}

.comparison-header {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.comparison-idl .comparison-header {
    color: var(--orange-600);
    border-bottom-color: rgba(232, 118, 10, 0.2);
}

.comparison-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.comparison-list li {
    font-size: 0.9rem;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.icon-x {
    color: var(--gray-400);
    font-weight: 700;
    flex-shrink: 0;
    width: 20px;
    text-align: center;
}

.icon-check {
    color: var(--orange-500);
    font-weight: 700;
    flex-shrink: 0;
    width: 20px;
    text-align: center;
}

.comparison-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 3rem;
}

.comparison-divider span {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ═══════════════════════════════════════════════════════
   WIRKLOGIK (Section 4)
   ═══════════════════════════════════════════════════════ */

.wirklogik-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.wirklogik-ring {
    position: relative;
    width: 320px;
    height: 320px;
    margin: 0 auto;
}

.wirklogik-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 0.85rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(232, 118, 10, 0.4);
}

.wirklogik-orbit {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px dashed rgba(255,255,255,0.15);
    animation: slowRotate 40s linear infinite;
}

@keyframes slowRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.wirklogik-orbit .orbit-item {
    animation: counterRotate 40s linear infinite;
}

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

.orbit-item {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    transform: translate(-50%, -50%);
}

.orbit-item:nth-child(1) {
    top: 0%;
    left: 50%;
}
.orbit-item:nth-child(2) {
    top: 75%;
    left: 93%;
}
.orbit-item:nth-child(3) {
    top: 75%;
    left: 7%;
}

.orbit-dot {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(232, 118, 10, 0.2);
    border: 1px solid rgba(232, 118, 10, 0.4);
}

.orbit-item span {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--gray-300);
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.wirklogik-goals {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.goal-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    border-radius: 12px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    transition: all 0.3s ease;
}

.goal-item:hover {
    background: rgba(232, 118, 10, 0.05);
    border-color: rgba(232, 118, 10, 0.2);
}

.goal-num {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--orange-500);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}

.goal-item p {
    font-size: 0.9rem;
    color: var(--gray-300);
    line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════
   MODULES WHEEL (Section 5)
   ═══════════════════════════════════════════════════════ */

.modules-wheel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.module-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.module-center-inner {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 8px 30px rgba(232, 118, 10, 0.35);
}

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

.module-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.75rem 1rem;
    border-radius: 16px;
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    transition: all 0.4s var(--ease-out-expo);
    text-align: center;
}

.module-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    border-color: var(--orange-300);
}

.module-icon {
    width: 40px;
    height: 40px;
    color: var(--orange-500);
}

.module-item span {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray-600);
}

/* ═══════════════════════════════════════════════════════
   FRAMEWORK GRID (Section 6)
   ═══════════════════════════════════════════════════════ */

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

.framework-card {
    padding: 2rem;
    border-radius: 16px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    text-align: center;
    transition: all 0.4s var(--ease-out-expo);
}

.framework-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}

.framework-value {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--orange-500);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.framework-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--dark-900);
    margin-bottom: 0.75rem;
}

.framework-card p {
    font-size: 0.8rem;
    color: var(--gray-500);
    line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════
   TIMELINE (Section 7)
   ═══════════════════════════════════════════════════════ */

.timeline {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gray-200);
}

.timeline-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(to bottom, var(--orange-400), var(--orange-600));
    transition: height 0.3s ease;
}

.timeline-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding-left: 60px;
}

.timeline-item {
    position: relative;
}

.timeline-dot {
    position: absolute;
    left: -48px;
    top: 8px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--white);
    border: 3px solid var(--orange-500);
    z-index: 2;
}

.timeline-content {
    padding: 1.5rem;
    border-radius: 12px;
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    border-color: var(--orange-300);
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.timeline-step {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--orange-500);
    background: rgba(232, 118, 10, 0.08);
    padding: 0.2rem 0.6rem;
    border-radius: 100px;
    margin-bottom: 0.5rem;
}

.timeline-content h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.timeline-content p {
    font-size: 0.85rem;
    color: var(--gray-500);
    line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════
   PHASE 1 (Section 8)
   ═══════════════════════════════════════════════════════ */

.phase-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

.phase-circle {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
}

.phase-circle small {
    font-size: 0.65rem;
    font-weight: 400;
    opacity: 0.7;
}

.phase-circle-coach {
    background: rgba(232, 118, 10, 0.15);
    border: 1px solid rgba(232, 118, 10, 0.3);
    color: var(--orange-400);
}

.phase-circle-center {
    background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
    color: var(--white);
    width: 120px;
    height: 120px;
    box-shadow: 0 8px 30px rgba(232, 118, 10, 0.3);
}

.phase-circle-super {
    background: rgba(232, 118, 10, 0.15);
    border: 1px solid rgba(232, 118, 10, 0.3);
    color: var(--orange-400);
}

.phase-connection {
    width: 30px;
    height: 2px;
    background: rgba(232, 118, 10, 0.3);
}

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

.phase-step {
    padding: 1.25rem;
    border-radius: 12px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
}

.phase-step h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    color: var(--orange-300);
}

.phase-step p {
    font-size: 0.85rem;
    color: var(--gray-400);
    line-height: 1.5;
}

.phase-keywords {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.phase-keywords span {
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.35rem 0.75rem;
    border-radius: 100px;
    background: rgba(232, 118, 10, 0.1);
    color: var(--orange-400);
    border: 1px solid rgba(232, 118, 10, 0.2);
}

/* ═══════════════════════════════════════════════════════
   DEV MODULES (Section 9)
   ═══════════════════════════════════════════════════════ */

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

.dev-module {
    padding: 2.5rem 2rem;
    border-radius: 20px;
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    text-align: center;
    transition: all 0.4s var(--ease-out-expo);
}

.dev-module:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.08);
    border-color: var(--orange-300);
}

.dev-module-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.25rem;
    color: var(--orange-500);
}

.dev-module h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.dev-module p {
    font-size: 0.85rem;
    color: var(--gray-500);
    line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════
   COLLECTIVE (Section 10)
   ═══════════════════════════════════════════════════════ */

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

.collective-card {
    padding: 2.5rem 2rem;
    border-radius: 20px;
    background: var(--dark-700);
    border: 1px solid rgba(255,255,255,0.06);
    text-align: center;
    transition: all 0.4s var(--ease-out-expo);
}

.collective-card:hover {
    transform: translateY(-6px);
    border-color: rgba(232, 118, 10, 0.3);
}

.collective-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.25rem;
    color: var(--orange-400);
}

.collective-card h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.collective-card p {
    font-size: 0.85rem;
    color: var(--gray-400);
    line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════
   REVIEWS (Section 11)
   ═══════════════════════════════════════════════════════ */

.reviews-stack {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.review-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.75rem 2rem;
    border-radius: 16px;
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    transition: all 0.4s var(--ease-out-expo);
}

.review-card:hover {
    transform: translateX(8px);
    border-color: var(--orange-300);
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}

.review-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    color: var(--orange-500);
}

.review-content h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.review-content p {
    font-size: 0.85rem;
    color: var(--gray-500);
    line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════
   RESULTS (Section 12)
   ═══════════════════════════════════════════════════════ */

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

.result-card {
    padding: 2rem;
    border-radius: 16px;
    background: var(--dark-700);
    border: 1px solid rgba(255,255,255,0.06);
    text-align: center;
    transition: all 0.4s var(--ease-out-expo);
}

.result-card:hover {
    transform: translateY(-6px);
    border-color: rgba(232, 118, 10, 0.3);
    background: var(--dark-600);
}

.result-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    color: var(--orange-400);
}

.result-card h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-200);
    line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════
   CTA
   ═══════════════════════════════════════════════════════ */

.section-cta {
    padding: 10rem 0;
    background: linear-gradient(160deg, var(--orange-50), var(--white));
    text-align: center;
}

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

.cta-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 1rem 0;
}

.cta-text {
    font-size: 1.15rem;
    color: var(--gray-500);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    justify-content: center;
}

/* ═══════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════ */

.footer {
    padding: 3rem 0;
    background: var(--dark-900);
    color: var(--gray-400);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
}

.footer-logo .logo-sub {
    color: var(--gray-500);
}

.footer-copy {
    font-size: 0.8rem;
}

/* ═══════════════════════════════════════════════════════
   ANIMATIONS (GSAP handles initial states via fromTo)
   ═══════════════════════════════════════════════════════ */

[data-animate] {
    will-change: transform, opacity;
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════ */

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .section {
        padding: 5rem 0;
    }

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

    .comparison-divider {
        padding: 0;
    }

    .wirklogik-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .modules-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .module-center {
        display: none;
    }

    .phase-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .timeline-items {
        padding-left: 50px;
    }

    .footer-inner {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .framework-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1.25rem;
    }

    .modules-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

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

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