/* ===================================
   BRAVES 360° ONBOARDING - STYLES
   iOS 26 Glassmorphism Design
   Primary: #ccff00 | Dark Mode
   =================================== */

/* ===== CSS VARIABLES ===== */
:root {
    /* Primary Colors */
    --primary: #ccff00;
    --primary-rgb: 204, 255, 0;
    --primary-dark: #a3cc00;
    --primary-light: #d4ff33;
    --primary-glow: rgba(204, 255, 0, 0.4);

    /* Background Colors */
    --bg-dark: #0a0a0f;
    --bg-darker: #050508;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-card-hover: rgba(255, 255, 255, 0.06);

    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-tertiary: rgba(255, 255, 255, 0.5);
    --text-muted: rgba(255, 255, 255, 0.4);

    /* Glass Effect */
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-blur: 20px;
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);

    /* Borders */
    --border-subtle: rgba(255, 255, 255, 0.08);
    --border-light: rgba(255, 255, 255, 0.12);

    /* Spacing */
    --section-padding: 120px;
    --container-max: 1200px;

    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-family);
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===== ANIMATED BACKGROUND ===== */
.bg-gradient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(var(--primary-rgb), 0.15), transparent),
        radial-gradient(ellipse 60% 40% at 100% 50%, rgba(var(--primary-rgb), 0.08), transparent),
        radial-gradient(ellipse 50% 30% at 0% 80%, rgba(var(--primary-rgb), 0.1), transparent),
        var(--bg-dark);
    z-index: -3;
}

.bg-noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    z-index: -2;
    pointer-events: none;
}

.floating-orbs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: rgba(var(--primary-rgb), 0.3);
    top: -200px;
    right: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: rgba(var(--primary-rgb), 0.2);
    bottom: 20%;
    left: -150px;
    animation-delay: -5s;
}

.orb-3 {
    width: 250px;
    height: 250px;
    background: rgba(var(--primary-rgb), 0.25);
    top: 40%;
    right: -100px;
    animation-delay: -10s;
}

.orb-4 {
    width: 350px;
    height: 350px;
    background: rgba(var(--primary-rgb), 0.15);
    bottom: -100px;
    left: 30%;
    animation-delay: -15s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(30px, -30px) scale(1.05);
    }

    50% {
        transform: translate(-20px, 20px) scale(0.95);
    }

    75% {
        transform: translate(-30px, -20px) scale(1.02);
    }
}

/* ===== NAVIGATION ===== */
.nav-glass {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 24px;
    background: rgba(10, 10, 15, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    transition: all var(--transition-medium);
}

.nav-glass.scrolled {
    background: rgba(10, 10, 15, 0.9);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    font-size: 1.5rem;
}

.logo-text {
    color: var(--text-primary);
    letter-spacing: -0.02em;
    font-weight: 900;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    position: relative;
    transition: color var(--transition-fast);
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width var(--transition-medium);
}

.nav-link:hover::after {
    width: 100%;
}

/* ===== GLASS CARD ===== */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    box-shadow: var(--glass-shadow);
    transition: all var(--transition-medium);
}

.glass-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.glass-card.featured {
    border-color: rgba(var(--primary-rgb), 0.3);
    box-shadow:
        var(--glass-shadow),
        0 0 40px rgba(var(--primary-rgb), 0.1);
}

/* ===== CONTAINER ===== */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 80px;
    position: relative;
}

.hero-content {
    text-align: center;
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(var(--primary-rgb), 0.1);
    border: 1px solid rgba(var(--primary-rgb), 0.3);
    padding: 8px 20px;
    border-radius: 100px;
    margin-bottom: 32px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--primary);
    animation: pulse 2s ease-in-out infinite;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    animation: blink 1.5s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(var(--primary-rgb), 0.3);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(var(--primary-rgb), 0);
    }
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.hero-title {
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 30px var(--primary-glow));
}

.hero-subtitle {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    color: var(--text-secondary);
    font-weight: 400;
    margin-bottom: 8px;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 60px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
}

.stat-card {
    padding: 24px;
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-tertiary);
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: bounce 2s ease-in-out infinite;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--primary), transparent);
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(8px);
    }
}

/* ===== SECTIONS ===== */
.section {
    padding: var(--section-padding) 0;
    position: relative;
}

.section-dark {
    background: rgba(0, 0, 0, 0.3);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    background: rgba(var(--primary-rgb), 0.1);
    border: 1px solid rgba(var(--primary-rgb), 0.2);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--primary);
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.section-description strong {
    color: var(--primary);
}

/* ===== PHILOSOPHY SECTION ===== */
.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.philosophy-card {
    padding: 32px;
    text-align: center;
}

.philosophy-card .card-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}

.philosophy-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.philosophy-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.philosophy-card p strong {
    color: var(--primary);
}

/* ===== EXPECTATION TIMELINE ===== */
.expectation-timeline {
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 32px;
    text-align: center;
}

.expectation-items {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.expectation-item {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

.exp-icon {
    width: 50px;
    height: 50px;
    background: rgba(var(--primary-rgb), 0.1);
    border: 2px solid rgba(var(--primary-rgb), 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.exp-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.exp-time {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary);
}

.exp-label {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.exp-line {
    position: absolute;
    left: 25px;
    top: 50px;
    width: 2px;
    height: calc(100% + 24px);
    background: linear-gradient(to bottom, rgba(var(--primary-rgb), 0.3), transparent);
}

.expectation-item:last-child .exp-line {
    display: none;
}

/* ===== PHASE NAVIGATION ===== */
.phase-nav {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
    overflow-x: auto;
    padding: 4px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.phase-nav::-webkit-scrollbar {
    display: none;
}

.phase-btn {
    flex: 1;
    min-width: 140px;
    padding: 16px 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: all var(--transition-medium);
    backdrop-filter: blur(10px);
}

.phase-btn:hover {
    background: var(--bg-card-hover);
    border-color: rgba(var(--primary-rgb), 0.3);
    transform: translateY(-2px);
}

.phase-btn.active {
    background: rgba(var(--primary-rgb), 0.1);
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(var(--primary-rgb), 0.2);
}

.phase-icon {
    font-size: 1.5rem;
}

.phase-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
}

.phase-days {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 500;
}

.phase-btn.active .phase-name {
    color: var(--primary);
}

/* ===== PHASE CONTENT ===== */
.phase-content {
    position: relative;
}

.phase-panel {
    display: none;
    animation: fadeIn 0.4s ease;
}

.phase-panel.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.phase-header {
    padding: 32px;
    margin-bottom: 32px;
}

.phase-title-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 16px;
}

.phase-title-area h3 {
    font-size: 1.5rem;
    font-weight: 700;
}

.phase-period {
    background: rgba(var(--primary-rgb), 0.15);
    color: var(--primary);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
}

.phase-objective {
    color: var(--text-secondary);
    font-size: 1rem;
}

.phase-objective strong {
    color: var(--text-primary);
}

/* ===== ACTIVITY GRID ===== */
.phase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}

.activity-card {
    padding: 24px;
}

.activity-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.day-badge {
    background: var(--primary);
    color: var(--bg-dark);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 100px;
}

.activity-header h4 {
    font-size: 1rem;
    font-weight: 600;
}

.activity-desc {
    color: var(--text-tertiary);
    font-size: 0.875rem;
    margin-bottom: 16px;
}

.activity-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 16px;
    border-top: 1px solid var(--border-subtle);
}

.activity-meta .responsible {
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 600;
}

.activity-meta .deliverable {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* ===== PHASE REQUIREMENTS & RESULTS ===== */
.phase-requirements,
.phase-result,
.kpi-card {
    padding: 28px;
    margin-bottom: 24px;
}

.phase-requirements h4,
.phase-result h4,
.kpi-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.requirements-list,
.result-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.requirements-list li,
.result-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.requirements-list li::before {
    content: '☐';
    color: var(--primary);
    font-size: 1rem;
}

.result-list li::before {
    content: '→';
    color: var(--primary);
    font-weight: bold;
}

.result-list li strong {
    color: var(--primary);
}

/* ===== KPI CARD ===== */
.kpi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.kpi-item {
    text-align: center;
    padding: 20px;
    background: rgba(var(--primary-rgb), 0.05);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(var(--primary-rgb), 0.1);
}

.kpi-value {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
}

.kpi-label {
    font-size: 0.8rem;
    color: var(--text-tertiary);
}

/* ===== COMMITMENT SECTION ===== */
.commitment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.commitment-card {
    padding: 36px;
}

.commitment-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
}

.commitment-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    background: rgba(var(--primary-rgb), 0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.commitment-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
}

.commitment-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.commitment-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.check-icon {
    font-size: 1rem;
    flex-shrink: 0;
}

/* ===== BONUS SECTION ===== */
.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.bonus-card {
    padding: 36px;
    text-align: center;
}

.bonus-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.bonus-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.bonus-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    text-align: left;
}

.bonus-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-secondary);
    padding-left: 16px;
    position: relative;
}

.bonus-list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: 0.8rem;
}

/* ===== EXPECTATION MANAGEMENT ===== */
.expectation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.expectation-card {
    padding: 36px;
}

.expectation-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.expectation-card.negative h3 {
    color: #ff6b6b;
}

.expectation-card.positive h3 {
    color: var(--primary);
}

.expectation-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.expectation-list li {
    font-size: 0.95rem;
    color: var(--text-secondary);
    padding-left: 28px;
    position: relative;
}

.expectation-card.negative .expectation-list li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #ff6b6b;
    font-weight: bold;
}

.expectation-card.positive .expectation-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 80px 0;
}

.cta-content {
    text-align: center;
    padding: 60px 40px;
    background:
        linear-gradient(135deg, rgba(var(--primary-rgb), 0.1) 0%, transparent 50%),
        var(--glass-bg);
    border: 1px solid rgba(var(--primary-rgb), 0.2);
}

.cta-title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.cta-badge {
    display: inline-block;
    background: var(--primary);
    color: var(--bg-dark);
    padding: 12px 32px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    box-shadow: 0 0 40px var(--primary-glow);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        box-shadow: 0 0 20px rgba(var(--primary-rgb), 0.3);
    }

    to {
        box-shadow: 0 0 40px rgba(var(--primary-rgb), 0.6);
    }
}

/* ===== FOOTER ===== */
.footer {
    padding: 60px 0;
    border-top: 1px solid var(--border-subtle);
    background: rgba(0, 0, 0, 0.3);
}

.footer-content {
    text-align: center;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 900;
    font-size: 2rem;
    margin-bottom: 16px;
}

.footer-tagline {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 8px;
}

.footer-tagline-sub {
    color: var(--text-tertiary);
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.footer-contact {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.footer-contact p {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.footer-copy {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* ===== 5 PILLARS SECTION ===== */
.pillars-section {
    margin-top: 60px;
    margin-bottom: 40px;
}

.pillars-title {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 32px;
    color: var(--text-primary);
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.pillar-card {
    padding: 24px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), transparent);
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.pillar-card:hover::before {
    opacity: 1;
}

.pillar-number {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary);
    opacity: 0.3;
    margin-bottom: 12px;
    line-height: 1;
}

.pillar-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.pillar-card p {
    font-size: 0.8rem;
    color: var(--text-tertiary);
    line-height: 1.4;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    :root {
        --section-padding: 80px;
    }

    .nav-links {
        display: none;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .phase-nav {
        gap: 8px;
    }

    .phase-btn {
        min-width: 100px;
        padding: 12px 16px;
    }

    .phase-name {
        font-size: 0.75rem;
    }

    .phase-grid {
        grid-template-columns: 1fr;
    }

    .commitment-grid,
    .bonus-grid,
    .expectation-grid {
        grid-template-columns: 1fr;
    }

    .expectation-timeline {
        padding: 24px;
    }

    .phase-header,
    .phase-requirements,
    .phase-result,
    .kpi-card,
    .commitment-card,
    .bonus-card,
    .expectation-card {
        padding: 24px;
    }

    .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pillar-card:last-child {
        grid-column: span 2;
    }

    .footer-contact {
        flex-direction: column;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .stat-number {
        font-size: 2rem;
    }
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-darker);
}

::-webkit-scrollbar-thumb {
    background: rgba(var(--primary-rgb), 0.3);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(var(--primary-rgb), 0.5);
}

/* ===== SELECTION ===== */
::selection {
    background: rgba(var(--primary-rgb), 0.3);
    color: var(--text-primary);
}

/* ===== FOCUS STATES ===== */
*:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}