/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #ffffff;
    color: #1a1a1a;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.icon {
    color: #ec4899;
}

.hidden-mobile {
    display: inline;
}

@media (max-width: 768px) {
    .hidden-mobile {
        display: none;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 3rem 1rem 5rem;
}

.hero-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #fce7f3 0%, #dbeafe 50%, #ffffff 100%);
}

.blob {
    position: absolute;
    border-radius: 50%;
    mix-blend-mode: multiply;
    filter: blur(60px);
    opacity: 0.3;
    animation: blob 7s infinite;
}

.blob-1 {
    top: 5rem;
    left: 2.5rem;
    width: 18rem;
    height: 18rem;
    background: #fbbf24;
}

.blob-2 {
    top: 10rem;
    right: 2.5rem;
    width: 18rem;
    height: 18rem;
    background: #3b82f6;
    animation-delay: 2s;
}

.blob-3 {
    bottom: -2rem;
    left: 50%;
    width: 18rem;
    height: 18rem;
    background: #fbcfe8;
    animation-delay: 4s;
}

@keyframes blob {
    0%, 100% {
        transform: translate(0px, 0px) scale(1);
    }

    33% {
        transform: translate(30px, -50px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    margin-bottom: 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
    font-size: 0.875rem;
    font-weight: 500;
    color: #4b5563;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 800;
}

.hero-title-line {
    display: block;
    color: #1a1a1a;
}

.hero-title-gradient {
    display: block;
    background: linear-gradient(90deg, #3b82f6, #ec4899, #3b82f6);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient 3s linear infinite;
}

@keyframes gradient {
    0%, 100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.hero-description {
    font-size: clamp(1.125rem, 3vw, 1.5rem);
    color: #6b7280;
    font-weight: 300;
    max-width: 48rem;
    margin: 0 auto;
}

.hero-image-container {
    position: relative;
    max-width: 64rem;
    margin: 0 auto;
}

.hero-image-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #60a5fa, #f472b6);
    border-radius: 1.5rem;
    filter: blur(40px);
    opacity: 0.3;
    transition: opacity 0.5s;
}

.hero-image-container:hover .hero-image-glow {
    opacity: 0.4;
}

.hero-image-wrapper {
    position: relative;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(24px);
    border-radius: 1.5rem;
    padding: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 60px -15px rgba(0, 0, 0, 0.3);
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    display: block;
}

/* Timeline Section */
.timeline-section {
    padding: 3rem 1rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
}

.timeline-wrapper {
    position: relative;
    max-width: 80rem;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 2rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #dbeafe, #fce7f3, #dbeafe);
    display: none;
}

@media (min-width: 640px) {
    .timeline-line {
        display: block;
        left: 50%;
        transform: translateX(-50%);
    }
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

    .timeline-item[data-step="1"] {
        animation-delay: 0.1s;
    }

    .timeline-item[data-step="2"] {
        animation-delay: 0.2s;
    }

    .timeline-item[data-step="3"] {
        animation-delay: 0.3s;
    }

    .timeline-item[data-step="4"] {
        animation-delay: 0.4s;
    }

    .timeline-item[data-step="5"] {
        animation-delay: 0.5s;
    }

    .timeline-item[data-step="6"] {
        animation-delay: 0.6s;
    }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.timeline-node {
    position: absolute;
    left: 2rem;
    transform: translateX(-50%);
    z-index: 10;
    display: none;
}

@media (min-width: 640px) {
    .timeline-node {
        display: flex;
        left: 50%;
    }
}

.timeline-node {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-item-right .timeline-node {
    background: linear-gradient(135deg, #ec4899, #db2777);
    box-shadow: 0 8px 24px rgba(236, 72, 153, 0.4);
}

.timeline-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
}

.timeline-content {
    width: 100%;
}

@media (min-width: 768px) {
    .timeline-item-left .timeline-content {
        width: 41.666667%;
        margin-right: auto;
    }

    .timeline-item-right .timeline-content {
        width: 41.666667%;
        margin-left: auto;
    }
}

.timeline-card {
    position: relative;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(24px);
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
    transition: all 0.3s;
}

    .timeline-card:hover {
        transform: scale(1.05);
        box-shadow: 0 20px 60px -15px rgba(0, 0, 0, 0.3);
    }

.timeline-icon {
    display: inline-flex;
    padding: 1rem;
    border-radius: 1rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.icon-blue {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
}

.icon-pink {
    background: linear-gradient(135deg, #ec4899, #db2777);
    color: white;
}

.timeline-number-mobile {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #ec4899);
    color: white;
    font-weight: 800;
}

@media (min-width: 640px) {
    .timeline-number-mobile {
        display: none;
    }
}

.timeline-card-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1a1a1a;
    width:85%;
}

.timeline-card-description {
    color: #374151;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.timeline-card-details {
    list-style: none;
}

    .timeline-card-details li {
        display: flex;
        align-items: flex-start;
        gap: 0.75rem;
        margin-bottom: 0.5rem;
        font-size: 0.875rem;
        color: #6b7280;
    }

.bullet {
    display: block;
    margin-top: 0.25rem;
    width: 0.375rem;
    height: 0.375rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #ec4899);
}

.timeline-item-right .bullet {
    background: linear-gradient(135deg, #ec4899, #db2777);
}

/* Demo Section */
.demo-section {
    padding: 4rem 1rem;
    position: relative;
    overflow: hidden;
}

.demo-video-wrapper {
    position: relative;
    margin-bottom: 4rem;
}

.demo-video-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #60a5fa, #f472b6, #60a5fa);
    border-radius: 1.5rem;
    filter: blur(40px);
    opacity: 0.2;
    transition: opacity 0.5s;
}

.demo-video-wrapper:hover .demo-video-glow {
    opacity: 0.3;
}

.demo-video-container {
    position: relative;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(24px);
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 60px -15px rgba(0, 0, 0, 0.3);
}

.demo-video-content {
    position: relative;
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, #dbeafe, #fce7f3, #dbeafe);
    border-radius: 1rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

    .demo-video-content::before {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.1);
        transition: background 0.3s;
    }

.demo-video-wrapper:hover .demo-video-content::before {
    background: rgba(0, 0, 0, 0.05);
}

.demo-play-button {
    position: relative;
    z-index: 10;
}

.play-button-glow {
    position: absolute;
    inset: 0;
    background: white;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.5;
}

.play-button {
    position: relative;
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    background: white;
    box-shadow: 0 20px 60px -15px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b82f6;
    transition: transform 0.3s;
}

.demo-video-wrapper:hover .play-button {
    transform: scale(1.1);
}

.demo-rings {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.ring {
    position: absolute;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.ring-1 {
    width: 8rem;
    height: 8rem;
}

.ring-2 {
    width: 10rem;
    height: 10rem;
    animation-delay: 0.5s;
}

@keyframes ping {
    75%, 100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.demo-duration {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    font-size: 0.875rem;
    font-weight: 600;
    color: #1f2937;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 56rem;
    margin: 0 auto;
}

.stat-card {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(24px);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.stat-value {
    font-size: 1.875rem;
    font-weight: 800;
    background: linear-gradient(90deg, #3b82f6, #ec4899);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #6b7280;
    font-weight: 500;
}

/* CTA Section */
.cta-section {
    padding: 5rem 1rem;
    position: relative;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #2563eb, #ec4899, #1e40af);
}

    .cta-background::after {
        content: '';
        position: absolute;
        inset: 0;
        opacity: 0.3;
    }

.cta-blob {
    position: absolute;
    border-radius: 50%;
    mix-blend-mode: multiply;
    filter: blur(60px);
}

.cta-blob-1 {
    top: 5rem;
    left: 5rem;
    width: 16rem;
    height: 16rem;
    background: #f472b6;
    animation: blob 7s infinite;
}

.cta-blob-2 {
    top: 10rem;
    right: 5rem;
    width: 16rem;
    height: 16rem;
    background: #60a5fa;
    animation: blob 7s infinite;
    animation-delay: 2s;
}

.cta-blob-3 {
    bottom: -2rem;
    left: 50%;
    width: 16rem;
    height: 16rem;
    background: white;
    animation: blob 7s infinite;
    animation-delay: 4s;
}

.cta-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 0.875rem;
    font-weight: 500;
    color: white;
    margin-bottom: 2rem;
}

.cta-title {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.cta-description {
    font-size: clamp(1.125rem, 3vw, 1.5rem);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    margin: 0 auto 3rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    border-radius: 9999px;
    background: white;
    color: #2563eb;
    font-size: 1.125rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    box-shadow: 0 20px 60px -15px rgba(255, 255, 255, 0.5);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

    .cta-button::before {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: 9999px;
        background: linear-gradient(90deg, white, #fce7f3);
        opacity: 0;
        transition: opacity 0.3s;
    }

    .cta-button:hover {
        transform: scale(1.05);
        box-shadow: 0 25px 80px -15px rgba(255, 255, 255, 0.8);
    }

        .cta-button:hover::before {
            opacity: 1;
        }

    .cta-button span {
        position: relative;
        z-index: 10;
    }

    .cta-button svg {
        position: relative;
        z-index: 10;
        transition: transform 0.3s;
    }

    .cta-button:hover svg {
        transform: translateX(4px);
    }

.trust-indicators {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pulse-dot {
    width: 0.5rem;
    height: 0.5rem;
    background: #4ade80;
    border-radius: 50%;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

/* Responsive Adjustments */
@media (max-width: 1400px) {
    .hero-section {
        padding: 1rem 1rem 4rem;
    }
    .hero-title span {
        font-size: clamp(2.5rem, 8vw, 3rem) !important;
    }
    .hero-image-container {
        max-width: 50rem;
    }
}
@media (max-width: 991px) {
    .hero-section {
        min-height: auto;
    }
}
@media (max-width: 768px) {
    .hero-section {
        padding: 3rem 0 4rem;
    }

    .timeline-section, .cta-section {
        padding: 2rem 0;
    }
    .demo-section {
        padding: 0 0 2rem;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .timeline-item {
        margin-bottom: 2rem;
    }
}
