/* ============================================================
   PHARIOON — LANDING PAGE
   Version: 1.1.0
   Palette : African Tech Emerald
   ============================================================ */

/* ============================================================
   VARIABLES
   ============================================================ */
:root {
    --ph-bg: #0A0E1A;
    --ph-bg-soft: #131829;
    --ph-bg-lighter: #1A2036;
    --ph-primary: #00D9A3;
    --ph-primary-dark: #00B386;
    --ph-primary-soft: rgba(0, 217, 163, 0.12);
    --ph-accent: #FFB800;
    --ph-accent-soft: rgba(255, 184, 0, 0.12);
    --ph-text: #F0F4F8;
    --ph-text-light: #A8B0C2;
    --ph-text-muted: #7A8299;
    --ph-border: rgba(255, 255, 255, 0.08);
    --ph-border-primary: rgba(0, 217, 163, 0.3);
    
    --ph-font-display: 'Space Grotesk', -apple-system, sans-serif;
    --ph-font-body: 'Inter', -apple-system, sans-serif;
    --ph-font-mono: 'JetBrains Mono', monospace;
    
    --ph-space-xs: 4px;
    --ph-space-sm: 8px;
    --ph-space-md: 16px;
    --ph-space-lg: 24px;
    --ph-space-xl: 32px;
    --ph-space-2xl: 48px;
    --ph-space-3xl: 64px;
    --ph-space-4xl: 80px;
    --ph-space-5xl: 100px;
    
    --ph-radius-sm: 8px;
    --ph-radius-md: 12px;
    --ph-radius-lg: 16px;
    --ph-radius-xl: 24px;
    --ph-radius-2xl: 32px;
    --ph-radius-full: 9999px;
    
    --ph-shadow-md: 0 4px 16px rgba(0, 0, 0, 0.5);
    --ph-shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.6);
    --ph-shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.7);
    --ph-shadow-primary: 0 12px 40px rgba(0, 217, 163, 0.35);
    
    --ph-ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ph-ease-out: cubic-bezier(0, 0, 0.2, 1);
    --ph-ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ph-ease-smooth: cubic-bezier(0.65, 0, 0.35, 1);
    
    --ph-duration-base: 300ms;
    --ph-duration-slow: 500ms;
    
    --ph-container-max: 1200px;
    --ph-container-pad: 40px;
    
    --ph-z-loader: 9999;
    --ph-z-cursor: 9998;
    --ph-z-header: 1000;
    --ph-z-whatsapp: 900;
}

/* RESET */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    min-height: 100vh;
    font-family: var(--ph-font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--ph-text);
    background: var(--ph-bg);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.1;
    color: var(--ph-text);
}

a {
    color: var(--ph-primary);
    text-decoration: none;
    transition: color var(--ph-duration-base) var(--ph-ease);
}

a:hover { color: var(--ph-accent); }
ul, ol { list-style: none; }
img, svg { display: block; max-width: 100%; height: auto; }

input, button, textarea, select {
    font: inherit;
    color: inherit;
    border: none;
    outline: none;
    background: none;
}

button { cursor: pointer; }

.ph-sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

::selection { background: var(--ph-primary); color: var(--ph-bg); }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--ph-bg-soft); }
::-webkit-scrollbar-thumb { background: var(--ph-primary-dark); border-radius: 9999px; }
::-webkit-scrollbar-thumb:hover { background: var(--ph-primary); }

/* CONTENEUR */
.ph-container {
    width: 100%;
    max-width: var(--ph-container-max);
    margin: 0 auto;
    padding: 0 var(--ph-container-pad);
}

/* LOADER */
.ph-loader {
    position: fixed;
    inset: 0;
    z-index: var(--ph-z-loader);
    background: var(--ph-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s var(--ph-ease), visibility 0.6s var(--ph-ease);
}

.ph-loader.ph-loader-hidden { opacity: 0; visibility: hidden; }

.ph-loader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--ph-space-xl);
}

.ph-loader-logo img {
    animation: phLoaderLogoFade 1s var(--ph-ease-out);
    filter: drop-shadow(0 4px 20px rgba(0, 217, 163, 0.4));
}

@keyframes phLoaderLogoFade {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.ph-loader-progress {
    width: 240px;
    height: 3px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--ph-radius-full);
    overflow: hidden;
}

.ph-loader-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--ph-primary), var(--ph-accent));
    transition: width 0.3s var(--ph-ease);
    box-shadow: 0 0 20px rgba(0, 217, 163, 0.6);
}

.ph-loader-text {
    font-family: var(--ph-font-mono);
    font-size: 12px;
    color: var(--ph-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

/* CURSEUR */
.ph-cursor {
    position: fixed;
    top: 0;
    left: 0;
    z-index: var(--ph-z-cursor);
    pointer-events: none;
    display: none;
}

.ph-cursor-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--ph-primary);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.ph-cursor-ring {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 2px solid var(--ph-primary);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s var(--ph-ease);
}

.ph-cursor.ph-cursor-hover .ph-cursor-ring {
    width: 80px;
    height: 80px;
    background: rgba(0, 217, 163, 0.1);
    border-color: var(--ph-accent);
}

.ph-cursor.ph-cursor-hover .ph-cursor-dot {
    transform: translate(-50%, -50%) scale(0);
}

@media (hover: hover) and (pointer: fine) {
    .ph-cursor { display: block; }
    body { cursor: none; }
    a, button, input, textarea, select { cursor: none; }
}

@media (hover: none), (pointer: coarse) {
    .ph-cursor { display: none !important; }
    body { cursor: auto; }
}

/* HEADER */
.ph-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--ph-z-header);
    padding: var(--ph-space-md) 0;
    background: rgba(10, 14, 26, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--ph-border);
}

.ph-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--ph-space-md);
}

.ph-header-back {
    display: inline-flex;
    align-items: center;
    gap: var(--ph-space-sm);
    font-family: var(--ph-font-mono);
    font-size: 12px;
    color: var(--ph-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: color var(--ph-duration-base) var(--ph-ease);
}

.ph-header-back:hover { color: var(--ph-primary); }

.ph-header-logo img { height: 40px; width: auto; }

.ph-header-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: var(--ph-space-sm);
    padding: 10px 18px;
    background: rgba(37, 211, 102, 0.15);
    color: #25D366;
    border: 1px solid rgba(37, 211, 102, 0.25);
    border-radius: var(--ph-radius-full);
    font-family: var(--ph-font-display);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all var(--ph-duration-base) var(--ph-ease);
}

.ph-header-whatsapp:hover {
    background: #25D366;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    border-color: #25D366;
}

/* HERO */
.ph-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 160px 0 100px;
    overflow: hidden;
}

.ph-hero-bg { position: absolute; inset: 0; z-index: 0; }

.ph-hero-gradient {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 217, 163, 0.15), transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 184, 0, 0.1), transparent 50%),
        linear-gradient(135deg, #0A0E1A 0%, #131829 50%, #0A0E1A 100%);
}

.ph-hero-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.ph-hero-noise {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E");
    opacity: 0.5;
}

.ph-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--ph-space-lg);
}

.ph-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--ph-space-sm);
    padding: 8px 20px;
    background: var(--ph-primary-soft);
    color: var(--ph-primary);
    font-family: var(--ph-font-mono);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border-radius: var(--ph-radius-full);
    border: 1px solid var(--ph-border-primary);
}

.ph-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--ph-primary);
    animation: phPulse 2s ease-in-out infinite;
}

@keyframes phPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.85); }
}

.ph-hero-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 160px;
    height: 160px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--ph-border);
    border-radius: var(--ph-radius-2xl);
    padding: 24px;
}

.ph-hero-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 8px 24px rgba(0, 217, 163, 0.3));
}

.ph-hero-title {
    font-family: var(--ph-font-display);
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--ph-text);
    margin: 0;
}

.ph-text-primary { color: var(--ph-primary); }
.ph-text-accent { color: var(--ph-accent); }

.ph-hero-description {
    font-size: 18px;
    line-height: 1.7;
    color: var(--ph-text-light);
    max-width: 700px;
    margin: 0;
}

.ph-hero-description strong { color: var(--ph-text); font-weight: 600; }

.ph-hero-actions {
    display: flex;
    gap: var(--ph-space-md);
    flex-wrap: wrap;
    justify-content: center;
    margin-top: var(--ph-space-sm);
}

.ph-hero-meta {
    display: flex;
    gap: var(--ph-space-xl);
    flex-wrap: wrap;
    justify-content: center;
    margin-top: var(--ph-space-lg);
    padding-top: var(--ph-space-lg);
    border-top: 1px solid var(--ph-border);
    width: 100%;
}

.ph-hero-meta-item {
    display: inline-flex;
    align-items: center;
    gap: var(--ph-space-sm);
    font-family: var(--ph-font-mono);
    font-size: 11px;
    color: var(--ph-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.ph-hero-meta-item i { color: var(--ph-primary); }

.ph-hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--ph-space-sm);
    color: var(--ph-text-muted);
    font-family: var(--ph-font-mono);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.ph-hero-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--ph-primary), transparent);
}

/* BOUTONS */
.ph-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--ph-space-sm);
    padding: 14px 30px;
    font-family: var(--ph-font-display);
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    border: 2px solid transparent;
    border-radius: var(--ph-radius-full);
    cursor: pointer;
    transition: all var(--ph-duration-base) var(--ph-ease);
    position: relative;
    overflow: hidden;
    min-height: 50px;
    white-space: nowrap;
    text-decoration: none;
}

.ph-btn i { font-size: 16px; }
.ph-btn:hover { transform: translateY(-3px); }

.ph-btn-primary {
    background: var(--ph-primary);
    color: var(--ph-bg);
    box-shadow: 0 4px 16px rgba(0, 217, 163, 0.3);
}

.ph-btn-primary:hover {
    background: var(--ph-primary-dark);
    color: var(--ph-bg);
    box-shadow: var(--ph-shadow-primary);
}

.ph-btn-ghost {
    background: transparent;
    color: var(--ph-text);
    border-color: rgba(255, 255, 255, 0.2);
}

.ph-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--ph-primary);
    color: var(--ph-primary);
}

.ph-btn-outline {
    background: transparent;
    color: var(--ph-primary);
    border-color: var(--ph-primary);
}

.ph-btn-outline:hover {
    background: var(--ph-primary);
    color: var(--ph-bg);
}

.ph-btn-outline-light {
    background: transparent;
    color: var(--ph-text);
    border-color: rgba(255, 255, 255, 0.3);
}

.ph-btn-outline-light:hover {
    background: var(--ph-text);
    color: var(--ph-bg);
    border-color: var(--ph-text);
}

.ph-btn-whatsapp {
    background: #25D366;
    color: #FFFFFF;
}

.ph-btn-whatsapp:hover {
    background: #1EA851;
    color: #FFFFFF;
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.35);
}

.ph-btn-lg {
    padding: 18px 38px;
    font-size: 15px;
    min-height: 58px;
}

.ph-btn-lg i { font-size: 18px; }

/* SECTIONS */
.ph-section {
    padding: var(--ph-space-5xl) 0;
    position: relative;
}

.ph-bg-alt { background: var(--ph-bg-soft); }

.ph-section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--ph-space-3xl);
}

.ph-section-tag {
    display: inline-flex;
    align-items: center;
    gap: var(--ph-space-sm);
    padding: 8px 18px;
    background: var(--ph-primary-soft);
    color: var(--ph-primary);
    font-family: var(--ph-font-mono);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border-radius: var(--ph-radius-full);
    border: 1px solid var(--ph-border-primary);
    margin-bottom: var(--ph-space-md);
}

.ph-section-tag::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--ph-primary);
}

.ph-section-tag-light {
    background: rgba(255, 255, 255, 0.08);
    color: var(--ph-text);
    border-color: rgba(255, 255, 255, 0.15);
}

.ph-section-title {
    font-family: var(--ph-font-display);
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: var(--ph-space-md) 0;
}

.ph-section-subtitle {
    font-size: 17px;
    color: var(--ph-text-light);
    line-height: 1.7;
    margin: 0;
}

/* PROBLÈME */
.ph-problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--ph-space-lg);
}

.ph-problem-card {
    background: var(--ph-bg-soft);
    border: 1px solid var(--ph-border);
    border-radius: var(--ph-radius-xl);
    padding: var(--ph-space-xl);
    display: flex;
    flex-direction: column;
    gap: var(--ph-space-md);
    transition: all var(--ph-duration-base) var(--ph-ease);
}

.ph-problem-card:hover {
    transform: translateY(-6px);
    border-color: var(--ph-border-primary);
    box-shadow: var(--ph-shadow-lg);
}

.ph-problem-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(230, 57, 70, 0.12);
    color: #E63946;
    border-radius: var(--ph-radius-md);
    font-size: 24px;
}

.ph-problem-card h3 {
    font-family: var(--ph-font-display);
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.01em;
}

.ph-problem-card p {
    font-size: 15px;
    line-height: 1.65;
    color: var(--ph-text-light);
    margin: 0;
}

/* SOLUTION */
.ph-solution-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--ph-space-lg);
}

.ph-solution-card {
    position: relative;
    background: var(--ph-bg);
    border: 1px solid var(--ph-border);
    border-radius: var(--ph-radius-xl);
    padding: var(--ph-space-xl);
    display: flex;
    flex-direction: column;
    gap: var(--ph-space-md);
    transition: all var(--ph-duration-base) var(--ph-ease);
    overflow: hidden;
}

.ph-solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--ph-primary);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform var(--ph-duration-base) var(--ph-ease);
}

.ph-solution-card:hover::before { transform: scaleY(1); }

.ph-solution-card:hover {
    transform: translateY(-6px);
    border-color: var(--ph-border-primary);
    box-shadow: var(--ph-shadow-lg);
}

.ph-solution-number {
    font-family: var(--ph-font-mono);
    font-size: 11px;
    font-weight: 700;
    color: var(--ph-primary);
    letter-spacing: 0.15em;
}

.ph-solution-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: var(--ph-primary-soft);
    color: var(--ph-primary);
    border-radius: var(--ph-radius-md);
    font-size: 22px;
    transition: all var(--ph-duration-base) var(--ph-ease);
}

.ph-solution-card:hover .ph-solution-icon {
    background: var(--ph-primary);
    color: var(--ph-bg);
    transform: scale(1.05) rotate(-5deg);
}

.ph-solution-card h3 {
    font-family: var(--ph-font-display);
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.01em;
}

.ph-solution-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--ph-text-light);
    margin: 0;
}

/* APERÇU */
.ph-preview {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--ph-space-lg);
}

.ph-preview-item {
    position: relative;
    background: var(--ph-bg-soft);
    border: 1px solid var(--ph-border);
    border-radius: var(--ph-radius-xl);
    overflow: hidden;
    aspect-ratio: 4/3;
    transition: all var(--ph-duration-base) var(--ph-ease);
}

.ph-preview-item:hover {
    transform: translateY(-6px);
    border-color: var(--ph-border-primary);
    box-shadow: var(--ph-shadow-xl);
}

.ph-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ph-preview-large {
    grid-column: 1 / -1;
    aspect-ratio: 21/9;
}

.ph-preview-label {
    position: absolute;
    bottom: var(--ph-space-md);
    left: var(--ph-space-md);
    display: inline-flex;
    align-items: center;
    gap: var(--ph-space-sm);
    padding: 8px 16px;
    background: rgba(10, 14, 26, 0.9);
    backdrop-filter: blur(10px);
    color: var(--ph-text);
    font-family: var(--ph-font-mono);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: var(--ph-radius-full);
    border: 1px solid var(--ph-border);
}

.ph-preview-label i { color: var(--ph-primary); }

/* PHILOSOPHIE */
.ph-philosophy {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--ph-space-lg);
}

.ph-philosophy-quote { margin: 0; }

.ph-philosophy-text {
    font-family: var(--ph-font-display);
    font-size: clamp(26px, 3.5vw, 44px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 0;
}

.ph-philosophy-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: var(--ph-space-lg);
}

.ph-philosophy-author cite {
    font-family: var(--ph-font-display);
    font-size: 17px;
    font-weight: 700;
    font-style: normal;
    color: var(--ph-text);
}

.ph-philosophy-author span {
    font-family: var(--ph-font-mono);
    font-size: 11px;
    color: var(--ph-primary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.ph-philosophy-desc {
    font-size: 16px;
    line-height: 1.7;
    color: var(--ph-text-light);
    max-width: 700px;
    margin: 0;
}

.ph-philosophy-desc strong { color: var(--ph-text); }

/* ROADMAP */
.ph-roadmap {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding: var(--ph-space-lg) 0;
}

.ph-roadmap::before {
    content: '';
    position: absolute;
    left: 28px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--ph-border) 10%, var(--ph-border) 90%, transparent);
}

.ph-roadmap-item {
    position: relative;
    padding-left: 80px;
    margin-bottom: var(--ph-space-2xl);
}

.ph-roadmap-item:last-child { margin-bottom: 0; }

.ph-roadmap-marker {
    position: absolute;
    left: 0;
    top: 4px;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ph-bg-soft);
    border: 2px solid var(--ph-border);
    border-radius: var(--ph-radius-full);
    color: var(--ph-text-muted);
    font-size: 20px;
    z-index: 2;
}

.ph-roadmap-done .ph-roadmap-marker {
    background: var(--ph-primary);
    border-color: var(--ph-primary);
    color: var(--ph-bg);
}

.ph-roadmap-active .ph-roadmap-marker {
    background: var(--ph-bg-soft);
    border-color: var(--ph-primary);
    color: var(--ph-primary);
    box-shadow: 0 0 0 6px rgba(0, 217, 163, 0.1);
    animation: phRoadmapPulse 2s ease-in-out infinite;
}

@keyframes phRoadmapPulse {
    0%, 100% { box-shadow: 0 0 0 6px rgba(0, 217, 163, 0.1); }
    50% { box-shadow: 0 0 0 12px rgba(0, 217, 163, 0.05); }
}

.ph-roadmap-step {
    display: inline-block;
    font-family: var(--ph-font-mono);
    font-size: 11px;
    font-weight: 600;
    color: var(--ph-primary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: var(--ph-space-sm);
}

.ph-roadmap-content h3 {
    font-family: var(--ph-font-display);
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 var(--ph-space-sm);
    letter-spacing: -0.01em;
}

.ph-roadmap-content p {
    font-size: 15px;
    line-height: 1.65;
    color: var(--ph-text-light);
    margin: 0;
}

/* NOTIFY */
.ph-notify {
    background: linear-gradient(135deg, #0A0E1A 0%, #0F1A1F 50%, #0A0E1A 100%);
    position: relative;
    overflow: hidden;
}

.ph-notify::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 217, 163, 0.15), transparent 70%);
    pointer-events: none;
}

.ph-notify-inner {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--ph-space-md);
}

.ph-notify-title {
    font-family: var(--ph-font-display);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: var(--ph-space-md) 0;
}

.ph-notify-text {
    font-size: 16px;
    color: var(--ph-text-light);
    line-height: 1.7;
    margin-bottom: var(--ph-space-lg);
}

.ph-notify-form {
    display: flex;
    flex-direction: column;
    gap: var(--ph-space-md);
    width: 100%;
    max-width: 500px;
}

.ph-notify-field { width: 100%; }

.ph-notify-field input,
.ph-notify-field select {
    width: 100%;
    padding: 16px 20px;
    background: var(--ph-bg);
    border: 1px solid var(--ph-border);
    border-radius: var(--ph-radius-md);
    color: var(--ph-text);
    font-size: 15px;
    transition: all var(--ph-duration-base) var(--ph-ease);
}

.ph-notify-field input::placeholder { color: var(--ph-text-muted); }

.ph-notify-field input:focus,
.ph-notify-field select:focus {
    border-color: var(--ph-primary);
    box-shadow: 0 0 0 4px var(--ph-primary-soft);
    outline: none;
}

.ph-notify-field select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237A8299' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    padding-right: 48px;
    cursor: pointer;
}

.ph-notify-form .ph-btn { width: 100%; margin-top: var(--ph-space-sm); }

.ph-notify-note {
    display: inline-flex;
    align-items: center;
    gap: var(--ph-space-sm);
    font-size: 13px;
    color: var(--ph-text-muted);
    margin-top: var(--ph-space-md);
}

.ph-notify-note i { color: var(--ph-accent); }

.ph-notify-social {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--ph-space-md);
    margin-top: var(--ph-space-xl);
    padding-top: var(--ph-space-xl);
    border-top: 1px solid var(--ph-border);
    width: 100%;
}

.ph-notify-social > span {
    font-family: var(--ph-font-mono);
    font-size: 11px;
    color: var(--ph-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.ph-notify-social-links {
    display: flex;
    gap: var(--ph-space-sm);
}

.ph-notify-social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--ph-text-light);
    border: 1px solid var(--ph-border);
    border-radius: var(--ph-radius-full);
    font-size: 16px;
    transition: all var(--ph-duration-base) var(--ph-ease);
}

.ph-notify-social-links a:hover {
    background: var(--ph-primary);
    color: var(--ph-bg);
    border-color: var(--ph-primary);
    transform: translateY(-3px);
    box-shadow: var(--ph-shadow-primary);
}

/* CRÉATEUR */
.ph-creator-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.ph-creator-title {
    font-family: var(--ph-font-display);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    margin: var(--ph-space-md) 0 var(--ph-space-2xl);
    letter-spacing: -0.02em;
}

.ph-creator-card {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: var(--ph-space-2xl);
    align-items: center;
    background: var(--ph-bg-soft);
    border: 1px solid var(--ph-border);
    border-radius: var(--ph-radius-xl);
    padding: var(--ph-space-2xl);
    text-align: left;
    transition: all var(--ph-duration-base) var(--ph-ease);
}

.ph-creator-card:hover {
    border-color: var(--ph-border-primary);
    box-shadow: var(--ph-shadow-lg);
}

.ph-creator-avatar {
    position: relative;
    width: 160px;
    height: 160px;
    border-radius: var(--ph-radius-full);
    overflow: hidden;
    border: 3px solid var(--ph-primary);
    box-shadow: 
        0 0 0 6px rgba(0, 217, 163, 0.1),
        0 12px 40px rgba(0, 217, 163, 0.25);
    flex-shrink: 0;
    transition: all var(--ph-duration-base) var(--ph-ease);
}

.ph-creator-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.ph-creator-card:hover .ph-creator-avatar {
    transform: scale(1.03);
    box-shadow: 
        0 0 0 8px rgba(0, 217, 163, 0.15),
        0 16px 48px rgba(0, 217, 163, 0.35);
}

.ph-creator-info h3 {
    font-family: var(--ph-font-display);
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 4px;
    letter-spacing: -0.01em;
}

.ph-creator-role {
    font-family: var(--ph-font-mono);
    font-size: 12px;
    color: var(--ph-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--ph-space-md);
}

.ph-creator-bio {
    font-size: 15px;
    line-height: 1.7;
    color: var(--ph-text-light);
    font-style: italic;
    margin-bottom: var(--ph-space-lg);
}

.ph-creator-links {
    display: flex;
    gap: var(--ph-space-md);
    flex-wrap: wrap;
}

/* CTA FINAL */
.ph-cta {
    text-align: center;
    padding: var(--ph-space-5xl) 0;
}

.ph-cta-inner {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--ph-space-md);
}

.ph-cta-title {
    font-family: var(--ph-font-display);
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0;
}

.ph-cta-text {
    font-size: 16px;
    color: var(--ph-text-light);
    margin-bottom: var(--ph-space-lg);
}

.ph-cta-actions {
    display: flex;
    gap: var(--ph-space-md);
    flex-wrap: wrap;
    justify-content: center;
}

/* FOOTER */
.ph-footer {
    background: var(--ph-bg-soft);
    border-top: 1px solid var(--ph-border);
    padding: var(--ph-space-2xl) 0 var(--ph-space-lg);
}

.ph-footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--ph-space-md);
    padding-bottom: var(--ph-space-lg);
    border-bottom: 1px solid var(--ph-border);
}

.ph-footer-logo img { height: 36px; width: auto; }

.ph-footer-text {
    font-size: 14px;
    color: var(--ph-text-light);
    text-align: center;
    margin: 0;
}

.ph-footer-social {
    display: flex;
    gap: var(--ph-space-sm);
}

.ph-footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--ph-text-light);
    border: 1px solid var(--ph-border);
    border-radius: var(--ph-radius-full);
    font-size: 15px;
    transition: all var(--ph-duration-base) var(--ph-ease);
}

.ph-footer-social a:hover {
    background: var(--ph-primary);
    color: var(--ph-bg);
    border-color: var(--ph-primary);
    transform: translateY(-3px);
}

.ph-footer-bottom {
    padding-top: var(--ph-space-lg);
    text-align: center;
}

.ph-footer-bottom p {
    font-family: var(--ph-font-mono);
    font-size: 11px;
    color: var(--ph-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0;
}

/* WHATSAPP */
.ph-whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: var(--ph-z-whatsapp);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #FFFFFF;
    border-radius: var(--ph-radius-full);
    font-size: 30px;
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.45);
    transition: all var(--ph-duration-base) var(--ph-ease-bounce);
    text-decoration: none;
    animation: phWhatsappPulse 2.5s ease-out infinite;
}

.ph-whatsapp-float::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: #25D366;
    animation: phWhatsappRing 2.5s ease-out infinite;
    z-index: -1;
}

.ph-whatsapp-float:hover {
    background: linear-gradient(135deg, #1EA851, #0F7554);
    color: #FFFFFF;
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 16px 50px rgba(37, 211, 102, 0.6);
    animation: none;
}

.ph-whatsapp-tooltip {
    position: absolute;
    right: calc(100% + 16px);
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    padding: 10px 18px;
    background: var(--ph-bg-soft);
    color: var(--ph-text);
    font-family: var(--ph-font-display);
    font-size: 13px;
    font-weight: 600;
    border-radius: var(--ph-radius-md);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all var(--ph-duration-base) var(--ph-ease);
    pointer-events: none;
    box-shadow: var(--ph-shadow-lg);
    border: 1px solid var(--ph-border);
}

.ph-whatsapp-float:hover .ph-whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

@keyframes phWhatsappPulse {
    0%, 100% { box-shadow: 0 12px 40px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.7); }
    50% { box-shadow: 0 12px 40px rgba(37, 211, 102, 0.45), 0 0 0 18px rgba(37, 211, 102, 0); }
}

@keyframes phWhatsappRing {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.7); opacity: 0; }
}