:root {
    --cyan: #2ab8c4;
    --emerald: #3cb84a;
    --amber: #d4b93c;
    --bg: #0a1f1c;
    --surface: #0f2a26;
    --border: rgba(42, 184, 196, 0.18);
    --green:   #3cb84a;
    --gold:    #d4b93c;
    --dark:    #0a1f1c;
    --text:    #1a2e2b;
    --muted:   #6b8a85;
}  

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

html, body {
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden;
    background: #0a1f1c;
    font-family: 'Syne', sans-serif;
}


.animation-screen {
    width: 100vw;
    height: 100vh;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 15% 15%, rgba(42,184,196,0.10) 0%, transparent 60%),
        radial-gradient(ellipse 55% 55% at 85% 80%, rgba(60,184,74,0.08) 0%, transparent 60%),
        radial-gradient(ellipse 50% 45% at 55% 45%, rgba(212,185,60,0.05) 0%, transparent 60%);
}

.grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(42,184,196,0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(42,184,196,0.06) 1px, transparent 1px);
    background-size: 60px 60px;
}

.grain {
    position: absolute;
    inset: -50%;
    width: 200%; height: 200%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    opacity: 0.35;
    pointer-events: none;
    animation: grainAnim 0.5s steps(2) infinite;
}
@keyframes grainAnim {
    0%   { transform: translate(0, 0); }
    25%  { transform: translate(-2%, -1%); }
    50%  { transform: translate(1%, 2%); }
    75%  { transform: translate(-1%, 1%); }
    100% { transform: translate(2%, -2%); }
}

.scanlines {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0,0,0,0.06) 2px,
        rgba(0,0,0,0.06) 4px
    );
    pointer-events: none;
}

.particles-canvas {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.wrapper {
    position: relative;
    z-index: 10;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s ease;
}
.slide.active {
    opacity: 1;
    pointer-events: all;
}

.intro-badge {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    color: var(--cyan);
    text-transform: uppercase;
    opacity: 0;
    animation: revealUp 0.6s ease 0.3s forwards;
    background: rgba(42,184,196,0.08);
    padding: 6px 16px;
    border-radius: 20px;
    border: 1px solid rgba(42,184,196,0.2);
}

.intro-logo {
    opacity: 0;
    animation: revealScale 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.7s forwards;
}
.intro-logo img {
    width: min(500px, 80vw);
    filter: drop-shadow(0 0 60px rgba(42,184,196,0.25));
}

.intro-tagline {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.1rem, 2.5vw, 1.6rem);
    font-weight: 700;
    letter-spacing: 0.05em;
    background: linear-gradient(90deg, var(--cyan) 0%, var(--emerald) 50%, var(--amber) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    animation: revealUp 0.6s ease 1.3s forwards;
}

.intro-line {
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--cyan), transparent);
    animation: expandLine 1s ease 1.8s forwards;
}
@keyframes expandLine {
    to { width: min(400px, 70vw); }
}

.device-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.4em;
    color: rgba(42,184,196,0.75);
    text-transform: uppercase;
    opacity: 0;
    animation: revealUp 0.5s ease 0.1s forwards;
}

.monitor-wrap {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    animation: revealDevice 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

.monitor {
    width: min(680px, 90vw);
    background: #080f1e;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(42,184,196,0.1),
        0 40px 80px -20px rgba(0,0,0,0.8),
        0 0 80px -20px rgba(42,184,196,0.08);
    position: relative;
}

.browser-bar {
    height: 40px;
    background: #0d1526;
    display: flex;
    align-items: center;
    padding: 0 16px;
    gap: 8px;
    border-bottom: 1px solid rgba(42,184,196,0.08);
    flex-shrink: 0;
}
.browser-dot { width: 10px; height: 10px; border-radius: 50%; }
.browser-dot:nth-child(1) { background: #ff5f57; }
.browser-dot:nth-child(2) { background: #febc2e; }
.browser-dot:nth-child(3) { background: #28c840; }
.browser-url {
    flex: 1; margin: 0 12px; height: 22px;
    background: rgba(42,184,196,0.06);
    border: 1px solid rgba(42,184,196,0.1);
    border-radius: 4px;
    display: flex; align-items: center; padding: 0 10px; gap: 6px;
}
.url-lock { width: 8px; height: 8px; border: 1.5px solid var(--emerald); border-radius: 2px; flex-shrink: 0; }
.url-text { font-family: 'JetBrains Mono', monospace; font-size: 0.62rem; color: rgba(255,255,255,0.4); white-space: nowrap; }
.url-text span { color: var(--emerald); }

.site-ui { overflow: hidden; }

.site-nav {
    height: 44px;
    background: rgba(8,15,30,0.95);
    border-bottom: 1px solid rgba(42,184,196,0.1);
    display: flex;
    align-items: center;
    padding: 0 24px;
    gap: 0;
}
.site-nav-logo {
    display: flex; align-items: center; gap: 8px; margin-right: auto;
}
.site-nav-logo-sq {
    width: 22px; height: 22px;
    background: linear-gradient(135deg, var(--cyan), var(--emerald));
    border-radius: 5px;
}
.site-nav-logo-bar {
    width: 48px; height: 8px;
    background: linear-gradient(90deg, rgba(255,255,255,0.5), rgba(255,255,255,0.2));
    border-radius: 4px;
}
.site-nav-links { display: flex; gap: 20px; margin-right: 20px; }
.site-nav-link {
    width: 30px; height: 7px;
    background: rgba(255,255,255,0.18);
    border-radius: 4px;
}
.site-nav-link:nth-child(2) { width: 38px; }
.site-nav-link:nth-child(3) { width: 26px; }
.site-nav-cta {
    height: 24px; width: 64px;
    background: linear-gradient(90deg, var(--cyan), var(--emerald));
    border-radius: 5px;
    opacity: 0.85;
}

.site-hero {
    display: flex;
    align-items: center;
    padding: 22px 28px 18px;
    gap: 24px;
    border-bottom: 1px solid rgba(42,184,196,0.06);
}

.site-hero-left { flex: 1; display: flex; flex-direction: column; gap: 9px; }
.site-hero-badge {
    display: flex; align-items: center; gap: 6px; width: fit-content;
    padding: 4px 10px;
    background: rgba(42,184,196,0.08);
    border: 1px solid rgba(42,184,196,0.2);
    border-radius: 20px;
}

.site-hero-badge-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--cyan); }
.site-hero-badge-text { width: 55px; height: 6px; background: rgba(42,184,196,0.5); border-radius: 3px; }
.site-hero-h1-l1 { height: 18px; width: 88%; background: linear-gradient(90deg, rgba(255,255,255,0.7), rgba(255,255,255,0.4)); border-radius: 5px; }
.site-hero-h1-l2 { height: 18px; width: 65%; background: linear-gradient(90deg, var(--cyan) 0%, var(--emerald) 60%, transparent); border-radius: 5px; opacity: 0.7; }
.site-hero-sub-l1 { height: 8px; width: 90%; background: rgba(255,255,255,0.15); border-radius: 4px; }
.site-hero-sub-l2 { height: 8px; width: 70%; background: rgba(255,255,255,0.1); border-radius: 4px; }
.site-hero-btns { display: flex; gap: 10px; margin-top: 4px; }

.site-btn-primary {
    height: 28px; width: 80px;
    background: linear-gradient(90deg, var(--cyan), var(--emerald));
    border-radius: 6px;
}

.site-btn-secondary {
    height: 28px; width: 80px;
    border: 1px solid rgba(42,184,196,0.3);
    border-radius: 6px;
    background: rgba(42,184,196,0.05);
}

.site-hero-right {
    width: 200px; height: 130px; flex-shrink: 0;
    background: linear-gradient(135deg, rgba(42,184,196,0.12) 0%, rgba(60,184,74,0.08) 50%, rgba(212,185,60,0.06) 100%);
    border: 1px solid rgba(42,184,196,0.18);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.site-hero-right::before {
    content: '';
    position: absolute;
    top: -30px; right: -30px;
    width: 110px; height: 110px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(42,184,196,0.2) 0%, transparent 70%);
}

.site-hero-chart {
    position: absolute;
    bottom: 16px; left: 16px; right: 16px;
    height: 60px;
    display: flex; align-items: flex-end; gap: 5px;
}

.chart-bar {
    flex: 1;
    border-radius: 3px 3px 0 0;
    background: linear-gradient(180deg, var(--cyan), rgba(42,184,196,0.2));
    animation: chartGrow 0.6s ease both;
}

@keyframes chartGrow { from { transform: scaleY(0); transform-origin: bottom; } to { transform: scaleY(1); } }
.chart-bar:nth-child(1) { height: 30%; animation-delay: 0.6s; }
.chart-bar:nth-child(2) { height: 55%; animation-delay: 0.7s; background: linear-gradient(180deg, var(--emerald), rgba(60,184,74,0.2)); }
.chart-bar:nth-child(3) { height: 40%; animation-delay: 0.8s; }
.chart-bar:nth-child(4) { height: 75%; animation-delay: 0.9s; background: linear-gradient(180deg, var(--amber), rgba(212,185,60,0.2)); }
.chart-bar:nth-child(5) { height: 60%; animation-delay: 1.0s; }
.chart-bar:nth-child(6) { height: 85%; animation-delay: 1.1s; background: linear-gradient(180deg, var(--emerald), rgba(60,184,74,0.2)); }
.chart-bar:nth-child(7) { height: 50%; animation-delay: 1.2s; }
.site-hero-right svg { position: absolute; bottom: 16px; left: 16px; right: 16px; width: calc(100% - 32px); height: 60px; }

.site-services {
    display: flex;
    gap: 0;
    border-top: 1px solid rgba(42,184,196,0.06);
}

.site-service-card {
    flex: 1;
    padding: 14px 16px;
    border-right: 1px solid rgba(42,184,196,0.06);
    display: flex; flex-direction: column; gap: 8px;
    opacity: 0;
    animation: revealUp 0.5s ease both;
}

.site-service-card:last-child { border-right: none; }
.site-service-card:nth-child(1) { animation-delay: 0.8s; }
.site-service-card:nth-child(2) { animation-delay: 0.95s; }
.site-service-card:nth-child(3) { animation-delay: 1.1s; }

.service-icon-wrap {
    width: 30px; height: 30px;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
}

.service-icon-wrap.c1 { background: rgba(42,184,196,0.15); border: 1px solid rgba(42,184,196,0.2); }
.service-icon-wrap.c2 { background: rgba(60,184,74,0.15); border: 1px solid rgba(60,184,74,0.2); }
.service-icon-wrap.c3 { background: rgba(212,185,60,0.15); border: 1px solid rgba(212,185,60,0.2); }
.service-icon-wrap svg { width: 14px; height: 14px; }
.service-title { height: 9px; width: 70%; background: rgba(255,255,255,0.4); border-radius: 4px; }
.service-desc-1 { height: 7px; width: 90%; background: rgba(255,255,255,0.12); border-radius: 3px; }
.service-desc-2 { height: 7px; width: 65%; background: rgba(255,255,255,0.08); border-radius: 3px; }

.monitor-status {
    height: 30px;
    background: #060d1a;
    border-top: 1px solid rgba(42,184,196,0.08);
    display: flex; align-items: center; padding: 0 20px; gap: 20px; flex-shrink: 0;
}

.status-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--emerald); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(0.8)} }
.status-text { font-family: 'JetBrains Mono', monospace; font-size: 0.55rem; color: rgba(255,255,255,0.25); letter-spacing: 0.1em; }
.status-text b { color: var(--emerald); font-weight: 400; }

.monitor-stand {
    width: 40%;
    height: 6px;
    background: linear-gradient(90deg, transparent, #0d1526, transparent);
    margin: 0 auto;
    border-radius: 0 0 4px 4px;
}

.monitor-foot {
    width: 25%;
    height: 3px;
    background: rgba(42,184,196,0.1);
    margin: 0 auto;
    border-radius: 0 0 8px 8px;
}

.device-title {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 800;
    letter-spacing: 0.02em;
    background: linear-gradient(135deg, var(--cyan), var(--emerald));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    animation: revealUp 0.5s ease 0.8s forwards;
}

.phones-row {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    opacity: 0;
    transform: translateY(30px);
    animation: revealDevice 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

.phone {
    background: #080f1e;
    border: 1px solid var(--border);
    border-radius: 32px;
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(42,184,196,0.08),
        0 40px 80px -20px rgba(0,0,0,0.8),
        0 0 60px -20px rgba(42,184,196,0.06);
    position: relative;
}

.phone.primary {
    width: 200px;
    box-shadow:
        0 0 0 1px rgba(42,184,196,0.2),
        0 40px 80px -20px rgba(0,0,0,0.8),
        0 0 80px -20px rgba(42,184,196,0.15);
}

.phone.secondary {
    width: 172px;
    margin-top: 40px;
    opacity: 0.6;
    transform: scale(0.95);
}

.phone-notch {
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 80px; height: 22px;
    background: #0a1f1c;
    border-radius: 0 0 16px 16px;
    z-index: 5;
}

.phone-notch::after {
    content: '';
    position: absolute;
    top: 6px; left: 50%;
    transform: translateX(-50%);
    width: 36px; height: 4px;
    background: rgba(42,184,196,0.25);
    border-radius: 4px;
}

.phone-screen-content {
    padding: 32px 14px 16px;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.app-status-bar {
    display: flex;
    justify-content: space-between;
    padding: 0 4px;
    margin-bottom: 4px;
}

.app-time {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.55rem;
    color: rgba(255,255,255,0.5);
}

.app-icons {
    display: flex;
    gap: 6px;
    align-items: center;
}

.app-icon-dot {
    width: 4px; height: 4px;
    border-radius: 50%;
    background: rgba(42,184,196,0.6);
}

.app-hero {
    height: 90px;
    background: linear-gradient(135deg, rgba(42,184,196,0.2), rgba(60,184,74,0.15));
    border-radius: 16px;
    border: 1px solid rgba(42,184,196,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.app-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 40%, rgba(212,185,60,0.08));
}

.app-hero-logo {
    width: 70%;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.15;
}

.phones-row {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    opacity: 0;
    transform: translateY(30px);
    animation: revealDevice 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

.phone {
    background: #080f1e;
    border: 1px solid var(--border);
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow:
        0 0 0 1px rgba(42,184,196,0.08),
        0 40px 80px -20px rgba(0,0,0,0.8),
        0 0 60px -20px rgba(42,184,196,0.06);
}

.phone.secondary {
    width: 175px;
    height: 379px;
    border-radius: 42px;          
    margin-top: 44px;
    opacity: 0.55;
}

.phone.primary {
    width: 205px;
    height: 444px;
    border-radius: 28px;         
    box-shadow:
        0 0 0 1px rgba(42,184,196,0.25),
        0 40px 80px -20px rgba(0,0,0,0.8),
        0 0 80px -20px rgba(42,184,196,0.18);
}

.phone-notch { display: none; }

.phone.secondary .phone-notch {
    display: block;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 72px;
    height: 22px;
    background: #000;
    border-radius: 20px;
    z-index: 20;
    box-shadow: 0 0 0 1px rgba(255,255,255,0.06);
}
.phone.secondary .phone-notch::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #1a1a2e;
    box-shadow: inset 0 0 0 2px rgba(42,184,196,0.3);
}

.phone.primary .phone-notch {
    display: block;
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: #0a1222;
    border-radius: 50%;
    z-index: 20;
    border: 1px solid rgba(42,184,196,0.15);
    box-shadow: 0 0 6px rgba(42,184,196,0.15);
}
.phone.primary .phone-notch::after { display: none; }

.phone.secondary .app-topbar {
    padding: 38px 12px 6px; 
}
.phone.primary .app-topbar {
    padding: 30px 12px 6px;
}

.app-topbar {
    padding: 26px 14px 8px;
    display: flex; align-items: center; justify-content: space-between;
    flex-shrink: 0;
}

.app-topbar-icon {
    width: 28px; height: 28px;
    border-radius: 8px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    display: flex; align-items: center; justify-content: center;
}

.app-topbar-icon svg { width: 12px; height: 12px; opacity: 0.6; }
.app-topbar-title { display: flex; flex-direction: column; align-items: center; gap: 3px; }
.app-topbar-title-bar { width: 50px; height: 9px; background: rgba(255,255,255,0.4); border-radius: 4px; }
.app-topbar-title-sub { width: 30px; height: 6px; background: rgba(255,255,255,0.12); border-radius: 3px; }
.app-avatar { width: 28px; height: 28px; border-radius: 50%; background: linear-gradient(135deg, var(--cyan), var(--emerald)); border: 2px solid rgba(42,184,196,0.4); flex-shrink: 0; }
.app-stories { display: flex; gap: 10px; padding: 4px 14px 10px; overflow: hidden; flex-shrink: 0; }
.story-item { display: flex; flex-direction: column; align-items: center; gap: 4px; flex-shrink: 0; }
.story-ring { width: 36px; height: 36px; border-radius: 50%; padding: 2px; background: linear-gradient(135deg, var(--cyan), var(--emerald), var(--amber)); }
.story-ring.seen { background: rgba(255,255,255,0.1); }
.story-inner { width: 100%; height: 100%; border-radius: 50%; background: #0d1a2e; border: 2px solid #080f1e; display: flex; align-items: center; justify-content: center; }
.story-inner-dot { width: 10px; height: 10px; border-radius: 50%; }
.story-label { width: 28px; height: 5px; background: rgba(255,255,255,0.15); border-radius: 3px; }
.app-search { margin: 0 14px 10px; height: 30px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07); border-radius: 10px; display: flex; align-items: center; padding: 0 10px; gap: 8px; flex-shrink: 0; }
.app-search svg { width: 11px; height: 11px; opacity: 0.3; flex-shrink: 0; }
.app-search-bar { flex: 1; height: 7px; background: rgba(255,255,255,0.1); border-radius: 3px; }

.app-feed {
    flex: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 0;  
}

.feed-item { padding: 10px 14px; border-bottom: 1px solid rgba(255,255,255,0.04); display: flex; flex-direction: column; gap: 8px; opacity: 0; animation: revealUp 0.4s ease both; }
.feed-item:nth-child(1) { animation-delay: 0.6s; }
.feed-item:nth-child(2) { animation-delay: 0.75s; }
.feed-item:nth-child(3) { animation-delay: 0.9s; }
.feed-header { display: flex; align-items: center; gap: 8px; }
.feed-avatar { width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0; }
.feed-avatar.a1 { background: linear-gradient(135deg, var(--cyan), #3b82f6); }
.feed-avatar.a2 { background: linear-gradient(135deg, var(--emerald), var(--cyan)); }
.feed-avatar.a3 { background: linear-gradient(135deg, var(--amber), #ef4444); }
.feed-name-wrap { flex: 1; display: flex; flex-direction: column; gap: 3px; }
.feed-name { height: 7px; width: 60px; background: rgba(255,255,255,0.4); border-radius: 3px; }
.feed-time { height: 5px; width: 35px; background: rgba(255,255,255,0.12); border-radius: 3px; }
.feed-more { width: 16px; height: 16px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px; }
.feed-more-dot { width: 3px; height: 3px; border-radius: 50%; background: rgba(255,255,255,0.3); }
.feed-image { width: 100%; border-radius: 10px; position: relative; overflow: hidden; }
.feed-image.img1 { height: 80px; background: linear-gradient(135deg, rgba(42,184,196,0.25), rgba(60,184,74,0.15) 50%, rgba(139,92,246,0.2)); }
.feed-image.img2 { height: 72px; background: linear-gradient(135deg, rgba(212,185,60,0.2), rgba(239,68,68,0.15) 50%, rgba(60,184,74,0.2)); }
.feed-image.img3 { height: 55px; background: linear-gradient(135deg, rgba(139,92,246,0.2), rgba(42,184,196,0.2)); }
.feed-image-play { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 28px; height: 28px; border-radius: 50%; background: rgba(255,255,255,0.1); backdrop-filter: blur(4px); border: 1px solid rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; }
.feed-image-play svg { width: 10px; height: 10px; }
.feed-caption { display: flex; flex-direction: column; gap: 4px; }
.feed-cap-l1 { height: 7px; width: 90%; background: rgba(255,255,255,0.18); border-radius: 3px; }
.feed-cap-l2 { height: 7px; width: 60%; background: rgba(255,255,255,0.1); border-radius: 3px; }
.feed-actions { display: flex; align-items: center; gap: 12px; }
.feed-action { display: flex; align-items: center; gap: 4px; }
.feed-action svg { width: 13px; height: 13px; opacity: 0.5; }
.feed-action-count { width: 16px; height: 6px; background: rgba(255,255,255,0.15); border-radius: 3px; }
.feed-action.liked svg { opacity: 1; color: #ef4444; }
.feed-share { margin-left: auto; opacity: 0.4; }
.feed-share svg { width: 13px; height: 13px; }
.app-bottom-nav { display: flex; padding: 8px 6px 14px; background: rgba(8,15,30,0.95); border-top: 1px solid rgba(42,184,196,0.08); justify-content: space-around; flex-shrink: 0; }
.app-nav-item { width: 36px; height: 32px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px; border-radius: 8px; }
.app-nav-item svg { width: 18px; height: 18px; opacity: 0.3; }
.app-nav-item.active svg { opacity: 1; color: var(--cyan); }
.app-nav-item.active { background: rgba(42,184,196,0.08); }
.app-nav-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--cyan); }

.cta-eyebrow {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    letter-spacing: 0.3em;
    color: #2ab8c4; 
    text-transform: uppercase;
    background: rgba(42, 184, 196, 0.1);
    padding: 4px 12px;
    border-radius: 4px;
    display: inline-block;
    opacity: 0;
    animation: revealUp 0.5s ease 0.1s forwards;
    text-shadow: 0 0 10px rgba(42, 184, 196, 0.5);
    font-weight: 700;
}

.cta-headline {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    text-align: center;
    line-height: 1.1;
    opacity: 0;
    animation: revealUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}

.cta-headline .line1 {
    display: block;
    color: #e8f5f2;
}

.cta-headline .line2 {
    display: block;
    background: linear-gradient(90deg, var(--cyan), var(--emerald), var(--amber));
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: revealUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards,
                shimmer 3s linear 1s infinite;
}

@keyframes shimmer {
    0%   { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.cta-sub {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    color: rgba(200, 235, 228, 0.5);
    letter-spacing: 0.05em;
    text-align: center;
    opacity: 0;
    animation: revealUp 0.5s ease 0.9s forwards;
}

.cta-btn {
    margin-top: 0.5rem;
    padding: 14px 40px;
    background: linear-gradient(135deg, var(--cyan), var(--emerald));
    border: none;
    border-radius: 8px;
    font-family: 'Syne', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: revealScale 0.6s cubic-bezier(0.16, 1, 0.3, 1) 1.3s forwards;
    transition: box-shadow 0.3s, transform 0.3s;
    box-shadow: 0 4px 24px rgba(42,184,196,0.25), 0 1px 4px rgba(0,0,0,0.08);
}

.cta-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.cta-btn:hover::before { opacity: 1; }
.cta-btn:hover {
    box-shadow: 0 0 40px rgba(42,184,196,0.4);
    transform: translateY(-2px);
}

.cta-btn:active { transform: translateY(0); }

@keyframes revealUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes revealScale {
    from { opacity: 0; transform: scale(0.9); }
    to   { opacity: 1; transform: scale(1); }
}
@keyframes revealDevice {
    from { opacity: 0; transform: translateY(30px) scale(0.95); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.progress-track {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 50;
}
.progress-seg {
    height: 2px;
    width: 48px;
    background: rgba(42,184,196,0.15);
    border-radius: 2px;
    overflow: hidden;
    cursor: none;
}
.progress-seg-fill {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--cyan), var(--emerald));
    border-radius: 2px;
    transition: width 0.1s linear;
}
.progress-seg.done .progress-seg-fill { width: 100%; }
.progress-seg.active .progress-seg-fill { width: var(--fill); }

.orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    mix-blend-mode: screen;
    transition: all 4s ease;
}
.orb-1 {
    width: 500px; height: 500px;
    top: -150px; left: -150px;
    background: radial-gradient(circle, rgba(42,184,196,0.06) 0%, transparent 70%);
}
.orb-2 {
    width: 400px; height: 400px;
    bottom: -100px; right: -100px;
    background: radial-gradient(circle, rgba(60,184,74,0.05) 0%, transparent 70%);
}

.animation-screen {
    width: 100vw;
    height: 100vh;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}
.animation-screen .bg,
.animation-screen .grid,
.animation-screen .grain,
.animation-screen .scanlines,
.animation-screen .orb,
.animation-screen canvas {
    position: absolute;
}

.tech-ticker-section {
    background: #ffffff;
    padding: 80px 0 90px;
    overflow: hidden;
    position: relative;
}

.ticker-label {
    text-align: center;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: #00a0d2;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
}

.ticker-label-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2ab8c4, #3cb84a);
    animation: tickerDotPulse 2s infinite;
}
@keyframes tickerDotPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0.7; }
}

.ticker-track {
    overflow: hidden;
    margin-bottom: 1.5rem;
    padding: 10px 0;
}
.ticker-track:last-child { margin-bottom: 0; }

.ticker-track::before,
.ticker-track::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}
.ticker-track { position: relative; }
.ticker-track::before { left: 0; background: linear-gradient(90deg, #fff, transparent); }
.ticker-track::after  { right: 0; background: linear-gradient(-90deg, #fff, transparent); }

.ticker-row {
    display: flex;
    gap: 1.5rem;
    width: max-content;
}

.row-ltr  { animation: tickerLeft  28s linear infinite; }
.row-rtl  { animation: tickerRight 32s linear infinite; }

@keyframes tickerLeft  { from { transform: translateX(0); }     to { transform: translateX(-50%); } }
@keyframes tickerRight { from { transform: translateX(-50%); } to { transform: translateX(0); } }

.ticker-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    border: 1.5px solid #e2e8f0;
    background: #fff;
    white-space: nowrap;
    transition: border-color 0.25s, box-shadow 0.25s, transform 0.2s;
    cursor: default;
}
.ticker-item:hover {
    border-color: #2ab8c4;
    box-shadow: 0 4px 16px rgba(42,184,196,0.15);
    transform: translateY(-3px);
}
.ticker-item img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}
.ticker-item span {
    font-family: 'Inter', 'Syne', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    color: #1a2e2b;
}

.ticker-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Syne', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--blue);
    text-decoration: none;
    border: 1.5px solid rgba(0,160,210,0.3);
    background: rgba(0,160,210,0.05);
    padding: 0.7rem 1.75rem;
    border-radius: 50px;
    transition: all 0.2s;
}

.ticker-cta-btn:hover {
    background: rgba(0,160,210,0.1);
    border-color: var(--blue);
    transform: translateY(-2px);
}

.ideas-section {
    background: linear-gradient(135deg, #00a0d2 0%, #39b54a 100%);
    padding: 100px 0 110px;
    position: relative;
    overflow: hidden;
}

.ideas-bg-decor {
    position: absolute;
    pointer-events: none;
}
.decor-circle-1 {
    width: 500px; height: 500px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.1);
    top: -200px; right: -100px;
}
.decor-circle-2 {
    width: 300px; height: 300px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.08);
    bottom: -100px; left: 5%;
}
.decor-line-1 {
    width: 200px; height: 1px;
    background: rgba(255,255,255,0.15);
    top: 15%; left: 10%;
    transform: rotate(-30deg);
}

.ideas-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

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

.ideas-eyebrow {
    display: inline-block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.68rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.ideas-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 1.2rem;
}
.ideas-title em {
    font-style: normal;
    color: #d4f5c8;
}

.ideas-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    color: rgba(255,255,255,0.75);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}

.ideas-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 1.25rem;
}

.idea-card {
    background: rgba(255,255,255,0.97);
    border-radius: 20px;
    padding: 2rem 2rem 1.75rem;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s;
    cursor: pointer;
}
.idea-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.idea-card--large {
    grid-column: span 2;
    flex-direction: row;
    align-items: flex-start;
    gap: 2rem;
}
.idea-card--large .idea-card-content { flex: 1; }

.idea-card--full {
    grid-column: span 3;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
    padding: 2rem 3rem;
    background: rgba(255,255,255,0.12);
    border: 1.5px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(8px);
}
.idea-card--full h3,
.idea-card--full p { color: #ffffff; }

.idea-card--dark {
    background: #0d1a18; 
    border: 1px solid rgba(42, 184, 196, 0.1);
}

.idea-card--dark h3 { 
    color: #ffffff; 
    letter-spacing: 0.02em;
}

.idea-card--dark p { 
    color: rgba(232, 245, 242, 0.85); 
}

.idea-card--dark .idea-card-icon { 
    color: #32dceb; 
}

.idea-card--dark .idea-card-services li {
    color: rgba(232, 245, 242, 0.9);
}

.idea-card--dark .idea-card-services li::before {
    background-color: #32dceb; 
    box-shadow: 0 0 8px rgba(50, 220, 235, 0.4);
}

.idea-card--dark .idea-card-tags li {
    background: rgba(42, 184, 196, 0.08);
    border-color: rgba(42, 184, 196, 0.4);
    color: #32dceb;
    font-weight: 600;
}

.idea-card--dark .idea-card-arrow { 
    color: #32dceb; 
}

.idea-card-icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    color: #00a0d2;
    display: flex;
    align-items: center;
    justify-content: center;
}
.idea-card-icon svg { width: 100%; height: 100%; }

.idea-card-content { flex: 1; }
.idea-card-content h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    color: #005f80;
    margin-bottom: 0.6rem;
}

.idea-card-content p {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #77787b;
    line-height: 1.65;
    margin-bottom: 1rem;
}

.idea-card-services {
    list-style: none;
    padding: 0;
    margin: 1.2rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.idea-card-services li {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: #4a5568;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.idea-card-services li::before {
    content: '';
    width: 12px;
    height: 1.5px;
    background-color: #2ab8c4;
    display: inline-block;
}


.idea-card-tags {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}
.idea-card-tags li {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.68rem;
    color: #00a0d2;
    background: rgba(0,160,210,0.08);
    border: 1px solid rgba(0,160,210,0.2);
    padding: 3px 10px;
    border-radius: 50px;
}

.idea-card-arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0,160,210,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00a0d2;
    flex-shrink: 0;
    align-self: flex-end;
    transition: background 0.2s, transform 0.2s;
}

.idea-card:hover .idea-card-arrow {
    background: #00a0d2;
    color: #fff;
    transform: translateX(4px);
}

.idea-card--full:hover .idea-card-arrow { background: rgba(255,255,255,0.3); }
.idea-card-arrow svg { width: 16px; height: 16px; }

.idea-cta-left { flex: 1; }
.idea-cta-left h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.idea-cta-left p {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
}

.idea-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: 'Syne', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #00a0d2;
    background: #ffffff;
    text-decoration: none;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    white-space: nowrap;
    flex-shrink: 0;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.idea-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.2); }
.idea-cta-btn svg { width: 16px; height: 16px; transition: transform 0.2s; }
.idea-cta-btn:hover svg { transform: translateX(4px); }

@media (max-width: 900px) {
    .ideas-grid {
        grid-template-columns: 1fr 1fr;
    }
    .idea-card--large { grid-column: span 2; }
    .idea-card--full  { grid-column: span 2; flex-direction: column; text-align: center; }
    
}

@media (max-width: 600px) {
    .ideas-grid { grid-template-columns: 1fr; }
    .idea-card--large { grid-column: span 1; flex-direction: column; }
    .idea-card--full  { grid-column: span 1; }
}

.realisations-section {
    background: #ffffff;
    padding: 100px 0 110px;
}

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

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

.real-eyebrow {
    display: inline-block;
    font-family: 'JetBrains Mono', monospace;
    font-size: .68rem;
    letter-spacing: .35em;
    text-transform: uppercase;
    color: #2ab8c4;
    margin-bottom: 1rem;
}

.real-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #005f80;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.real-title em { font-style: normal; color: #39b54a; }
.real-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #77787b;
    max-width: 480px;
    margin: 0 auto;
}

.real-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 1.5rem;
}

.real-card--featured { grid-row: span 2; }

.real-card {
    border-radius: 20px;
    overflow: hidden;
    border: 1.5px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    transition: transform .3s cubic-bezier(.34,1.56,.64,1), box-shadow .3s, border-color .3s;
}
.real-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,.08);
    border-color: rgba(42,184,196,.4);
}


.real-card-image {
    width: 100%;
    overflow: hidden;
    border-radius: 1rem 1rem 0 0; 
    aspect-ratio: 16 / 9;
}

.real-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.real-card:hover .real-card-image img {
    transform: scale(1.04);
}

.real-card-info { padding: 1.5rem 1.75rem 1.75rem; flex: 1; display: flex; flex-direction: column; gap: .75rem; }
.real-card-tags-row { display: flex; gap: .5rem; flex-wrap: wrap; }
.real-tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: .62rem;
    letter-spacing: .05em;
    padding: 3px 10px;
    border-radius: 50px;
    background: rgba(0,160,210,.08);
    border: 1px solid rgba(0,160,210,.2);
    color: #00a0d2;
}
.real-tag--web   { background: rgba(42,184,196,.1); border-color: rgba(42,184,196,.25); color: #2ab8c4; }
.real-tag--mobile { background: rgba(139,92,246,.1); border-color: rgba(139,92,246,.25); color: #8b5cf6; }
.real-tag--ecom  { background: rgba(212,185,60,.1); border-color: rgba(212,185,60,.3); color: #b8930a; }
.real-card-info h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    color: #005f80;
    line-height: 1.3;
}
.real-card-info p {
    font-family: 'Inter', sans-serif;
    font-size: .88rem;
    color: #77787b;
    line-height: 1.65;
}
.real-card-stack { display: flex; flex-wrap: wrap; gap: .35rem; margin-top: .25rem; }
.real-card-stack span {
    font-family: 'JetBrains Mono', monospace;
    font-size: .65rem;
    background: #f1f5f9;
    color: #1a2e2b;
    padding: 3px 9px;
    border-radius: 50px;
}
.real-card-link {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-family: 'Syne', sans-serif;
    font-size: .82rem;
    font-weight: 700;
    color: #2ab8c4;
    text-decoration: none;
    margin-top: auto;
    padding-top: .5rem;
    transition: gap .2s;
}
.real-card-link:hover { gap: .7rem; }
.real-card-link svg { width: 14px; height: 14px; }

.real-footer { text-align: center; margin-top: 3.5rem; }
.real-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    font-family: 'Syne', sans-serif;
    font-size: .88rem;
    font-weight: 700;
    letter-spacing: .04em;
    color: #fff;
    background: linear-gradient(135deg, #2ab8c4, #3cb84a);
    text-decoration: none;
    padding: .9rem 2.5rem;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(42,184,196,.3);
    transition: transform .2s, box-shadow .2s;
}
.real-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(42,184,196,.4); }
.real-cta-btn svg { width: 16px; height: 16px; }

.approche-section {
    background: #0a1f1c;
    padding: 100px 0 110px;
    position: relative;
    overflow: hidden;
}
.approche-bg-decor { position: absolute; border-radius: 50%; pointer-events: none; }
.ap-circle-1 { width: 600px; height: 600px; border: 1px solid rgba(42,184,196,.06); top: -200px; right: -200px; }
.ap-circle-2 { width: 400px; height: 400px; border: 1px solid rgba(60,184,74,.05); bottom: -150px; left: -100px; }

.approche-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}
.approche-header {
    text-align: center;
    margin-bottom: 5rem;
}
.approche-eyebrow {
    display: inline-block;
    font-family: 'JetBrains Mono', monospace;
    font-size: .68rem;
    letter-spacing: .35em;
    text-transform: uppercase;
    color: rgba(42,184,196,.7);
    background: rgba(42,184,196,.08);
    border: 1px solid rgba(42,184,196,.15);
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}
.approche-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #e8f5f2;
    margin-bottom: 1.5rem;
}
.approche-intro {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    color: rgba(232,245,242,.6);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.approche-steps { display: flex; flex-direction: column; gap: 0; }
.approche-step {
    display: grid;
    grid-template-columns: 80px 2px 1fr;
    gap: 0 2rem;
    align-items: start;
}
.ap-step-number {
    font-family: 'Syne', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(42,184,196,.15);
    line-height: 1;
    padding-top: .2rem;
    text-align: right;
}
.ap-step-line {
    width: 2px;
    background: linear-gradient(180deg, rgba(42,184,196,.5) 0%, rgba(60,184,74,.3) 100%);
    height: 100%;
    min-height: 120px;
    position: relative;
    margin: 0 auto;
}
.ap-step-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 10px; height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2ab8c4, #3cb84a);
    box-shadow: 0 0 12px rgba(42,184,196,.5);
}
.ap-step-line--last { background: linear-gradient(180deg, rgba(42,184,196,.3) 0%, transparent 100%); }
.ap-step-content {
    padding: 0 0 3.5rem 0;
}
.ap-step-icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    background: rgba(42,184,196,.08);
    border: 1px solid rgba(42,184,196,.15);
    display: flex; align-items: center; justify-content: center;
    color: #2ab8c4;
    margin-bottom: 1rem;
}
.ap-step-icon svg { width: 26px; height: 26px; }
.ap-step-content h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: #e8f5f2;
    margin-bottom: .75rem;
}
.ap-step-content p {
    font-family: 'Inter', sans-serif;
    font-size: .95rem;
    color: rgba(232,245,242,.55);
    line-height: 1.75;
}

.approche-header {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1),
                transform 0.8s cubic-bezier(0.16,1,0.3,1);
}
.approche-header.ap-visible {
    opacity: 1;
    transform: translateY(0);
}

.approche-step {
    opacity: 0;
    transform: translateX(-24px);
    transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1),
                transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.approche-step.ap-visible {
    opacity: 1;
    transform: translateX(0);
}

.ap-step-number {
    transition: color 0.6s ease, text-shadow 0.6s ease; position: relative;
}
.approche-step.ap-visible .ap-step-number {
    color: rgba(42,184,196,.5);
    text-shadow: 0 0 40px rgba(42,184,196,.3);
}

.ap-step-icon {
    transition: transform 0.6s cubic-bezier(0.16,1,0.3,1) 0.3s,
                box-shadow 0.6s ease 0.3s,
                background 0.6s ease 0.3s,
                border-color 0.6s ease 0.3s;
    transform: scale(0.7) rotate(-8deg);
    opacity: 0;
}
.approche-step.ap-visible .ap-step-icon {
    transform: scale(1) rotate(0deg);
    opacity: 1;
    background: rgba(42,184,196,.14);
    border-color: rgba(42,184,196,.4);
    box-shadow: 0 0 24px rgba(42,184,196,.2), 0 0 48px rgba(42,184,196,.08);
}

.ap-step-content h3 {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.5s ease 0.35s, transform 0.5s ease 0.35s;
}
.approche-step.ap-visible .ap-step-content h3 {
    opacity: 1;
    transform: translateY(0);
}

.ap-step-content p {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.5s ease 0.5s, transform 0.5s ease 0.5s;
}
.approche-step.ap-visible .ap-step-content p {
    opacity: 1;
    transform: translateY(0);
}

.ap-step-line {
    background: none !important;
    position: relative;
    overflow: visible;
}
.ap-step-line::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 0;               
    background: linear-gradient(180deg, rgba(42,184,196,.8) 0%, rgba(60,184,74,.5) 100%);
    transition: height 0.6s cubic-bezier(0.16,1,0.3,1);
    border-radius: 2px;
}

.ap-step-line::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(42,184,196,.08);
    border-radius: 2px;
}

.ap-step-line > .ap-line-dot {
    position: absolute;
    top: 0; left: 50%;
    transform: translate(-50%, 0);
    width: 10px; height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2ab8c4, #3cb84a);
    box-shadow: 0 0 12px rgba(42,184,196,.5);
    z-index: 2;
    transition: box-shadow 0.5s ease, transform 0.5s ease;
}
.approche-step.ap-visible .ap-step-line > .ap-line-dot {
    box-shadow: 0 0 20px rgba(42,184,196,.8), 0 0 40px rgba(42,184,196,.4);
    transform: translate(-50%, 0) scale(1.3);
}

.ap-step-line.ap-line-active::after {
    height: 100%;
}

@keyframes apGlitch {
    0%   { clip-path: inset(0 0 95% 0); transform: translateX(0); }
    20%  { clip-path: inset(30% 0 50% 0); transform: translateX(-4px); }
    40%  { clip-path: inset(60% 0 20% 0); transform: translateX(4px); }
    60%  { clip-path: inset(80% 0 5% 0); transform: translateX(-2px); }
    80%  { clip-path: inset(10% 0 80% 0); transform: translateX(2px); }
    100% { clip-path: inset(0 0 95% 0); transform: translateX(0); }
}
.approche-step.ap-visible .ap-step-number::after {
    content: attr(data-num);
    position: absolute;
    inset: 0;
    color: var(--cyan);
    animation: apGlitch 0.4s ease 0.1s 1;
    pointer-events: none;
}

.pourquoi-section {
    background: #ffffff;
    padding: 100px 0 110px;
}
.pourquoi-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.pourquoi-eyebrow {
    display: inline-block;
    font-family: 'JetBrains Mono', monospace;
    font-size: .68rem;
    letter-spacing: .35em;
    text-transform: uppercase;
    color: #2ab8c4;
    margin-bottom: 1.2rem;
}
.pourquoi-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: #005f80;
    line-height: 1.15;
    margin-bottom: 1.25rem;
}
.pourquoi-title em { font-style: normal; color: #3cb84a; }
.pourquoi-desc {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #77787b;
    line-height: 1.75;
    margin-bottom: 2.5rem;
}

.pourquoi-points { display: flex; flex-direction: column; gap: 1.75rem; }
.pourquoi-point { display: flex; align-items: flex-start; gap: 1rem; }
.pp-icon {
    width: 44px; height: 44px; flex-shrink: 0;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
}
.pp-icon--cyan  { background: rgba(42,184,196,.1); color: #2ab8c4; }
.pp-icon--green { background: rgba(60,184,74,.1); color: #3cb84a; }
.pp-icon--amber { background: rgba(212,185,60,.1); color: #b8930a; }
.pp-icon svg { width: 20px; height: 20px; }
.pourquoi-point h4 {
    font-family: 'Syne', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    color: #005f80;
    margin-bottom: .3rem;
}
.pourquoi-point p {
    font-family: 'Inter', sans-serif;
    font-size: .88rem;
    color: #77787b;
    line-height: 1.65;
}

.pourquoi-visual { position: relative; }
.pourquoi-img-wrap { position: relative; }
.pourquoi-img-decor {
    position: absolute;
    top: -20px; right: -20px;
    width: 80%; height: 100%;
    background: linear-gradient(135deg, rgba(42,184,196,.15), rgba(60,184,74,.1));
    border-radius: 20px;
    z-index: 0;
}
.pourquoi-img {
    width: 100%;
    border-radius: 20px;
    display: block;
    position: relative;
    z-index: 1;
    box-shadow: 0 20px 50px rgba(0,0,0,.12);
}

.final-cta-section {
    position: relative;
    padding: 120px 0;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #0a1628;
    z-index: 10;
}

.final-cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(42,184,196,0.18) 0%, rgba(0,160,210,0.08) 50%, transparent 70%);
    pointer-events: none;
}

.final-cta-container {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
    padding: 0 24px;
}

.final-cta-eyebrow {
    display: inline-block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 1.5rem;
    opacity: 0.85;
}

.final-cta-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 1.25rem;
}

.final-cta-title em {
    font-style: normal;
    background: linear-gradient(90deg, var(--cyan), var(--green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.final-cta-sub {
    font-size: 1rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.final-cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.final-cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--cyan), var(--green));
    color: #fff;
    font-family: 'Syne', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    box-shadow: 0 4px 24px rgba(42,184,196,0.3);
    transition: transform 0.2s, box-shadow 0.2s;
}
.final-cta-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(42,184,196,0.45);
}
.final-cta-btn-primary svg { width: 16px; height: 16px; }

.final-cta-btn-ghost {
    display: inline-flex;
    align-items: center;
    color: rgba(255,255,255,0.65);
    font-family: 'Syne', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    padding: 0.85rem 1.75rem;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.12);
    transition: color 0.2s, border-color 0.2s;
}
.final-cta-btn-ghost:hover {
    color: #fff;
    border-color: rgba(255,255,255,0.3);
}

@media (max-width: 960px) {
    .real-grid { grid-template-columns: 1fr; }
    .real-card--featured { grid-row: auto; }
    .approche-step { grid-template-columns: 60px 2px 1fr; gap: 0 1.25rem; }
    .pourquoi-container { grid-template-columns: 1fr; gap: 3rem; }
    .pourquoi-visual { order: -1; }
}
@media (max-width: 600px) {
    .approche-step { grid-template-columns: 48px 2px 1fr; }
    .ap-step-number { font-size: 2rem; }
    .pourquoi-badge { display: none; }
}