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

:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #141414;
    --bg-tertiary: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #a1a1a1;
    --accent-pink-start: #fdccd7;
    --accent-pink-mid: #faa0b5;
    --accent-pink-end: #f77393;
    --accent-gradient: linear-gradient(135deg, var(--accent-pink-start), var(--accent-pink-mid), var(--accent-pink-end));
    --border-color: rgba(255, 255, 255, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    animation: fadeIn 0.6s ease-out;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nav.scrolled {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

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

.logo-image {
    height: 80px;
    width: auto;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.logo:hover .logo-image {
    transform: scale(1.05);
    filter: drop-shadow(0 0 10px rgba(253, 204, 215, 0.5));
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.05em;
}

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

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-cta {
    color: var(--text-primary) !important;
    background: rgba(253, 204, 215, 0.15);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    border: 1px solid rgba(253, 204, 215, 0.3);
}

.nav-cta:hover {
    background: rgba(253, 204, 215, 0.25);
    border-color: rgba(253, 204, 215, 0.5);
}

@keyframes floatSlow {
    0%, 100% {
        transform: translateY(-50%) translateX(0);
    }
    50% {
        transform: translateY(-50%) translateX(10px);
    }
}

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

.model-image-hero {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    max-width: 400px;
    width: 35%;
    opacity: 0.3;
    z-index: 1;
    pointer-events: none;
    filter: blur(0.5px);
    mask-image: linear-gradient(to left, rgba(0,0,0,0.8), transparent);
    -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,0.8), transparent);
    animation: floatSlow 6s ease-in-out infinite;
}

.model-image-growth {
    position: absolute;
    left: 0;
    bottom: 0;
    max-width: 350px;
    width: 30%;
    opacity: 0.25;
    z-index: 1;
    pointer-events: none;
    filter: blur(0.5px);
    mask-image: linear-gradient(to right, rgba(0,0,0,0.7), transparent);
    -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,0.7), transparent);
    animation: floatVertical 8s ease-in-out infinite;
}

.model-image-services-1 {
    position: absolute;
    right: -5%;
    top: 10%;
    max-width: 300px;
    width: 25%;
    opacity: 0.2;
    z-index: 1;
    pointer-events: none;
    animation: floatVertical 7s ease-in-out infinite;
}

.model-image-services-2 {
    position: absolute;
    left: -5%;
    bottom: 5%;
    max-width: 320px;
    width: 26%;
    opacity: 0.2;
    z-index: 1;
    pointer-events: none;
    animation: floatVertical 9s ease-in-out infinite 0.5s;
}

.model-image-cta {
    position: absolute;
    right: 2%;
    top: 50%;
    transform: translateY(-50%);
    max-width: 280px;
    width: 23%;
    opacity: 0.15;
    z-index: 1;
    pointer-events: none;
    animation: floatSlow 8s ease-in-out infinite;
}

@media (max-width: 768px) {
    .model-image-hero {
        width: 50%;
        max-width: 250px;
        opacity: 0.15;
        top: 60%;
        will-change: opacity;
        animation-duration: 12s !important;
    }

    .model-image-growth {
        width: 45%;
        max-width: 200px;
        opacity: 0.15;
        will-change: opacity;
        animation-duration: 16s !important;
    }

    .model-image-services-1 {
        width: 40%;
        max-width: 180px;
        opacity: 0.1;
        animation-duration: 14s !important;
    }

    .model-image-services-2 {
        width: 40%;
        max-width: 180px;
        opacity: 0.1;
        animation-duration: 18s !important;
    }

    .model-image-cta {
        width: 35%;
        max-width: 150px;
        opacity: 0.08;
        animation-duration: 16s !important;
    }

    .cta-button,
    .point-icon,
    .featured-badge,
    .cta-title,
    .scroll-indicator,
    .flow-arrow {
        animation-duration: 4s !important;
    }

    .results-slideshow,
    .stat-item:hover .stat-number {
        animation-duration: 6s !important;
    }

    .logo-track {
        animation-duration: 60s !important;
    }

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

    .hero-subtitle {
        font-size: 1.1rem !important;
    }

    .section-title {
        font-size: 2rem !important;
    }

    .service-card {
        padding: 2rem !important;
    }

    .nav-links {
        gap: 1.5rem;
        font-size: 0.9rem;
    }

    .cta-button,
    .nav-cta,
    .service-cta {
        min-height: 48px;
        min-width: 48px;
        padding: 1rem 1.5rem;
    }

    section {
        padding: 3rem 1rem !important;
    }

    .social-impact,
    .chatting-revenue {
        padding: 4rem 1.5rem !important;
    }

    .conversation-flow {
        flex-direction: column;
    }

    .flow-item {
        min-width: 200px;
    }

    .highlight-item:hover {
        transform: translateX(0);
    }

    .impact-stat-number {
        font-size: 2rem;
    }

    .revenue-amount {
        font-size: 2rem;
    }

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

    .trend-analysis,
    .activity-feed {
        grid-column: span 1;
    }

    .data-lab-container {
        padding: 1.5rem;
    }

    .lab-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .score-ring {
        width: 100px;
        height: 100px;
    }

    .metrics-grid {
        gap: 1.5rem;
    }

    .mini-metric {
        background: rgba(255, 255, 255, 0.02);
        padding: 0.875rem;
        border-radius: 8px;
    }

    .mini-value {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .metric-number {
        font-size: 1.5rem;
    }

    .metric-bar {
        width: 100%;
        height: 6px;
    }

    .mini-label {
        font-size: 0.65rem;
        letter-spacing: 0.03em;
    }

    .lab-card {
        padding: 1rem;
    }

    .card-label {
        font-size: 0.55rem;
        margin-bottom: 0.75rem;
    }

    .trend-name {
        font-size: 0.85rem;
    }

    .trend-time {
        font-size: 0.7rem;
    }

    .activity-item {
        font-size: 0.8rem;
        padding: 0.35rem;
    }

    .activity-pulse {
        width: 5px;
        height: 5px;
    }

    .trend-item {
        flex-direction: row;
    }

    .trend-icon {
        font-size: 1.25rem;
    }

    .section-cta-wrapper {
        padding-top: 2rem;
    }
}

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    justify-content: center;
    align-items: center;
    padding: 8rem 2rem 4rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(253, 204, 215, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    max-width: 1200px;
    text-align: center;
    position: relative;
    z-index: 1;
}

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

.gradient-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    color: var(--text-primary);
    background: var(--accent-gradient);
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    animation: ctaPulse 2.5s ease-in-out infinite;
}

@keyframes ctaPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(253, 204, 215, 0.4);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 15px 40px rgba(253, 204, 215, 0.6);
    }
}

.cta-button:hover {
    animation: magneticPull 0.6s ease-in-out infinite;
    transform: scale(1.05);
}

@keyframes magneticPull {
    0%, 100% {
        transform: scale(1.05);
    }
    50% {
        transform: scale(1.08);
    }
}

.cta-button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 70%
    );
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(253, 204, 215, 0.4);
}

.arrow {
    transition: var(--transition);
}

.cta-button:hover .arrow {
    transform: translateX(4px);
    animation: arrowBounce 0.6s ease-in-out infinite;
}

@keyframes arrowBounce {
    0%, 100% {
        transform: translateX(4px);
    }
    50% {
        transform: translateX(8px);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    cursor: pointer;
    transition: all 0.3s ease;
}

.scroll-indicator:hover {
    transform: translateX(-50%) scale(1.1);
}

.scroll-indicator:hover .mouse {
    border-color: var(--accent-pink-mid);
    box-shadow: 0 0 20px rgba(253, 204, 215, 0.5);
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--text-secondary);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
    transition: all 0.3s ease;
}

.wheel {
    width: 3px;
    height: 8px;
    background: var(--text-secondary);
    border-radius: 2px;
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(12px);
    }
}

.stats {
    padding: 4rem 2rem;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.stats-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat-number {
    font-size: 4rem;
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
    animation: fadeInUp 0.8s ease-out backwards;
    position: relative;
}

.stat-item:hover .stat-number {
    animation: statPop 0.5s ease-in-out;
}

@keyframes statPop {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.stat-item:nth-child(1) .stat-number {
    animation-delay: 0.1s;
}

.stat-item:nth-child(2) .stat-number {
    animation-delay: 0.2s;
}

.stat-item:nth-child(3) .stat-number {
    animation-delay: 0.3s;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 1.125rem;
}

.services {
    padding: 8rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

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

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 3rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    animation: fadeInUp 0.8s ease-out backwards;
}

.service-card:nth-child(1) {
    animation-delay: 0.2s;
}

.service-card:nth-child(2) {
    animation-delay: 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(253, 204, 215, 0.5);
    box-shadow: 0 20px 60px rgba(253, 204, 215, 0.2);
}

.service-card.featured {
    border: 2px solid rgba(253, 204, 215, 0.5);
    background: linear-gradient(135deg, rgba(253, 204, 215, 0.05), transparent);
}

.featured-badge {
    position: absolute;
    top: -12px;
    right: 2rem;
    background: var(--accent-gradient);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    animation: badgePulse 2s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(253, 204, 215, 0.6);
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(253, 204, 215, 0.6);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 30px rgba(253, 204, 215, 0.9);
    }
}

.service-icon {
    width: 64px;
    height: 64px;
    background: rgba(253, 204, 215, 0.15);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    color: var(--accent-purple-start);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-icon {
    transform: translateY(-8px) rotate(5deg);
    background: rgba(253, 204, 215, 0.25);
    box-shadow: 0 10px 30px rgba(253, 204, 215, 0.3);
}

.service-icon svg {
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon svg {
    transform: scale(1.1);
}

.service-title {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-description {
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.service-features {
    list-style: none;
}

.service-features li {
    padding: 0.75rem 0;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
}

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

.service-features li::before {
    content: '→';
    color: var(--accent-purple-start);
    margin-right: 0.75rem;
    font-weight: bold;
}

.growth {
    padding: 8rem 2rem;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.growth-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.growth-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.7;
}

.growth-points {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.growth-point {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.point-icon {
    width: 32px;
    height: 32px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
    transition: all 0.3s ease;
    animation: pulseIcon 2s ease-in-out infinite;
}

@keyframes pulseIcon {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(253, 204, 215, 0.7);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(253, 204, 215, 0);
    }
}

.growth-point:hover .point-icon {
    transform: scale(1.15) rotate(360deg);
    animation: none;
}

.growth-point h4 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.growth-point p {
    color: var(--text-secondary);
}

.growth-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.earnings-graph {
    width: 100%;
    max-width: 500px;
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.graph-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.graph-label {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.graph-amount {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.graph-period {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.earnings-chart {
    width: 100%;
    height: auto;
    margin-bottom: 1rem;
}

.earnings-line {
    filter: drop-shadow(0 0 8px rgba(253, 204, 215, 0.5));
    transition: filter 0.3s ease;
}

.earnings-graph:hover .earnings-line {
    filter: drop-shadow(0 0 15px rgba(253, 204, 215, 0.8));
}

.data-point {
    cursor: pointer;
    transition: all 0.3s ease;
}

.data-point:hover {
    r: 8;
    filter: drop-shadow(0 0 10px rgba(253, 204, 215, 1));
}

.earnings-graph:hover .earnings-area {
    opacity: 1 !important;
}

.graph-caption {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-style: italic;
}

.earnings-line.animate {
    animation: drawLine 2s ease-out forwards;
}

.earnings-area.animate {
    animation: fadeInArea 2s ease-out 0.5s forwards;
}

.data-point.animate {
    animation: popIn 0.4s ease-out forwards;
}

@keyframes drawLine {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes fadeInArea {
    to {
        opacity: 1;
    }
}

@keyframes popIn {
    0% {
        opacity: 0;
        transform: scale(0);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.service-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    color: var(--text-primary);
    background: rgba(253, 204, 215, 0.15);
    border: 1px solid rgba(253, 204, 215, 0.3);
    border-radius: 50px;
    transition: var(--transition);
    margin-top: 1.5rem;
    position: relative;
}

.service-cta::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50px;
    background: var(--accent-gradient);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.service-cta:hover {
    background: rgba(253, 204, 215, 0.25);
    border-color: rgba(253, 204, 215, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(253, 204, 215, 0.3);
}

.service-cta:hover::after {
    opacity: 0.2;
}

.service-cta .arrow {
    transition: var(--transition);
}

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

.section-cta-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding-top: 3rem;
}

.social-impact {
    padding: 8rem 2rem;
    background: var(--bg-primary);
    overflow: hidden;
}

.impact-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.impact-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 3rem;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.impact-cta {
    margin-top: 0;
}

.impact-stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(253, 204, 215, 0.05);
    border: 1px solid rgba(253, 204, 215, 0.2);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.impact-stat:hover {
    background: rgba(253, 204, 215, 0.1);
    border-color: rgba(253, 204, 215, 0.4);
    transform: translateY(-5px);
}

.impact-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.impact-stat-label {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.data-lab-container {
    background: rgba(10, 10, 10, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lab-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.lab-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.status-indicator {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    animation: statusPulse 2s ease-in-out infinite;
    box-shadow: 0 0 10px #4ade80;
}

@keyframes statusPulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.lab-time {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-family: 'Courier New', monospace;
}

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

.lab-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    animation: dataCardFloat 4s ease-in-out infinite;
}

.lab-card:nth-child(2) {
    animation-delay: 0.5s;
}

.lab-card:nth-child(3) {
    animation-delay: 1s;
}

.lab-card:nth-child(4) {
    animation-delay: 1.5s;
}

.lab-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(253, 204, 215, 0.3);
    transform: translateY(-2px);
}

.card-label {
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.main-metric {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.viral-score {
    margin: 1.5rem 0;
}

.score-ring {
    width: 120px;
    height: 120px;
    animation: floatSoft 6s ease-in-out infinite;
}

.score-ring-progress {
    transform: rotate(-90deg);
    transform-origin: 50% 50%;
    transition: stroke-dashoffset 2s ease-out;
    animation: viralRingGlow 3s ease-in-out infinite;
}

.metric-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.metrics-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mini-metric {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mini-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.mini-value {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.metric-number {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.metric-bar {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.metric-bar-fill {
    height: 100%;
    width: var(--width);
    background: var(--accent-gradient);
    border-radius: 3px;
    transition: width 1.5s ease-out;
    position: relative;
    overflow: hidden;
}

.metric-bar-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 100%
    );
    background-size: 200% 100%;
    animation: shimmerBar 3s linear infinite;
}

.trend-analysis {
    grid-column: span 2;
}

.trend-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.trend-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.trend-item:hover {
    background: rgba(253, 204, 215, 0.05);
    transform: translateX(5px);
}

.trend-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    animation: pulse 3s ease-in-out infinite;
}

.trend-item:nth-child(2) .trend-icon {
    animation-delay: 0.5s;
}

.trend-item:nth-child(3) .trend-icon {
    animation-delay: 1s;
}

.trend-text {
    flex: 1;
}

.trend-name {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.125rem;
}

.trend-time {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.activity-feed {
    grid-column: span 2;
}

.activity-items {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
    padding: 0.5rem;
}

.activity-pulse {
    width: 6px;
    height: 6px;
    background: var(--accent-pink-mid);
    border-radius: 50%;
    animation: activityPulse 1.5s ease-in-out infinite;
    box-shadow: 0 0 10px var(--accent-pink-mid);
}

@keyframes activityPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.7;
    }
}

@keyframes viralRingGlow {
    0%, 100% {
        filter: drop-shadow(0 0 8px rgba(253, 204, 215, 0.5));
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(253, 204, 215, 0.9));
    }
}

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

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

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

@keyframes revenueCountShimmer {
    0%, 100% {
        text-shadow: 0 0 10px rgba(253, 204, 215, 0.3);
    }
    50% {
        text-shadow: 0 0 25px rgba(253, 204, 215, 0.8), 0 0 40px rgba(253, 204, 215, 0.5);
    }
}

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

@keyframes arrowFlowPulse {
    0%, 100% {
        opacity: 0.6;
        transform: translateX(0);
    }
    50% {
        opacity: 1;
        transform: translateX(5px);
    }
}

.activity-item:nth-child(2) .activity-pulse {
    animation-delay: 0.5s;
}

.activity-item:nth-child(3) .activity-pulse {
    animation-delay: 1s;
}

.chatting-revenue {
    padding: 8rem 2rem;
    background: var(--bg-secondary);
    overflow: hidden;
}

.revenue-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.conversation-chart {
    background: rgba(10, 10, 10, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    margin-bottom: 2rem;
}

.revenue-cta {
    text-align: center;
}

.conversation-flow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.flow-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
    min-width: 100px;
    transition: all 0.4s ease;
    animation: flowFloat 5s ease-in-out infinite;
}

.flow-item:nth-child(2) {
    animation-delay: 0.7s;
}

.flow-item:nth-child(3) {
    animation-delay: 1.4s;
}

.flow-item:nth-child(4) {
    animation-delay: 2.1s;
}

.flow-item:hover {
    transform: translateY(-10px) scale(1.05);
}

.flow-item svg {
    transition: all 0.3s ease;
}

.flow-item:hover svg {
    filter: drop-shadow(0 0 15px rgba(253, 204, 215, 0.7));
}

.flow-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-align: center;
}

.flow-metric {
    font-size: 0.75rem;
    color: var(--accent-pink-mid);
    font-weight: 600;
}

.flow-arrow {
    flex-shrink: 0;
    animation: arrowFlowPulse 2.5s ease-in-out infinite;
}

.flow-arrow:nth-child(2) {
    animation-delay: 0.5s;
}

@keyframes arrowPulse {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
}

.revenue-amount {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
    animation: revenueCountShimmer 3s ease-in-out infinite;
}

.revenue-breakdown {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-top: 0.75rem;
}

.breakdown-item {
    font-size: 0.75rem;
    color: var(--text-secondary);
    background: rgba(253, 204, 215, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    animation: pulse 4s ease-in-out infinite;
}

.breakdown-item:nth-child(2) {
    animation-delay: 0.7s;
}

.breakdown-item:nth-child(3) {
    animation-delay: 1.4s;
}

.revenue-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 3rem;
}

.revenue-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.highlight-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: rgba(253, 204, 215, 0.05);
    border: 1px solid rgba(253, 204, 215, 0.15);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: rgba(253, 204, 215, 0.1);
    border-color: rgba(253, 204, 215, 0.3);
    transform: translateX(10px);
}

.highlight-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.highlight-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.highlight-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.partnerships {
    padding: 4rem 2rem;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
}

.partnerships-title {
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.logo-slider {
    overflow: hidden;
    position: relative;
}

.logo-track {
    display: flex;
    gap: 4rem;
    animation: slide 30s linear infinite;
    width: fit-content;
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.partner-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-secondary);
    white-space: nowrap;
    transition: var(--transition);
    cursor: default;
    user-select: none;
}

.partner-logo:hover {
    color: var(--text-primary);
}

.partner-logo-img {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2rem;
    white-space: nowrap;
}

.partner-logo-img img {
    height: 60px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    opacity: 0.8;
    transition: all 0.4s ease;
    filter: grayscale(30%);
}

.partner-logo-img:hover img {
    opacity: 1;
    transform: scale(1.1);
    filter: grayscale(0%);
}

.results {
    padding: 8rem 2rem;
    background: var(--bg-secondary);
}

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

.results-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    animation: resultsShine 3s ease-in-out infinite;
}

@keyframes resultsShine {
    0%, 100% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.2);
    }
}

.results-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.results-slideshow {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: var(--bg-tertiary);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: socialProofGlow 4s ease-in-out infinite;
}

@keyframes socialProofGlow {
    0%, 100% {
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    }
    50% {
        box-shadow: 0 20px 80px rgba(253, 204, 215, 0.2), 0 0 40px rgba(253, 204, 215, 0.1);
    }
}

.results-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.result-slide {
    min-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.result-slide img {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
    border-radius: 12px;
    transition: transform 0.5s ease;
}

.result-slide img:hover {
    transform: scale(1.02);
}

.results-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.results-dots {
    display: flex;
    gap: 0.75rem;
}

.result-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: var(--transition);
}

.result-dot.active {
    background: var(--accent-pink-mid);
    transform: scale(1.2);
}

.results-nav-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.5rem;
}

.results-nav-btn:hover {
    background: rgba(253, 204, 215, 0.2);
    border-color: rgba(253, 204, 215, 0.5);
}

@media (max-width: 768px) {
    .results {
        padding: 4rem 1rem;
    }

    .results-header {
        margin-bottom: 2rem;
    }

    .result-slide {
        padding: 1rem;
    }

    .result-slide img {
        max-height: 400px;
    }

    .results-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

.cta-section {
    padding: 8rem 2rem;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    animation: urgencyGlow 3s ease-in-out infinite;
}

@keyframes urgencyGlow {
    0%, 100% {
        text-shadow: 0 0 20px rgba(253, 204, 215, 0.3);
    }
    50% {
        text-shadow: 0 0 40px rgba(253, 204, 215, 0.6);
    }
}

.cta-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    position: relative;
}

.cta-subtitle strong {
    color: var(--accent-pink-mid);
    font-weight: 700;
    animation: emphasize 2s ease-in-out infinite;
}

@keyframes emphasize {
    0%, 100% {
        color: var(--accent-pink-mid);
    }
    50% {
        color: var(--accent-pink-end);
    }
}

.cta-note {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-style: italic;
    margin-top: 2rem;
}

.form-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    animation: formAttention 3s ease-in-out infinite;
}

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

.form-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-brand p {
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

@media (max-width: 1024px) {
    .growth-content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

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

    .impact-container,
    .revenue-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .conversation-flow {
        justify-content: center;
    }

    .flow-arrow {
        display: none;
    }

    .impact-stats {
        grid-template-columns: 1fr;
        margin-bottom: 2rem;
    }

    .impact-cta {
        text-align: center;
    }

    .revenue-visual {
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 1rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .nav-links a {
        font-size: 0.875rem;
    }

    .hero {
        padding: 6rem 1.5rem 3rem;
    }

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

    .services,
    .growth,
    .cta-section {
        padding: 4rem 1.5rem;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .service-card {
        padding: 2rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .chart-bars {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .cta-button {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }

    .stat-number {
        font-size: 3rem;
    }

    .service-card {
        min-width: unset;
    }

    .data-lab-container {
        padding: 1rem;
    }

    .lab-header {
        padding-bottom: 0.75rem;
    }

    .lab-status {
        font-size: 0.75rem;
    }

    .lab-time {
        font-size: 0.65rem;
    }

    .metric-number {
        font-size: 1.25rem;
    }

    .score-ring {
        width: 90px;
        height: 90px;
    }

    .score-ring text {
        font-size: 20px;
    }

    .trend-icon {
        font-size: 1.125rem;
    }

    .flow-item {
        min-width: 150px;
    }

    .flow-item svg {
        width: 50px;
        height: 50px;
    }

    .revenue-amount {
        font-size: 1.75rem;
    }

    .breakdown-item {
        font-size: 0.7rem;
        padding: 0.2rem 0.5rem;
    }
}

@media (max-width: 360px) {
    .data-lab-container {
        padding: 0.75rem;
    }

    .lab-grid {
        gap: 0.75rem;
    }

    .lab-card {
        padding: 0.75rem;
    }

    .metric-number {
        font-size: 1.125rem;
    }

    .mini-label {
        font-size: 0.6rem;
    }

    .trend-name {
        font-size: 0.8rem;
    }

    .card-label {
        font-size: 0.5rem;
    }

    .activity-item {
        font-size: 0.75rem;
    }

    .impact-stat {
        padding: 1rem;
    }

    .impact-stat-number {
        font-size: 1.75rem;
    }
}

.application-form-section {
    padding: 6rem 2rem;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.application-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(253, 204, 215, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
    animation: fadeInUp 0.6s ease-out;
}

.form-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.form-progress {
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.6s ease-out 0.1s both;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-fill {
    height: 100%;
    background: var(--accent-gradient);
    border-radius: 10px;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 16.66%;
}

.progress-text {
    text-align: right;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.creator-form {
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.form-step {
    display: none;
    animation: fadeInRight 0.4s ease-out;
}

.form-step.active {
    display: block;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.form-label {
    display: block;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.form-input {
    width: 100%;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--text-primary);
    transition: var(--transition);
    font-family: inherit;
}

.form-input:focus {
    outline: none;
    border-color: var(--accent-pink-mid);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 4px rgba(250, 160, 181, 0.1);
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-input:invalid:not(:placeholder-shown) {
    border-color: rgba(255, 100, 100, 0.5);
}

.form-input:valid:not(:placeholder-shown) {
    border-color: rgba(100, 255, 150, 0.5);
}

.phone-input-group {
    display: flex;
    gap: 0.75rem;
}

.country-select {
    width: 120px;
    padding: 1rem;
    font-size: 0.95rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--text-primary);
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}

.country-select:focus {
    outline: none;
    border-color: var(--accent-pink-mid);
    background: rgba(255, 255, 255, 0.08);
}

.country-select option {
    background: #1a1a1a;
    color: #ffffff;
    padding: 0.5rem;
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.contact-option {
    cursor: pointer;
}

.contact-option input[type="radio"] {
    display: none;
}

.option-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
}

.option-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.contact-option input[type="radio"]:checked + .option-card {
    background: rgba(250, 160, 181, 0.15);
    border-color: var(--accent-pink-mid);
    box-shadow: 0 0 0 4px rgba(250, 160, 181, 0.1);
}

.option-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.option-name {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-primary);
}

.helper-text {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}

.error-message {
    color: #ff6b6b;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    min-height: 1.25rem;
    display: block;
}

.form-navigation {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-secondary,
.btn-primary,
.btn-submit {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: inherit;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-primary {
    flex: 1;
    background: var(--accent-gradient);
    color: white;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(250, 160, 181, 0.3);
}

.btn-submit {
    flex: 1;
    background: var(--accent-gradient);
    color: white;
    justify-content: center;
    position: relative;
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-submit:not(:disabled):hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(250, 160, 181, 0.3);
}

.spinner {
    width: 20px;
    height: 20px;
    animation: rotate 1s linear infinite;
}

.spinner .path {
    stroke: white;
    stroke-linecap: round;
    animation: dash 1.5s ease-in-out infinite;
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes dash {
    0% {
        stroke-dasharray: 1, 150;
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -35;
    }
    100% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -124;
    }
}

.success-message {
    text-align: center;
    padding: 3rem 2rem;
    animation: fadeInUp 0.6s ease-out;
}

.success-icon {
    margin-bottom: 2rem;
    animation: scaleIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

.success-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.success-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .application-form-section {
        padding: 4rem 1.5rem;
    }

    .form-title {
        font-size: 2rem;
    }

    .form-subtitle {
        font-size: 1rem;
    }

    .creator-form {
        padding: 2rem 1.5rem;
    }

    .form-label {
        font-size: 1.1rem;
    }

    .contact-options {
        grid-template-columns: 1fr;
    }

    .form-navigation {
        flex-direction: column;
    }

    .btn-secondary,
    .btn-primary,
    .btn-submit {
        width: 100%;
        justify-content: center;
    }
	
    .success-title {
        font-size: 1.75rem;
    }

    .success-text {
        font-size: 1rem;
    }
}

.contact-option input[type="checkbox"],
.contact-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.contact-option .option-card {
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
  border: 1px solid rgba(255,255,255,0.12);
}

.contact-option.is-selected .option-card {
  background: linear-gradient(135deg, #fdccd7, #f77393);
  color: #0b0b0b;
  border-color: transparent;
  box-shadow: 0 6px 24px rgba(247,115,147,0.35);
  transform: translateY(-2px);
}

.contact-option .option-card:hover {
  transform: translateY(-2px);
}

#boundaries.form-input,
textarea#boundaries {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  resize: vertical;
  max-height: 240px;
  overflow: auto;
  line-height: 1.45;
}

.section-heading {
  text-align: center;
  margin: 0 0 1.25rem 0;
}
.form-section-title {
  font-size: 1.1rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin: 0;
}
.section-divider {
  width: 120px;
  height: 2px;
  margin: .75rem auto 0;
  background: linear-gradient(90deg, #fdccd7, #f77393);
  border-radius: 999px;
}

.contact-option input[type="checkbox"],
.contact-option input[type="radio"] { position:absolute; opacity:0; pointer-events:none; }
.contact-option .option-card { transition: transform .15s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease; border:1px solid rgba(255,255,255,0.12); }
.contact-option.is-selected .option-card {
  background: linear-gradient(135deg, #fdccd7, #f77393);
  color: #0b0b0b;
  border-color: transparent;
  box-shadow: 0 6px 24px rgba(247,115,147,0.35);
  transform: translateY(-2px);
}

#boundaries.form-input, textarea#boundaries {
  width:100%; max-width:100%; box-sizing:border-box; resize:vertical; max-height:240px; overflow:auto; line-height:1.45;
}

.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0;
  display: none; z-index: 9999;
  backdrop-filter: blur(6px);
  background: linear-gradient(90deg, rgba(25,25,25,.92), rgba(30,30,30,.92));
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: .75rem 1rem;
}
.sticky-cta .bar {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: .75rem;
}
.sticky-cta .label { font-size: .9rem; opacity: .9; }
.sticky-cta .btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .7rem 1rem; border-radius: 999px; cursor: pointer;
  background: linear-gradient(135deg,#fdccd7,#f77393);
  color: #111; font-weight: 700; border: none;
}
@media (max-width: 768px) { .sticky-cta { display: block; } }

.modal-exit {
  position: fixed; inset: 0; z-index: 9998;
  display: none; align-items: center; justify-content: center;
  background: rgba(0,0,0,.55);
}
.modal-exit.active { display: flex; }
.modal-exit .dialog {
  width: min(92vw, 520px); background: #121212; color: #fff;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px; padding: 1.25rem 1.25rem 1rem;
  box-shadow: 0 10px 40px rgba(0,0,0,.6);
}
.modal-exit .dialog h4 { margin: 0 0 .5rem; font-size: 1.25rem; }
.modal-exit .dialog p { margin: 0 0 1rem; opacity: .9; }
.modal-exit .actions { display:flex; gap:.5rem; }
.modal-exit .btn {
  padding: .7rem 1rem; border-radius: 10px; cursor: pointer; border: none;
}
.modal-exit .btn-primary { background: linear-gradient(135deg,#fdccd7,#f77393); color:#111; font-weight:700; }
.modal-exit .btn-ghost { background: transparent; color:#fff; border: 1px solid rgba(255,255,255,.2); }

.progress-hint {
  margin-top: .35rem; font-size: .85rem; opacity: .8; text-align: right;
}

@keyframes formShake {
  0%,100% { transform: translateX(0); }
  20% { transform: translateX(-8px); }
  40% { transform: translateX(8px); }
  60% { transform: translateX(-5px); }
  80% { transform: translateX(5px); }
}
.form-step.shake { animation: formShake .35s ease; }

.alert-wrap {
  position: fixed; left: 16px; bottom: 16px; z-index: 9999;
  display: flex; flex-direction: column; gap: 8px;
}
.alert-toast {
  background: rgba(20,20,20,.98);
  border: 1px solid rgba(255,255,255,.08);
  color: #fff; padding: .65rem .8rem; border-radius: 12px;
  display: flex; align-items: center; gap: .6rem;
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
  transform: translateY(20px); opacity: 0; transition: .25s ease;
}
.alert-toast.show { transform: translateY(0); opacity: 1; }
.alert-dot { width: 8px; height: 8px; border-radius: 50%; background: #7CFC00; box-shadow: 0 0 8px #7CFC00; }
.alert-name { font-weight: 700; }
.alert-country { opacity: .85; }
.alert-time { margin-left: auto; font-size: .8rem; opacity: .65; }

@media (max-width:768px){
  .lang-toggle {
    z-index: 9999;
    position: relative;
    margin-top: -10px;
    transform: translateY(-2px);
  }

  .alert-wrap {
    bottom: 70px !important;
  }
}

input, select, textarea { font-size: 16px; }

.sticky-cta { padding-bottom: calc(.75rem + env(safe-area-inset-bottom)); }

.contact-option .option-card { min-height: 44px; }

@supports(height: 100dvh) {
  .application-form-section { min-height: 100dvh; }
}

input[type=tel], input[type=text], input[type=number] {
  -webkit-appearance: none; border-radius: 12px;
}

.application-form-section.is-success {
  padding: 2rem 1rem;
  min-height: auto !important;
}

.application-form-section.is-success .form-header,
.application-form-section.is-success .creator-form {
  display: none;
}
.application-form-section.is-success #successMessage {
  display: block;
}

.lang-toggle{
  display:flex;
  align-items:center;
  gap:.5rem;
  margin-left:1rem;
  padding:.25rem .6rem;
  border-radius:999px;
  background: rgba(255,255,255,.06);
  border:1px solid var(--border-color);
  backdrop-filter:saturate(140%) blur(6px);
  position:relative;
  top:-2px;
}

.lang-sep{
  color:rgba(255,255,255,.55);
  font-weight:800;
  line-height:1;
}

.lang-btn{
  appearance:none;
  border:0;
  background:transparent;
  color:var(--text-primary);
  font-weight:800;
  letter-spacing:.02em;
  cursor:pointer;
  padding:.38rem .5rem;
  border-radius:12px;
  opacity:.9;
  transition:transform .15s ease, opacity .15s ease, box-shadow .2s ease, background .2s ease;
  line-height:1;
}

.lang-btn:hover{ opacity:1; transform:translateY(-1px); }

.lang-btn[aria-pressed="true"]{
  opacity:1;
  background: var(--accent-gradient);
  box-shadow:
    0 0 0 1px rgba(247,115,147,.55) inset,
    0 6px 18px rgba(247,115,147,.22);
}

.nav.scrolled .lang-toggle{
  background: rgba(30,30,34,.7);
  border-color: rgba(255,255,255,.14);
}

@media (max-width:768px){
  .nav-container{ gap:.75rem; align-items:center; }
  .lang-toggle{
    order:5;
    margin-left:0;
    margin-top:5px;
    transform:translateY(-2px);
  }
}

.floating-apply-btn {
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  background: var(--accent-gradient);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: 999px;
  padding: 0.9rem 1.6rem;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(247, 115, 147, 0.25);
  transition: all 0.3s ease;
  z-index: 2500;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}

.floating-apply-btn.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.floating-apply-btn:hover {
  box-shadow: 0 8px 32px rgba(247, 115, 147, 0.35);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .floating-apply-btn {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .contact-options[style*="grid-template-columns: repeat(5"],
  .contact-options[style*="grid-template-columns: repeat(3"] {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 480px) {
  .contact-options[style*="grid-template-columns: repeat(5"],
  .contact-options[style*="grid-template-columns: repeat(3"] {
    grid-template-columns: 1fr !important;
  }
}

.form-group {
  margin-bottom: 1.4rem;
}

.helper-text {
  font-size: 0.8rem;
  line-height: 1.3;
  margin-top: 0.3rem;
  color: rgba(255, 255, 255, 0.55);
  transition: opacity 0.2s ease;
}

.error-message {
  font-size: 0.8rem;
  line-height: 1.3;
  margin-top: 0.3rem;
  color: #ff4d6a;
  font-weight: 500;
  display: none;
  transition: opacity 0.2s ease;
}

.error-message:not(:empty) {
  display: block;
  opacity: 1;
}

.error-message:not(:empty) + .helper-text {
  display: none;
}

button:disabled,
button[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
  filter: grayscale(0.6);
}