/* ===================================
   FALT Solutions — Global Styles
   Enhanced 3-Page Version
   =================================== */

/* --- CSS Variables --- */
:root {
    --bg-primary: #0a0a0f;
    --bg-secondary: #0d0d1a;
    --bg-card: #12121e;
    --bg-footer: #06060f;
    --accent-pink: #ff2d78;
    --accent-purple: #7b2fff;
    --accent-magenta: #c724f5;
    --text-heading: #ffffff;
    --text-body: #a0a0b0;
    --text-muted: #606070;
    --border-glow: rgba(255, 45, 120, 0.3);
    --border-subtle: rgba(255, 45, 120, 0.2);
    --border-card: rgba(255, 45, 120, 0.15);
    --gradient: linear-gradient(90deg, #ff2d78, #7b2fff);
    --font: 'Space Grotesk', system-ui, -apple-system, sans-serif;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 20px;
    --radius-pill: 100px;
}

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: #ff2d78 #0a0a0f;
    cursor: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #0a0a0f; }
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #ff2d78, #7b2fff);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #ff4488, #8b3fff);
}

body {
    font-family: var(--font);
    background: var(--bg-primary);
    color: var(--text-body);
    font-size: 16px;
    line-height: 1.7;
    font-weight: 400;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    cursor: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
    cursor: none;
}

ul { list-style: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { cursor: none; }

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


/* ===================================
   LOADING SCREEN
   =================================== */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
.loading-screen.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.loader-content {
    text-align: center;
}
.loader-logo {
    font-family: var(--font);
    font-size: 72px;
    font-weight: 900;
    letter-spacing: -0.04em;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: loaderScaleIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    transform: scale(0);
}
@keyframes loaderScaleIn {
    from { transform: scale(0); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}
.loader-bar-track {
    width: 200px;
    height: 3px;
    background: rgba(255,255,255,0.1);
    border-radius: 3px;
    margin: 24px auto 0;
    overflow: hidden;
}
.loader-bar-fill {
    width: 0;
    height: 100%;
    background: var(--gradient);
    border-radius: 3px;
    animation: loaderFill 1.5s 0.4s ease-in-out forwards;
}
@keyframes loaderFill {
    from { width: 0; }
    to { width: 100%; }
}


/* ===================================
   CUSTOM CURSOR
   =================================== */
.custom-cursor {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--accent-pink);
    border-radius: 50%;
    pointer-events: none;
    z-index: 100000;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 12px rgba(255,45,120,0.6), 0 0 24px rgba(255,45,120,0.3);
    transition: width 0.2s, height 0.2s, box-shadow 0.2s;
    mix-blend-mode: screen;
}
.custom-cursor.cursor-hover {
    width: 14px;
    height: 14px;
    box-shadow: 0 0 20px rgba(255,45,120,0.8), 0 0 40px rgba(255,45,120,0.5);
}
.custom-cursor-ring {
    position: fixed;
    width: 36px;
    height: 36px;
    border: 2px solid rgba(123,47,255,0.4);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, border-color 0.3s;
    mix-blend-mode: screen;
}
.custom-cursor-ring.cursor-hover {
    width: 50px;
    height: 50px;
    border-color: rgba(255,45,120,0.5);
}

@media (max-width: 768px) {
    .custom-cursor, .custom-cursor-ring { display: none; }
    html, body, a, button, input, select, textarea { cursor: auto; }
}


/* ===================================
   SCROLL PROGRESS BAR
   =================================== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0;
    background: var(--gradient);
    z-index: 10001;
    transition: width 0.05s linear;
}


/* ===================================
   PAGE TRANSITION
   =================================== */
.page-transition {
    position: fixed;
    top: 50%;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--gradient);
    z-index: 99998;
    transform: translateY(-50%);
    pointer-events: none;
    transition: height 0.3s ease;
}
.page-transition.active {
    height: 4px;
    animation: pageTransitionSweep 0.6s ease-in-out;
}
@keyframes pageTransitionSweep {
    0% { height: 0; opacity: 0; }
    30% { height: 4px; opacity: 1; }
    70% { height: 4px; opacity: 1; }
    100% { height: 0; opacity: 0; }
}


/* --- Gradient Text --- */
.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* --- Gradient Divider --- */
.gradient-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ff2d78, #7b2fff, transparent);
    opacity: 0.4;
}

/* --- Particles Canvas --- */
#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

/* --- Globe Canvas --- */
#globe-canvas {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.2;
}


/* ===================================
   FLOATING 3D SHAPES
   =================================== */
.floating-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}
.float-shape {
    position: absolute;
    opacity: 0.1;
    animation: floatDrift 25s ease-in-out infinite;
}
.shape-cube {
    width: 40px;
    height: 40px;
    border: 1.5px solid var(--accent-pink);
    animation-name: floatCube;
}
.shape-octahedron {
    width: 35px;
    height: 35px;
    border: 1.5px solid var(--accent-purple);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    animation-name: floatOcta;
}
.shape-pyramid {
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 35px solid rgba(199,36,245,0.15);
    animation-name: floatPyr;
}
.shape-1 { top: 10%; left: 5%; animation-delay: 0s; animation-duration: 22s; }
.shape-2 { top: 20%; right: 15%; animation-delay: -3s; animation-duration: 28s; }
.shape-3 { top: 60%; left: 8%; animation-delay: -7s; animation-duration: 26s; }
.shape-4 { bottom: 15%; right: 5%; animation-delay: -11s; animation-duration: 24s; }
.shape-5 { top: 40%; left: 50%; animation-delay: -5s; animation-duration: 30s; }
.shape-6 { bottom: 30%; left: 25%; animation-delay: -9s; animation-duration: 27s; }
.shape-7 { top: 5%; right: 40%; animation-delay: -2s; animation-duration: 23s; }
.shape-8 { bottom: 10%; right: 30%; animation-delay: -13s; animation-duration: 25s; }

@keyframes floatCube {
    0%, 100% { transform: translateY(0) rotate(0deg) rotateX(0deg); }
    25% { transform: translateY(-30px) rotate(90deg) rotateX(45deg); }
    50% { transform: translateY(-15px) rotate(180deg) rotateX(90deg); }
    75% { transform: translateY(-25px) rotate(270deg) rotateX(135deg); }
}
@keyframes floatOcta {
    0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
    33% { transform: translateY(-20px) rotate(120deg) scale(1.1); }
    66% { transform: translateY(-35px) rotate(240deg) scale(0.9); }
}
@keyframes floatPyr {
    0%, 100% { transform: translateY(0) rotateY(0deg); }
    50% { transform: translateY(-25px) rotateY(180deg); }
}


/* ===================================
   NAVIGATION
   =================================== */
.navbar {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: calc(100% - 48px);
    max-width: 900px;
    animation: navSlideDown 0.8s ease-out;
}

@keyframes navSlideDown {
    from { opacity: 0; transform: translateX(-50%) translateY(-30px); }
    to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 28px;
    background: rgba(12, 12, 24, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 45, 120, 0.2);
    border-radius: var(--radius-pill);
}

.nav-logo {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.02em;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-link {
    color: var(--text-heading);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.01em;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    color: var(--accent-pink);
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* --- Navbar Scroll Animations --- */
.navbar {
    transition: top 0.4s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
                opacity 0.3s ease;
}

.navbar.scrolled .nav-inner {
    padding: 8px 24px;
    background: rgba(8, 8, 18, 0.92);
    border-color: rgba(255, 45, 120, 0.35);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4),
                0 0 0 1px rgba(255, 45, 120, 0.1),
                0 0 60px rgba(255, 45, 120, 0.06);
}

.navbar.scrolled .nav-logo {
    font-size: 20px;
}

.navbar.nav-hidden {
    transform: translateX(-50%) translateY(-120%);
    opacity: 0;
}

.navbar.nav-visible {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

/* Gradient glow line under navbar when scrolled */
.navbar.scrolled .nav-inner::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 20%;
    right: 20%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-pink), var(--accent-purple), transparent);
    opacity: 0.5;
    border-radius: 1px;
}

.nav-inner {
    position: relative;
    transition: padding 0.4s cubic-bezier(0.22, 1, 0.36, 1),
                background 0.4s ease,
                border-color 0.4s ease,
                box-shadow 0.4s ease;
}

.nav-logo {
    transition: font-size 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-cta {
    padding: 10px 24px;
    background: var(--gradient);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    border-radius: var(--radius-pill);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 45, 120, 0.3);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 45, 120, 0.5);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: none;
    padding: 4px;
}

.mobile-toggle span {
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}


/* ===================================
   MOBILE OVERLAY MENU
   =================================== */
.mobile-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: rgba(6,6,15,0.97);
    backdrop-filter: blur(20px);
    z-index: 999;
    transition: right 0.4s cubic-bezier(0.65, 0, 0.35, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}
.mobile-overlay.open {
    right: 0;
}
.mobile-overlay-inner {
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: left;
    padding: 0 40px;
    width: 100%;
}
.mobile-overlay-link {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-heading);
    padding: 12px 0 12px 20px;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
}
.mobile-overlay-link:hover,
.mobile-overlay-link.active {
    color: var(--accent-pink);
    border-left-color: var(--accent-pink);
}
.mobile-overlay-cta {
    margin-top: 20px;
    font-size: 18px !important;
}


/* ===================================
   HERO SECTION
   =================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--bg-primary);
    padding-top: 80px;
}

.hero-bg-effects {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.12;
    animation: orbFloat 20s ease-in-out infinite;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: var(--accent-pink);
    top: -200px;
    right: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: var(--accent-purple);
    bottom: -200px;
    left: -100px;
    animation-delay: -7s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: var(--accent-magenta);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -14s;
}

.hero-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(123, 47, 255, 0.15) 0%, transparent 70%);
    top: 50%;
    left: 35%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -40px) scale(1.05); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(40px, 30px) scale(1.02); }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    padding-right: 20px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: linear-gradient(90deg, rgba(255, 45, 120, 0.15), rgba(123, 47, 255, 0.15));
    border: 1px solid rgba(255, 45, 120, 0.3);
    border-radius: var(--radius-pill);
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 28px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-pink);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

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

.hero-headline {
    margin-bottom: 24px;
}

.hero-headline .line {
    display: block;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: var(--text-heading);
}

.hero-headline .line-1 {
    font-size: clamp(36px, 5vw, 56px);
}

.hero-headline .line-2 {
    font-size: clamp(40px, 5.5vw, 64px);
}

.hero-headline .line-3 {
    font-size: clamp(36px, 5vw, 56px);
}

/* Typewriter cursor */
.typewriter-cursor {
    display: inline-block;
    color: var(--accent-pink);
    font-weight: 300;
    animation: cursorBlink 0.8s step-end infinite;
    margin-left: 2px;
}
@keyframes cursorBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.hero-subtext {
    font-size: 18px;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 520px;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font);
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-pill);
    cursor: none;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
    justify-content: center;
    position: relative;
}

.btn-primary {
    background: var(--gradient);
    color: #fff;
    box-shadow: 0 4px 20px rgba(255, 45, 120, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 40px rgba(255, 45, 120, 0.5);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 1px solid var(--accent-pink);
}

.btn-outline:hover {
    background: rgba(255, 45, 120, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(255, 45, 120, 0.2);
}

.btn-full {
    width: 100%;
}

.btn-lg {
    padding: 18px 40px;
    font-size: 17px;
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.btn:hover .btn-arrow {
    transform: translateX(4px);
}

/* CTA button glow pulse */
.btn-glow-aura {
    overflow: visible;
}
.btn-glow-pulse {
    position: absolute;
    inset: -4px;
    border-radius: var(--radius-pill);
    background: var(--gradient);
    opacity: 0;
    z-index: -1;
    filter: blur(16px);
    animation: btnGlowPulse 2.5s ease-in-out infinite;
}
@keyframes btnGlowPulse {
    0%, 100% { opacity: 0.2; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.08); }
}

.hero-ctas {
    display: flex;
    gap: 16px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.stat-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-pill);
    font-size: 13px;
    color: var(--text-body);
}

/* --- Hero Visual (Right Side) --- */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-card {
    width: 100%;
    max-width: 480px;
    aspect-ratio: 1;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 45, 120, 0.25);
    box-shadow: 0 0 80px rgba(255, 45, 120, 0.08), 0 0 160px rgba(123, 47, 255, 0.06);
    overflow: hidden;
    position: relative;
}

.hero-card-inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Systems Visualization */
.systems-viz {
    width: 100%;
    height: 100%;
    position: relative;
}

.viz-hub {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hub-core {
    width: 60px;
    height: 60px;
    background: rgba(255, 45, 120, 0.08);
    border: 1px solid rgba(255, 45, 120, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    position: relative;
}

.hub-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 45, 120, 0.1);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: ringPulse 4s ease-in-out infinite;
}

.ring-1 { width: 120px; height: 120px; animation-delay: 0s; }
.ring-2 { width: 200px; height: 200px; animation-delay: -1.3s; border-color: rgba(123, 47, 255, 0.1); }
.ring-3 { width: 280px; height: 280px; animation-delay: -2.6s; border-color: rgba(199, 36, 245, 0.08); }

@keyframes ringPulse {
    0%, 100% { opacity: 0.4; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.05); }
}

.orbit-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    top: 50%;
    left: 50%;
}

.dot-1 { background: var(--accent-pink); animation: orbit 8s linear infinite; --orbit-radius: 60px; }
.dot-2 { background: var(--accent-purple); animation: orbit 12s linear infinite reverse; --orbit-radius: 100px; }
.dot-3 { background: var(--accent-magenta); animation: orbit 16s linear infinite; --orbit-radius: 140px; }
.dot-4 { background: var(--accent-pink); animation: orbit 10s linear infinite reverse; --orbit-radius: 80px; animation-delay: -3s; }

@keyframes orbit {
    from { transform: rotate(0deg) translateX(var(--orbit-radius)) rotate(0deg); }
    to { transform: rotate(360deg) translateX(var(--orbit-radius)) rotate(-360deg); }
}

.viz-connections {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.conn-line {
    stroke: rgba(255, 45, 120, 0.12);
    stroke-width: 1;
    stroke-dasharray: 6, 6;
    animation: dashMove 20s linear infinite;
}

@keyframes dashMove {
    to { stroke-dashoffset: -100; }
}

.viz-nodes {
    position: absolute;
    inset: 0;
}

.viz-node {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 12px;
    background: rgba(18, 18, 30, 0.9);
    border: 1px solid rgba(255, 45, 120, 0.15);
    border-radius: 12px;
    font-size: 11px;
    color: var(--text-body);
    backdrop-filter: blur(10px);
}

.node-1 { top: 12%; left: 10%; animation: nodeFloat 6s ease-in-out infinite; }
.node-2 { top: 12%; right: 10%; animation: nodeFloat 6s ease-in-out infinite 1.5s; }
.node-3 { bottom: 12%; left: 10%; animation: nodeFloat 6s ease-in-out infinite 3s; }
.node-4 { bottom: 12%; right: 10%; animation: nodeFloat 6s ease-in-out infinite 4.5s; }

@keyframes nodeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Floating Cards */
.floating-card {
    position: absolute;
    padding: 10px 18px;
    background: rgba(18, 18, 30, 0.92);
    border: 1px solid rgba(255, 45, 120, 0.2);
    border-radius: 12px;
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(20px);
    white-space: nowrap;
    z-index: 5;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.fc-1 { top: 8%; right: -10%; animation: fcFloat 5s ease-in-out infinite; }
.fc-2 { bottom: 30%; left: -15%; animation: fcFloat 5s ease-in-out infinite 1.7s; }
.fc-3 { bottom: 5%; right: -5%; animation: fcFloat 5s ease-in-out infinite 3.3s; }

@keyframes fcFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.fc-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.fc-green { background: #00e676; box-shadow: 0 0 8px rgba(0, 230, 118, 0.5); }
.fc-blue { background: #448aff; box-shadow: 0 0 8px rgba(68, 138, 255, 0.5); }
.fc-pink { background: var(--accent-pink); box-shadow: 0 0 8px rgba(255, 45, 120, 0.5); }

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 2;
    animation: scrollIndFade 2s ease-in-out infinite;
}
.scroll-indicator-text {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 8px;
    letter-spacing: 0.05em;
}
.scroll-indicator-arrow {
    color: var(--text-muted);
    animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}
@keyframes scrollIndFade {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* Hero bottom border */
.hero-bottom-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient);
    background-size: 200% 100%;
    animation: gradientSlide 4s linear infinite;
}


/* ===================================
   TICKER / MARQUEE
   =================================== */
.ticker-section {
    background: var(--bg-secondary);
    padding: 0;
    overflow: hidden;
    position: relative;
    z-index: 1;
}
.ticker-border-top,
.ticker-border-bottom {
    height: 1px;
    background: linear-gradient(90deg, transparent, #ff2d78, #7b2fff, transparent);
    opacity: 0.5;
}
.ticker-track {
    display: flex;
    width: max-content;
    animation: tickerScroll 30s linear infinite;
    padding: 20px 0;
}
.ticker-content {
    display: flex;
    align-items: center;
    gap: 20px;
    white-space: nowrap;
    padding-right: 20px;
    font-size: 18px;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.ticker-dot {
    opacity: 0.5;
}
@keyframes tickerScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}


/* ===================================
   SECTION HEADERS
   =================================== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--text-heading);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-body);
    max-width: 560px;
    margin: 0 auto;
}


/* ===================================
   PROBLEMS SECTION
   =================================== */
.problems {
    background: var(--bg-secondary);
    padding: 120px 0;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.problem-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 50, 50, 0.2);
    border-radius: var(--radius-md);
    padding: 36px 28px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}
.problem-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255,50,50,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.problem-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-pink);
    box-shadow: 0 20px 60px rgba(255, 45, 120, 0.12);
}

.problem-icon {
    margin-bottom: 20px;
    width: 64px;
    height: 64px;
    background: rgba(255, 50, 50, 0.08);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.problem-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.problem-desc {
    color: var(--text-body);
    font-size: 15px;
    line-height: 1.7;
}

/* Animated icons */
.anim-icon-chain { animation: spinSlow 12s linear infinite; }
.anim-icon-clock .clock-hand { transform-origin: 12px 12px; animation: clockTick 3s steps(12) infinite; }
.anim-icon-graph .graph-line {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    animation: drawLine 3s ease-in-out infinite;
}
@keyframes spinSlow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes clockTick { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes drawLine { 0%,100% { stroke-dashoffset: 100; } 50% { stroke-dashoffset: 0; } }


/* ===================================
   SERVICES SECTION
   =================================== */
.services {
    background: var(--bg-primary);
    padding: 120px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 45, 120, 0.15);
    border-radius: var(--radius-md);
    padding: 36px 28px;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    perspective: 800px;
}

/* Shimmer effect on hover */
.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255,45,120,0.08) 50%,
        transparent 70%
    );
    opacity: 0;
    transition: opacity 0.3s;
    animation: shimmerSweep 3s linear infinite;
    pointer-events: none;
}
.service-card:hover::after {
    opacity: 1;
}
@keyframes shimmerSweep {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Grid pattern on hover */
.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,45,120,0.06) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}
.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    border-color: rgba(255, 45, 120, 0.4);
    box-shadow: 0 16px 48px rgba(255, 45, 120, 0.1), 0 0 0 1px rgba(123, 47, 255, 0.15);
}

/* Service tags */
.service-tag {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.03em;
}
.tag-popular {
    background: var(--gradient);
    color: #fff;
}
.tag-new {
    background: linear-gradient(90deg, #00c9a7, #00e5cc);
    color: #000;
}

.service-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 45, 120, 0.08);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.service-desc {
    color: var(--text-body);
    font-size: 15px;
    line-height: 1.7;
    flex-grow: 1;
}

.service-link {
    margin-top: 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-pink);
    transition: all 0.3s ease;
    display: inline-block;
}

.service-link:hover {
    color: var(--accent-purple);
    transform: translateX(4px);
}


/* ===================================
   WHY CHOOSE FALT
   =================================== */
.why-falt {
    background: var(--bg-secondary);
    padding: 120px 0;
}
.comparison-table {
    max-width: 900px;
    margin: 0 auto;
}
.comparison-header {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    margin-bottom: 32px;
    text-align: center;
}
.comp-col {
    font-size: 20px;
    font-weight: 700;
    padding: 16px;
}
.comp-col-falt { color: var(--accent-pink); }
.comp-col-agency { color: var(--text-muted); }
.comp-col-divider {
    width: 2px;
    background: var(--gradient);
    animation: dividerPulse 2s ease-in-out infinite;
}
@keyframes dividerPulse {
    0%,100% { opacity: 0.4; }
    50% { opacity: 1; }
}
.comparison-rows {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.comparison-row {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    background: rgba(255,255,255,0.02);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}
.comparison-row:hover .comp-falt {
    background: rgba(0,200,100,0.06);
}
.comparison-row:hover .comp-agency {
    background: rgba(255,50,50,0.06);
}
.comp-cell {
    padding: 18px 24px;
    font-size: 15px;
    color: var(--text-body);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background 0.3s;
}
.comp-falt { justify-content: flex-end; text-align: right; }
.comp-agency { justify-content: flex-start; }
.comp-divider-line {
    width: 2px;
    background: rgba(255,45,120,0.15);
}
.comp-check { font-size: 16px; }
.comp-x { font-size: 16px; }
.comparison-bottom {
    text-align: center;
    margin-top: 48px;
}
.comparison-verdict {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-heading);
    margin-bottom: 24px;
}


/* ===================================
   HOW IT WORKS SECTION
   =================================== */
.how-it-works {
    background: var(--bg-secondary);
    padding: 120px 0;
}

.steps-flow {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
}

.step {
    text-align: center;
    flex: 1;
    padding: 0 20px;
}

.step-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: rgba(255, 45, 120, 0.06);
    border: 2px solid rgba(255, 45, 120, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: all 0.4s ease;
}

.step:hover .step-circle {
    border-color: var(--accent-pink);
    box-shadow: 0 0 40px rgba(255, 45, 120, 0.2);
}

.step-number {
    font-size: 28px;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.step-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.step-desc {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.7;
}

.step-connector {
    display: flex;
    align-items: center;
    padding-top: 45px;
    width: 80px;
    flex-shrink: 0;
}

.connector-line {
    width: 100%;
    height: 2px;
    border-top: 2px dashed rgba(255, 45, 120, 0.35);
}


/* ===================================
   STATS COUNTER
   =================================== */
.stats-counter {
    background: #050508;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
.stats-bg-mesh {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(255,45,120,0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(123,47,255,0.08) 0%, transparent 50%);
    animation: meshFloat 15s ease-in-out infinite;
}
@keyframes meshFloat {
    0%,100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
    z-index: 1;
}
.stat-counter-card {
    text-align: center;
    padding: 40px 20px;
    position: relative;
}
.stat-counter-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 2px solid rgba(255,45,120,0.15);
    opacity: 0;
    transition: all 0.6s ease;
}
.stat-counter-ring.pulse {
    opacity: 1;
    animation: ringPulseOnce 1s ease-out forwards;
}
@keyframes ringPulseOnce {
    0% { transform: translate(-50%,-50%) scale(0.8); opacity: 0.8; border-color: rgba(255,45,120,0.5); }
    100% { transform: translate(-50%,-50%) scale(1.5); opacity: 0; border-color: rgba(123,47,255,0); }
}
.stat-counter-number {
    display: block;
    font-size: 72px;
    font-weight: 900;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}
.stat-counter-label {
    font-size: 14px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}


/* ===================================
   PACKAGES SECTION
   =================================== */
.packages {
    background: var(--bg-primary);
    padding: 120px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 880px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 44px 36px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.pricing-card-featured {
    border: 2px solid transparent;
    background-image: linear-gradient(var(--bg-card), var(--bg-card)), var(--gradient);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    box-shadow: 0 0 40px rgba(255, 45, 120, 0.12), 0 0 80px rgba(123, 47, 255, 0.08);
    animation: borderGlow 3s ease-in-out infinite alternate;
}

@keyframes borderGlow {
    from { box-shadow: 0 0 40px rgba(255, 45, 120, 0.12), 0 0 80px rgba(123, 47, 255, 0.08); }
    to { box-shadow: 0 0 60px rgba(255, 45, 120, 0.2), 0 0 100px rgba(123, 47, 255, 0.14); }
}

.pricing-label {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-pill);
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    margin-bottom: 20px;
}

.pricing-label-gradient {
    background: var(--gradient);
    color: #fff;
}

.pricing-price {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-heading);
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.pricing-subtext {
    font-size: 15px;
    color: var(--text-body);
    margin-bottom: 32px;
}

.pricing-features {
    margin-bottom: 36px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 15px;
    color: var(--text-body);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features .check {
    color: var(--accent-pink);
    font-weight: 600;
    font-size: 16px;
}


/* ===================================
   TESTIMONIALS
   =================================== */
.testimonials {
    background: var(--bg-secondary);
    padding: 120px 0;
}
.testimonials-carousel {
    overflow: hidden;
    position: relative;
}
.testimonials-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.testimonial-card {
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,45,120,0.2);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: all 0.4s ease;
    transform-style: preserve-3d;
}
.testimonial-card:hover {
    border-color: rgba(255,45,120,0.4);
    box-shadow: 0 16px 48px rgba(255,45,120,0.1);
}
.testimonial-quote {
    font-size: 60px;
    font-weight: 800;
    line-height: 1;
    color: var(--accent-pink);
    opacity: 0.4;
    margin-bottom: -8px;
}
.testimonial-stars {
    color: var(--accent-pink);
    font-size: 18px;
    margin-bottom: 16px;
    letter-spacing: 2px;
}
.testimonial-text {
    font-size: 16px;
    color: var(--text-heading);
    line-height: 1.7;
    margin-bottom: 24px;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}
.testimonial-name {
    font-weight: 700;
    color: var(--text-heading);
    font-size: 15px;
}
.testimonial-role {
    font-size: 13px;
    color: var(--text-muted);
}
.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 32px;
}
.testimonial-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,45,120,0.3);
    cursor: none;
    transition: all 0.3s;
}
.testimonial-dots .dot.active {
    width: 14px;
    height: 14px;
    background: var(--accent-pink);
    box-shadow: 0 0 12px rgba(255,45,120,0.5);
}


/* ===================================
   ABOUT SECTION (HOME PAGE)
   =================================== */
.about {
    background: var(--bg-secondary);
    padding: 120px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: start;
}

.about-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
}

.about-founder-badge {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.founder-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.founder-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-heading);
}

.founder-location {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 2px;
}

.about-bio {
    font-size: 16px;
    color: var(--text-body);
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 28px;
}

.about-stat {
    text-align: center;
    padding: 20px 12px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.about-stat:hover {
    border-color: var(--border-subtle);
    transform: translateY(-4px);
}

.stat-value {
    display: block;
    font-size: 24px;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* About Visual */
.about-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.about-logo-card {
    width: 100%;
    aspect-ratio: 1;
    max-width: 360px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 45, 120, 0.15);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.logo-aura {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 45, 120, 0.2), rgba(123, 47, 255, 0.15), transparent);
    border-radius: 50%;
    filter: blur(60px);
    animation: auraGlow 4s ease-in-out infinite alternate;
}

@keyframes auraGlow {
    from { opacity: 0.6; transform: scale(1); }
    to { opacity: 1; transform: scale(1.2); }
}

.logo-large {
    font-size: 72px;
    font-weight: 900;
    letter-spacing: -0.04em;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.logo-tagline {
    font-size: 18px;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}


/* ===================================
   PROCESS DEEP DIVE (TIMELINE)
   =================================== */
.process-deep {
    background: #0a0a0f;
    padding: 120px 0;
}
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}
.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, rgba(255,45,120,0.1), rgba(255,45,120,0.4), rgba(123,47,255,0.4), rgba(123,47,255,0.1));
    transform: translateX(-50%);
}
.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 60px;
    position: relative;
}
.timeline-left {
    flex-direction: row-reverse;
}
.timeline-right {
    flex-direction: row;
}
.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 2px solid var(--accent-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 0 20px rgba(255,45,120,0.2);
}
.timeline-dot span {
    font-size: 14px;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.timeline-card {
    width: calc(50% - 48px);
    background: var(--bg-card);
    border: 1px solid rgba(255,45,120,0.2);
    border-radius: var(--radius-md);
    padding: 28px 24px;
}
.timeline-left .timeline-card { margin-right: auto; }
.timeline-right .timeline-card { margin-left: auto; }
.timeline-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(255,45,120,0.1);
    border: 1px solid rgba(255,45,120,0.3);
    border-radius: var(--radius-pill);
    font-size: 12px;
    font-weight: 600;
    color: var(--accent-pink);
    margin-bottom: 12px;
}
.timeline-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 8px;
}
.timeline-desc {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.7;
}


/* ===================================
   CONTACT SECTION (HOME)
   =================================== */
.contact {
    background: var(--bg-primary);
    padding: 120px 0;
}

.contact-form-wrapper {
    max-width: 720px;
    margin: 0 auto;
}

.contact-form {
    background: var(--bg-card);
    border: 1px solid rgba(255, 45, 120, 0.25);
    border-radius: var(--radius-lg);
    padding: 48px 44px;
    box-shadow: 0 0 60px rgba(255, 45, 120, 0.06);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-heading);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--text-heading);
    font-family: var(--font);
    font-size: 15px;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent-pink);
    box-shadow: 0 0 0 3px rgba(255, 45, 120, 0.1);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23606070' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    cursor: none;
}

.form-group select option {
    background: var(--bg-card);
    color: var(--text-heading);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    margin-top: 8px;
    font-size: 16px;
    padding: 18px;
}

/* --- Form Success Message --- */
.form-success-message {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 40px;
    min-height: 280px;
    animation: successFadeIn 0.6s ease-out;
}

@keyframes successFadeIn {
    from { opacity: 0; transform: scale(0.9) translateY(10px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.success-icon {
    margin-bottom: 24px;
    animation: successCheckPop 0.5s 0.2s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes successCheckPop {
    from { opacity: 0; transform: scale(0); }
    to { opacity: 1; transform: scale(1); }
}

.success-icon svg {
    filter: drop-shadow(0 0 20px rgba(255, 45, 120, 0.4));
}

.success-text {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    line-height: 1.5;
    max-width: 400px;
}

/* --- Button Spinner --- */
.btn-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: btnSpin 0.6s linear infinite;
    vertical-align: middle;
    margin-right: 6px;
}

@keyframes btnSpin {
    to { transform: rotate(360deg); }
}

/* ===================================
   CTA BANNER
   =================================== */
.cta-banner {
    background: linear-gradient(135deg, #1a0a2e, #0a0a1e);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    background-clip: padding-box;
    animation: ctaBgShift 10s ease-in-out infinite alternate;
}
@keyframes ctaBgShift {
    from { background: linear-gradient(135deg, #1a0a2e, #0a0a1e); }
    to { background: linear-gradient(135deg, #0a0a1e, #1a0a2e); }
}
.cta-banner-glow {
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: var(--gradient);
    z-index: 0;
    opacity: 0.3;
    filter: blur(1px);
    animation: ctaGlowPulse 3s ease-in-out infinite alternate;
}
@keyframes ctaGlowPulse {
    from { opacity: 0.2; }
    to { opacity: 0.4; }
}
.cta-banner-content {
    text-align: center;
    position: relative;
    z-index: 1;
}
.cta-banner-title {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    color: var(--text-heading);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}
.cta-banner-sub {
    font-size: 18px;
    color: var(--text-body);
    max-width: 600px;
    margin: 0 auto 32px;
}
.cta-trust-row {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 24px;
    flex-wrap: wrap;
}
.cta-trust-row span {
    font-size: 13px;
    color: var(--text-muted);
}


/* ===================================
   FOOTER
   =================================== */
.footer {
    background: var(--bg-footer);
    position: relative;
}

.footer-gradient-line {
    height: 2px;
    background: linear-gradient(90deg, #ff2d78, #7b2fff, #c724f5, #ff2d78);
    background-size: 200% 100%;
    animation: gradientSlide 4s linear infinite;
}

@keyframes gradientSlide {
    from { background-position: 0% 0%; }
    to { background-position: 200% 0%; }
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    padding: 60px 24px 40px;
}

.footer-logo {
    font-size: 28px;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    margin-bottom: 12px;
}

.footer-tagline {
    color: var(--text-muted);
    font-size: 14px;
    max-width: 280px;
}

.footer-links h4 {
    color: var(--text-heading);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 14px;
    transition: color 0.3s ease;
    position: relative;
    display: inline-block;
}
.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-pink);
    transition: width 0.3s ease;
}
.footer-links a:hover::after {
    width: 100%;
}

.footer-links a:hover {
    color: var(--accent-pink);
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.social-icon:hover {
    color: var(--accent-pink);
    border-color: var(--accent-pink);
    background: rgba(255, 45, 120, 0.08);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 13px;
    color: var(--text-muted);
}


/* ===================================
   WHATSAPP FLOAT
   =================================== */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 998;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    animation: whatsappPulse 2s ease-in-out infinite;
    transition: transform 0.3s;
}
.whatsapp-float:hover {
    transform: scale(1.1);
}
@keyframes whatsappPulse {
    0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 4px 30px rgba(37,211,102,0.7), 0 0 0 10px rgba(37,211,102,0.1); }
}


/* ===================================
   REVEAL ANIMATIONS
   =================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.reveal-right {
    transform: translateX(40px) translateY(0);
}

.reveal.visible {
    opacity: 1;
    transform: translate(0, 0);
}


/* ===================================
   PAGE HERO (Services & About)
   =================================== */
.page-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--bg-primary);
    padding-top: 100px;
    padding-bottom: 80px;
}
.page-hero-content {
    max-width: 700px;
}
.page-hero-headline {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    color: var(--text-heading);
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin-bottom: 24px;
}
.page-hero-sub {
    font-size: 18px;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 600px;
}
.page-hero-stats {
    display: flex;
    gap: 16px;
    align-items: center;
}
.phs-item {
    font-size: 15px;
    color: var(--text-muted);
    font-weight: 500;
}
.phs-divider {
    color: var(--text-muted);
}

/* About hero specific */
.about-hero-hl {
    font-size: clamp(32px, 4.5vw, 52px);
}
.strikethrough-text {
    text-decoration: line-through;
    text-decoration-color: rgba(255,45,120,0.5);
    opacity: 0.5;
}


/* ===================================
   SERVICE DETAIL PAGES
   =================================== */
.service-detail {
    padding: 100px 0;
    position: relative;
}
.service-detail:nth-child(odd) {
    background: #0a0a0f;
}
.service-detail:nth-child(even) {
    background: var(--bg-secondary);
}
.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.sd-grid-reverse {
    direction: rtl;
}
.sd-grid-reverse > * {
    direction: ltr;
}
.sd-number {
    display: inline-block;
    font-size: 48px;
    font-weight: 900;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.4;
    margin-bottom: 8px;
}
.sd-title {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 800;
    color: var(--text-heading);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}
.sd-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255,45,120,0.1);
    border: 1px solid rgba(255,45,120,0.3);
    border-radius: var(--radius-pill);
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-pink);
    margin-bottom: 20px;
}
.sd-desc {
    font-size: 16px;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 24px;
}
.sd-features {
    list-style: none;
    margin-bottom: 28px;
}
.sd-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 15px;
    color: var(--text-body);
}
.sd-check {
    color: var(--accent-pink);
    font-weight: 600;
}

/* Service Mockups */
.sd-mockup {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sd-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Laptop Mockup */
.laptop-body {
    width: 360px;
    animation: laptopFloat 6s ease-in-out infinite;
}
@keyframes laptopFloat {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}
.laptop-screen {
    background: var(--bg-card);
    border: 2px solid rgba(255,45,120,0.3);
    border-radius: 12px 12px 0 0;
    padding: 12px;
    box-shadow: 0 0 40px rgba(255,45,120,0.1), 0 0 80px rgba(123,47,255,0.06);
    aspect-ratio: 16/10;
}
.laptop-screen-content {
    height: 100%;
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 8px;
}
.mock-nav {
    height: 16px;
    background: rgba(255,45,120,0.15);
    border-radius: 4px;
}
.mock-hero-block {
    height: 60px;
    background: linear-gradient(90deg, rgba(255,45,120,0.1), rgba(123,47,255,0.1));
    border-radius: 6px;
}
.mock-cards {
    display: flex;
    gap: 6px;
    flex: 1;
}
.mock-card {
    flex: 1;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,45,120,0.1);
    border-radius: 4px;
}
.laptop-base {
    height: 12px;
    background: rgba(255,255,255,0.05);
    border-radius: 0 0 4px 4px;
    margin: 0 20px;
}
.fc-svc {
    position: absolute;
    font-size: 12px;
}
.fc-svc:first-of-type {
    top: -10px;
    right: -20px;
}

/* Flowchart */
.sd-flowchart {
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
    justify-content: center;
}
.flow-node {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 2px solid rgba(255,45,120,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-heading);
    position: relative;
    z-index: 2;
}
.flow-line {
    width: 60px;
    height: 2px;
    background: rgba(255,45,120,0.2);
    position: relative;
    overflow: hidden;
}
.flow-packet {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-pink);
    position: absolute;
    top: -3px;
    left: -10px;
    box-shadow: 0 0 8px var(--accent-pink);
    animation: packetMove 2s linear infinite;
}
.flow-line-2 .flow-packet { animation-delay: 0.7s; }
.flow-line-3 .flow-packet { animation-delay: 1.4s; }
@keyframes packetMove {
    from { left: -10px; }
    to { left: 60px; }
}

/* Phone Mockup */
.phone-body {
    width: 200px;
    background: var(--bg-card);
    border: 2px solid rgba(255,45,120,0.3);
    border-radius: 24px;
    padding: 8px;
    box-shadow: 0 0 40px rgba(255,45,120,0.1);
    animation: laptopFloat 7s ease-in-out infinite;
    position: relative;
}
.phone-notch {
    width: 80px;
    height: 20px;
    background: #000;
    border-radius: 0 0 12px 12px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.phone-screen {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 4px;
    padding: 8px;
    border-radius: 16px;
    aspect-ratio: 9/16;
}
.phone-post {
    background: linear-gradient(135deg, rgba(255,45,120,0.15), rgba(123,47,255,0.15));
    border-radius: 4px;
}
.fc-svc-top { top: 20px; right: -30px; }
.fc-svc-bot { bottom: 40px; left: -40px; }

/* Brand Elements */
.sd-brand-elements {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 16px;
    padding: 40px;
    animation: laptopFloat 8s ease-in-out infinite;
}
.brand-logo-mark {
    grid-column: 1/-1;
    text-align: center;
    font-size: 64px;
    font-weight: 900;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.brand-swatch {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    margin: 0 auto;
}
.brand-swatch-1 { background: var(--accent-pink); }
.brand-swatch-2 { background: var(--accent-purple); }
.brand-swatch-3 { background: var(--accent-magenta); }
.brand-typo {
    grid-column: 1/-1;
    text-align: center;
    font-size: 48px;
    font-weight: 300;
    color: var(--text-heading);
    font-style: italic;
}

/* Dashboard Mockup */
.sd-dashboard {
    width: 380px;
    background: var(--bg-card);
    border: 1px solid rgba(255,45,120,0.2);
    border-radius: 12px;
    padding: 16px;
    animation: laptopFloat 6s ease-in-out infinite;
}
.dash-header {
    height: 20px;
    background: rgba(255,45,120,0.1);
    border-radius: 6px;
    margin-bottom: 16px;
}
.dash-pipeline {
    display: flex;
    gap: 12px;
}
.dash-col {
    flex: 1;
}
.dash-col-header {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 8px;
    text-align: center;
}
.dash-lead-card {
    height: 32px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,45,120,0.1);
    border-radius: 6px;
    margin-bottom: 8px;
    animation: dashCardShift 4s ease-in-out infinite;
}
.dlc-1 { animation-delay: 0s; }
.dlc-2 { animation-delay: 0.5s; }
.dlc-3 { animation-delay: 1s; }
.dlc-4 { animation-delay: 1.5s; }
.dlc-5 { animation-delay: 2s; }
@keyframes dashCardShift {
    0%,100% { transform: translateX(0); opacity: 0.7; }
    50% { transform: translateX(4px); opacity: 1; }
}

/* Growth Chart */
.sd-chart {
    width: 400px;
    animation: laptopFloat 7s ease-in-out infinite;
}
.growth-chart {
    width: 100%;
    border-radius: 12px;
    overflow: visible;
}
.chart-line {
    stroke-dasharray: 600;
    stroke-dashoffset: 600;
    animation: drawChart 3s ease-in-out forwards;
}
.chart-dot {
    opacity: 0;
    animation: dotAppear 0.3s ease forwards;
}
.cd-1 { animation-delay: 0.5s; }
.cd-2 { animation-delay: 1s; }
.cd-3 { animation-delay: 1.5s; }
.cd-4 { animation-delay: 2s; }
.cd-5 { animation-delay: 2.5s; }
@keyframes drawChart {
    to { stroke-dashoffset: 0; }
}
@keyframes dotAppear {
    to { opacity: 1; }
}


/* ===================================
   SERVICE MID CTA
   =================================== */
.svc-cta-mid {
    background: var(--bg-primary);
    padding: 80px 0;
}
.svc-cta-card {
    text-align: center;
    background: var(--bg-card);
    border: 1px solid rgba(255,45,120,0.25);
    border-radius: var(--radius-lg);
    padding: 60px 40px;
}
.svc-cta-card h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-heading);
    margin-bottom: 12px;
}
.svc-cta-card p {
    font-size: 16px;
    color: var(--text-body);
    margin-bottom: 28px;
}


/* ===================================
   PACKAGES TABLE
   =================================== */
.svc-packages {
    background: var(--bg-secondary);
    padding: 120px 0;
}
.packages-table-wrap {
    overflow-x: auto;
}
.packages-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
}
.packages-table th, .packages-table td {
    padding: 16px 20px;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.packages-table th {
    color: var(--text-heading);
    font-weight: 700;
    background: rgba(255,255,255,0.03);
}
.pt-service {
    text-align: left !important;
}
.packages-table td:first-child {
    text-align: left;
    color: var(--text-heading);
    font-weight: 500;
}
.pt-featured {
    background: linear-gradient(180deg, rgba(255,45,120,0.1), rgba(123,47,255,0.05)) !important;
    color: var(--accent-pink) !important;
}
.pt-highlight {
    background: rgba(255,45,120,0.04);
}
.pt-check {
    color: var(--accent-pink);
    font-weight: 700;
    font-size: 18px;
}
.pt-dash {
    color: var(--text-muted);
    opacity: 0.4;
}


/* ===================================
   ABOUT PAGE - STORY
   =================================== */
.about-story {
    background: var(--bg-secondary);
    padding: 120px 0;
}
.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-pullquote {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 32px;
    border: none;
    padding: 0;
}
.about-story-text p {
    color: var(--text-body);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
}

/* 3D Logo */
.about-3d-logo {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-logo-orb {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,45,120,0.3), rgba(123,47,255,0.2), transparent);
    filter: blur(40px);
    animation: auraGlow 4s ease-in-out infinite alternate;
}
.about-logo-text {
    font-size: 64px;
    font-weight: 900;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: logoRotate 20s linear infinite;
    position: relative;
    z-index: 1;
}
@keyframes logoRotate {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(360deg); }
}
.about-logo-badge {
    position: absolute;
    padding: 6px 14px;
    background: rgba(18,18,30,0.9);
    border: 1px solid rgba(255,45,120,0.2);
    border-radius: var(--radius-pill);
    font-size: 12px;
    font-weight: 500;
    color: var(--text-body);
    white-space: nowrap;
    animation: fcFloat 5s ease-in-out infinite;
}
.alb-1 { top: 5%; left: -10%; animation-delay: 0s; }
.alb-2 { top: 5%; right: -10%; animation-delay: 1s; }
.alb-3 { bottom: 10%; left: -15%; animation-delay: 2s; }
.alb-4 { bottom: 10%; right: -15%; animation-delay: 3s; }


/* ===================================
   FOUNDER SECTION
   =================================== */
.founder-section {
    background: var(--bg-primary);
    padding: 120px 0;
}
.founder-card {
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,45,120,0.2);
    border-radius: var(--radius-lg);
    padding: 48px;
}
.founder-card-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 48px;
    align-items: start;
}
.founder-left {
    text-align: center;
}
.founder-avatar-large {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
}
.founder-avatar-ring {
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid var(--accent-pink);
    opacity: 0.4;
    animation: ringPulse 4s ease-in-out infinite;
}
.founder-initials {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
}
.founder-full-name {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-heading);
    margin-bottom: 4px;
}
.founder-title-text {
    font-size: 14px;
    color: var(--accent-pink);
    font-weight: 500;
    margin-bottom: 4px;
}
.founder-loc {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 16px;
}
.founder-socials {
    display: flex;
    justify-content: center;
    gap: 12px;
}
.founder-social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all 0.3s;
}
.founder-social-icon:hover {
    color: var(--accent-pink);
    border-color: var(--accent-pink);
}
.founder-bio {
    font-size: 16px;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 28px;
    font-style: italic;
}
.founder-values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.founder-value-card {
    background: var(--bg-card);
    border: 1px solid rgba(255,45,120,0.15);
    border-radius: var(--radius-md);
    padding: 20px;
    transition: all 0.3s;
    transform-style: preserve-3d;
}
.founder-value-card:hover {
    border-color: rgba(255,45,120,0.4);
    transform: translateY(-4px);
}
.fv-icon {
    font-size: 28px;
    display: block;
    margin-bottom: 8px;
}
.founder-value-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 4px;
}
.founder-value-card p {
    font-size: 13px;
    color: var(--text-muted);
}


/* ===================================
   VISION / ROADMAP
   =================================== */
.vision-section {
    background: var(--bg-secondary);
    padding: 120px 0;
}
.roadmap {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 40px 0;
    overflow-x: auto;
    gap: 0;
}
.roadmap-line {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient);
    opacity: 0.3;
}
.roadmap-node {
    flex: 1;
    min-width: 140px;
    text-align: center;
    position: relative;
}
.rn-dot {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 2px solid var(--accent-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    z-index: 2;
    position: relative;
    box-shadow: 0 0 16px rgba(255,45,120,0.2);
}
.rn-dot span {
    font-size: 12px;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.rn-content {
    font-size: 13px;
    color: var(--text-body);
    line-height: 1.5;
    padding: 0 8px;
}


/* ===================================
   CONTACT PAGE
   =================================== */
.contact-page {
    background: var(--bg-primary);
    padding: 120px 0;
}
.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}
.contact-page-title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    color: var(--text-heading);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}
.contact-page-sub {
    font-size: 16px;
    color: var(--text-body);
    margin-bottom: 32px;
    line-height: 1.7;
}
.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 28px;
}
.ci-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 14px;
    transition: all 0.3s;
}
.ci-card:hover {
    border-color: rgba(255,45,120,0.3);
    transform: translateX(4px);
}
.ci-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.ci-green { background: rgba(37,211,102,0.1); color: #25d366; }
.ci-pink { background: rgba(255,45,120,0.1); color: var(--accent-pink); }
.ci-purple { background: rgba(123,47,255,0.1); color: var(--accent-purple); }
.ci-blue { background: rgba(68,138,255,0.1); color: #448aff; }
.ci-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 2px;
}
.ci-value {
    font-size: 14px;
    color: var(--text-body);
}
.ci-note {
    font-size: 12px;
    color: var(--text-muted);
}

/* Contact social pills */
.contact-socials-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.cs-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-pill);
    font-size: 13px;
    color: var(--text-muted);
    transition: all 0.3s;
}
.cs-pill:hover {
    color: var(--accent-pink);
    border-color: var(--accent-pink);
    background: rgba(255,45,120,0.06);
}

/* Contact form card */
.contact-form-card {
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,45,120,0.25);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    box-shadow: 0 0 60px rgba(255,45,120,0.08);
}
.form-envelope-icon {
    text-align: center;
    margin-bottom: 24px;
    animation: laptopFloat 5s ease-in-out infinite;
}
.full-form {
    background: transparent;
    border: none;
    padding: 0;
    box-shadow: none;
}

/* Checkbox grid */
.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.cb-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-body);
    cursor: none;
}
.cb-label input[type="checkbox"] {
    accent-color: var(--accent-pink);
    width: 16px;
    height: 16px;
}

/* Form trust row */
.form-trust-row {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 20px;
    flex-wrap: wrap;
}
.form-trust-row span {
    font-size: 12px;
    color: var(--text-muted);
}


/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }
    .hero-content {
        padding-right: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .hero-subtext {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-ctas { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-visual {
        max-width: 400px;
        margin: 0 auto;
    }
    .hero-card { max-width: 360px; }
    #globe-canvas { display: none; }

    .problems-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-grid {
        grid-template-columns: 1fr;
    }
    .about-visual { order: -1; }
    .about-logo-card {
        max-width: 280px;
        margin: 0 auto;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .testimonials-track {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    .comparison-header {
        font-size: 16px;
    }
    .service-detail-grid,
    .sd-grid-reverse {
        grid-template-columns: 1fr;
    }
    .sd-grid-reverse { direction: ltr; }
    .about-story-grid {
        grid-template-columns: 1fr;
    }
    .founder-card-grid {
        grid-template-columns: 1fr;
    }
    .contact-page-grid {
        grid-template-columns: 1fr;
    }
    .roadmap {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    .roadmap-line { display: none; }
    .timeline-left,
    .timeline-right {
        flex-direction: column;
        align-items: center;
    }
    .timeline-dot {
        position: relative;
        left: auto;
        transform: none;
        margin-bottom: 16px;
    }
    .timeline-card {
        width: 100%;
    }
    .timeline-line { left: 50%; }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .nav-cta { display: none; }
    .mobile-toggle { display: flex; }
    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .mobile-toggle.active span:nth-child(2) { opacity: 0; }
    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

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

    .steps-flow {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }
    .step-connector {
        width: 2px;
        height: 40px;
        padding: 0;
    }
    .connector-line {
        width: 2px !important;
        height: 100%;
        border-top: none !important;
        border-left: 2px dashed rgba(255, 45, 120, 0.35);
    }

    .pricing-grid { grid-template-columns: 1fr; }
    .about-stats { grid-template-columns: repeat(2, 1fr); }
    .form-row { grid-template-columns: 1fr; }
    .contact-form { padding: 32px 24px; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .floating-card { display: none; }
    .problems-grid { grid-template-columns: 1fr; }
    .checkbox-grid { grid-template-columns: repeat(2, 1fr); }
    .cta-trust-row { flex-direction: column; align-items: center; gap: 8px; }
    .comparison-row { grid-template-columns: 1fr; gap: 0; }
    .comp-falt { justify-content: flex-start; text-align: left; }
    .comp-divider-line { display: none; }
    .comparison-header { grid-template-columns: 1fr; gap: 8px; }
    .comp-col-divider { display: none; }
}

@media (max-width: 480px) {
    .hero-headline .line-1 { font-size: 32px; }
    .hero-headline .line-2 { font-size: 36px; }
    .hero-headline .line-3 { font-size: 32px; }
    .section-title { font-size: 28px; }
    .hero-ctas {
        flex-direction: column;
        width: 100%;
    }
    .hero-ctas .btn { width: 100%; }
    .hero-stats {
        flex-direction: column;
        align-items: center;
    }
    .stat-counter-number { font-size: 48px; }
    .founder-card { padding: 28px 20px; }
    .checkbox-grid { grid-template-columns: 1fr; }
}
