@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;600;800&display=swap');
:root {
    --primary: #309fce;
    --bg: #f8fafc;
    --text-dark: #0f172a;
    --text-muted: #475569;
    --white: #ffffff;
    --primary: #309fce;
    --white: #ffffff;
    --text-muted: #666;
      --primary: #309fce;
        --primary-light: rgba(48, 159, 206, 0.12);
        --text-dark: #0f172a;
        --text-gray: hsl(215, 16%, 47%);
        --white: #ffffff;

        -brand-color: #309fce;
    --brand-light: rgba(48, 159, 206, 0.15);
    --text-main: #2d3436;
    --text-sub: #636e72;

     --primary-color: #309fce;
    --light-bg: #f4faff;
    --text-dark: #232f3e;
    --text-muted: #666;
    --glow-color: rgba(48, 159, 206, 0.3);

    --primary: #309fce;
    --primary-light: rgba(48, 159, 206, 0.06); 
    --primary-tint: rgba(48, 159, 206, 0.12);
    --text-dark: #1e293b;
    --text-muted: #64748b;
}

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

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text-dark);

      margin: 0;
    font-family: 'Segoe UI', Roboto, sans-serif;
    background-color: #ffffff; 

     font-family: 'Poppins', sans-serif;
    margin: 0;
    background-color: #ffffff;
    overflow-x: hidden;

}

/* header */
.header {
    position: sticky;
    top: 0;
    background: var(--white);
    border-bottom: 1px solid #eee;
    z-index: 100;
}

.nav-container {
    max-width: 1300px;
    margin: auto;
    padding: 14px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
}

.logo img {
    width: 44px;
    height: 44px;
    border-radius: 10px;
}

.play-btn img {
    height: 42px;
}
/* hero */
:root {
  /* --primary: #309fce;
  --white: #ffffff;
  --text-muted: #666; */
}

.hero {
  position: relative;
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-x: clip;
  overflow-y: visible;
}
.bg-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  filter: blur(130px);
  opacity: 0.25;
  pointer-events: none;
}

.bg-glow.blue {
  background: #309fce;
  top: -140px;
  right: -200px;
}

.bg-glow.light {
  background: #9bdcff;
  bottom: -200px;
  left: -160px;
}
.hero-container {
  max-width: 1300px;
  width: 100%;
  margin: auto;
  padding: 60px 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
  align-items: center;
  position: relative;
  z-index: 2;
  min-width: 0; 
}
.hero-text {
  max-width: 560px;
}

.badge {
  display: inline-block;
  padding: 8px 18px;
  background: var(--white);
  color: var(--primary);
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 6px 20px rgba(48,159,206,0.15);
  margin-bottom: 22px;
}

.hero-text h1 {
  font-size: clamp(2.4rem, 4vw, 4.6rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 22px;
}

.hero-text h1 span {
    color: var(--primary);
    display: inline-block;
    vertical-align: bottom;
    overflow: hidden;    
    white-space: nowrap; 
    width: 0;            
    animation: typing 2s steps(10) forwards;
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

.hero-text p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 38px;
}

.cta-btn {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: 16px 40px;
  border-radius: 16px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 16px 35px rgba(48,159,206,0.45);
  transition: transform 0.3s ease;
}

.cta-btn:hover {
  transform: translateY(-5px);
}

.hero-image {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 550px; 
  width: 100%;
}

.hero-img {
  position: absolute;
  width: 100%;
  max-width: 500px;
  height: auto;
  object-fit: contain;  
  border-radius: 44px;
    opacity: 0;
  transform: scale(0.9) translateX(40px);
  filter: blur(10px);
  transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  z-index: 1;
}
.hero-img.active {
  opacity: 1;
  transform: scale(1) translateX(0);
  filter: blur(0px);
  pointer-events: auto;
  z-index: 2;
}
.hero-img.exit {
    opacity: 0;
    transform: scale(0.9) translateX(-40px);
    filter: blur(10px);
    z-index: 1;
}
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
    padding: 80px 20px;
  }
  .hero-text {
     margin: auto; 
    }
  .hero-image {
    justify-content: center;
    height: 450px;
  }
}

@media (max-width: 480px) {
  .hero-text h1 { 
    font-size: 2.2rem; 
}
  .hero-image { 
    height: 350px;
 }
  .hero-img {
     max-width: 300px; border-radius: 32px; }
  .cta-btn { width: 100%; max-width: 320px; display: block; margin: auto; }
}
.zippy-particle {
    position: absolute;
    bottom: -40px;
    font-weight: 700;
    pointer-events: none;
    color: rgba(2, 24, 74, 0.55);
    text-shadow: 0 0 8px rgba(1, 43, 141, 0.35), 0 0 18px rgba(11, 3, 159, 0.25);
    animation: zippyFloat linear forwards;
}

@keyframes zippyFloat {
    0% { transform: translate(0, 0) scale(0.7); opacity: 0; }
    20% { opacity: 0.6; }
    100% { transform: translate(-40px, -120vh) scale(1.2); opacity: 0; }
}
.hero-img {
    position: absolute;
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 44px;
    opacity: 0;
    pointer-events: none;
    transform: scale(1.15) translateY(40px) rotateX(-10deg);
    filter: blur(20px) brightness(0.5);
    transition: 
        opacity 1.2s ease, 
        transform 1.4s cubic-bezier(0.34, 1.56, 0.64, 1), 
        filter 1.2s ease;
}

.hero-img.active {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1) translateY(0) rotateX(0deg);
    filter: blur(0px) brightness(1);
    z-index: 2;
}

.hero-img.exit-fancy {
    opacity: 0;
    transform: scale(0.8) translateY(-40px) rotateX(10deg);
    filter: blur(15px) grayscale(1);
    z-index: 1;
}

/* animation */
.zippy-particle {
    position: absolute;
    bottom: -40px;
    font-weight: 700;
    pointer-events: none;
    color: rgba(2, 24, 74, 0.55);
    text-shadow: 0 0 8px rgba(1, 43, 141, 0.35), 0 0 18px rgba(11, 3, 159, 0.25);
    animation: zippyFloat linear forwards;
}

@keyframes zippyFloat {
    0% { transform: translate(0, 0) scale(0.7); opacity: 0; }
    20% { opacity: 0.6; }
    100% { transform: translate(-40px, -120vh) scale(1.2); opacity: 0; }
}

/* why coose us  */
    .why-choose-us {
        position: relative;
        padding: 100px 5%;
        background: #fdfeff;
        font-family: 'Plus Jakarta Sans', sans-serif;
        overflow: hidden;
    }

    .main-wrapper {
        max-width: 1300px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1.1fr;
        gap: 80px;
        align-items: center;
    }

    .image-area {
        position: relative;
        display: flex;
        justify-content: flex-start;
    }

    .image-box {
        position: relative;
        width: 100%;
        max-width: 500px;
    }

    .floating-img {
        width: 100%;
        height: auto;
        animation: floatImage 5s ease-in-out infinite;
        filter: drop-shadow(0 20px 40px rgba(48, 159, 206, 0.2));
    }

    .stats-floating-card {
        position: absolute;
        bottom: 20px;
        right: -20px;
        background: var(--white);
        padding: 20px 30px;
        border-radius: 24px;
        display: flex;
        gap: 20px;
        box-shadow: 0 20px 50px rgba(0,0,0,0.1);
        border: 1px solid rgba(48, 159, 206, 0.1);
        animation: floatBadge 4s ease-in-out infinite;
    }

    .stat-val {
        display: block;
        font-size: 1.5rem;
        font-weight: 800;
        color: var(--primary);
    }

    .stat-lab {
        font-size: 0.85rem;
        color: var(--text-gray);
        font-weight: 600;
    }

    .stat-divider {
        width: 1px;
        background: #e2e8f0;
    }

    .title {
        font-size: clamp(2rem, 4vw, 3.2rem);
        font-weight: 800;
        line-height: 1.2;
        color: var(--text-dark);
        margin-bottom: 20px;
        text-align: left;
    }

    .title span {
        color: var(--primary);
    }

    .description {
        font-size: 1.1rem;
        color: var(--text-gray);
        line-height: 1.7;
        margin-bottom: 40px;
        max-width: 600px;
        text-align: left;
    }
    .features-list {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .feature-node {
        display: flex;
        align-items: flex-start;
        gap: 20px;
        transition: 0.3s ease;
        padding: 10px 0;
    }

    .feature-node:hover {
        transform: translateX(10px);
    }

    .icon-circle {
        flex-shrink: 0;
        width: 60px;
        height: 60px;
        background: var(--primary-light);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--primary);
        transition: 0.3s;
    }

    .feature-node:hover .icon-circle {
        background: var(--primary);
        color: var(--white);
        box-shadow: 0 10px 20px rgba(48, 159, 206, 0.3);
    }

    .icon-circle svg {
        width: 28px;
        height: 28px;
    }

    .feature-info h3 {
        font-size: 1.3rem;
        font-weight: 700;
        margin: 0 0 5px 0;
        color: var(--text-dark);
    }

    .feature-info p {
        font-size: 0.95rem;
        color: var(--text-gray);
        margin: 0;
        max-width: 400px;
    }
    @keyframes floatImage {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-15px); }
    }

    @keyframes floatBadge {
        0%, 100% { transform: translateY(0) translateX(0); }
        50% { transform: translateY(-10px) translateX(-5px); }
    }
/* 
    .zippy-particle {
        position: absolute;
        bottom: -40px;
        font-weight: 700;
        pointer-events: none;
        color: rgba(48, 159, 206, 0.2);
        font-size: 24px;
        animation: zippyFloat 6s linear infinite;
    }

    @keyframes zippyFloat {
        0% { transform: translateY(0) rotate(0deg); opacity: 0; }
        20% { opacity: 0.5; }
        100% { transform: translateY(-100vh) rotate(360deg); opacity: 0; }
    } */
    @media (max-width: 1024px) {
        .main-wrapper {
            grid-template-columns: 1fr;
            gap: 60px;
            text-align: left;
        }
        .image-area {
            justify-content: center;
            order: 2;
        }
        .content-area {
            order: 1;
        }
        .stats-floating-card {
            right: 0;
        }
    }

    @media (max-width: 480px) {
        .why-choose-us {
            padding: 60px 20px;
        }
        .stats-floating-card {
            padding: 15px;
            gap: 10px;
            bottom: -10px;
        }
        .stat-val { font-size: 1.1rem; }
        .icon-circle { width: 50px; height: 50px; }
    }




/* footer */
.footer {
    position: relative;
    background: #0f172a; 
    color: #cbd5e1;
    padding-top: 100px;
    padding-bottom: 40px;
    margin-top: 100px;
}

.footer-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.footer-wave svg {
    position: relative;
    display: block;
    width: calc(150% + 1.3px);
    height: 70px;
}

.footer-wave .shape-fill {
    fill: var(--bg); 
}

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

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 60px;
    margin-bottom: 60px;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-logo img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

.footer-col.brand p {
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 0.95rem;
}
.footer-col h4 {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}
.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: 0.3s ease;
    font-size: 0.95rem;
}

.footer-col ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}
.social-links {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.8rem;
    transition: 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon:hover {
    background: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(48, 159, 206, 0.3);
}
.footer-apps img {
    height: 45px;
    margin-bottom: 15px;
    transition: 0.3s;
}

.footer-apps img:hover {
    transform: scale(1.05);
}

.app-stats {
    font-size: 0.85rem;
    color: #fbbf24; 
    display: flex;
    align-items: center;
    gap: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 500px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-logo, .footer-col h4::after {
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .social-links {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}
.footer-wave {
    top: -1px;
}


.stat-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
    font-family: 'Inter', sans-serif;
}

.stat-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.stat-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(48, 159, 206, 0.15);
}

.icon-box {
    width: 80px;
    height: 80px;
    background-color: var(--brand-light);
    color: var(--brand-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
}

.counter-content h2 {
    font-size: 40px;
    margin: 0;
    color: var(--text-main);
    font-weight: 800;
}

.counter-content p {
    font-size: 16px;
    color: var(--text-sub);
    margin-top: 8px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .stat-container {
        grid-template-columns: 1fr;
    }
}
.app-section {
    padding: 80px 20px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: #f9fbfd;
    overflow: hidden;
}
.section-heading {
    text-align: center;
    font-size: 2.8rem;
    color: #1a1a1a;
    margin-bottom: 60px;
    position: relative;
    font-weight: 800;
    opacity: 0;
    transform: translateY(-30px);
    animation: headingFadeIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.section-heading::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 4px;
    background: #309fce;
    border-radius: 2px;
    animation: lineExpand 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: 0.5s;
}

@keyframes headingFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes lineExpand {
    to { width: 80px; }
}

.benefits-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    position: relative;
    width: 350px;
    background: #ffffff;
    border-radius: 24px;
    padding: 50px 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #edf2f7;
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    cursor: pointer;
    overflow: hidden;
        opacity: 0;
    transform: translateY(50px);
    animation: cardEntrance 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: calc(var(--order) * 0.2s);
}

@keyframes cardEntrance {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: #309fce;
    transform: scaleY(0);
    transition: transform 0.4s ease;
    transform-origin: bottom;
}

.card:hover::before {
    transform: scaleY(1);
}

.card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(48, 159, 206, 0.15);
    border-color: rgba(48, 159, 206, 0.3);
}

.card-content {
    position: relative;
    z-index: 2;
}
.icon-shell {
    width: 70px;
    height: 70px;
    background: #f0f9ff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    color: #309fce;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.card:hover .icon-shell {
    background: #309fce;
    color: #ffffff;
    transform: rotate(10deg); 
    box-shadow: 0 10px 20px rgba(48, 159, 206, 0.3);
}

.icon-shell svg {
    width: 32px;
    height: 32px;
}

h3 {
    font-size: 1.6rem;
    margin: 0 0 15px 0;
    color: #1a1a1a;
    transition: color 0.3s ease;
}

p {
    color: #64748b;
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}

.bottom-glow {
    margin-top: 25px;
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #309fce;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.4s ease;
}

.card:hover .bottom-glow {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 768px) {
    .section-heading {
        font-size: 2rem;
    }
    .card {
        width: 100%;
        max-width: 450px;
        padding: 40px 25px;
    }
}

/* our process */

.process-section {
    max-width: 1100px;
    margin: 80px auto;
    text-align: center;
}

.header-small {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.header-main {
    font-size: 36px;
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 60px;
}

.process-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
}

.process-item {
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 10px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.process-item:nth-child(1) { animation-delay: 0.1s; }
.process-item:nth-child(2) { animation-delay: 0.3s; }
.process-item:nth-child(3) { animation-delay: 0.5s; }
.process-item:nth-child(4) { animation-delay: 0.7s; }
.process-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 95px; 
    right: -15%;
    width: 30%;
    height: 2px;
    background: linear-gradient(90deg, #e0e0e0 0%, var(--primary-color) 50%, #e0e0e0 100%);
    background-size: 200% 100%;
    animation: flowLine 3s linear infinite;
    z-index: 1;
}
.process-item:not(:last-child)::before {
    content: "";
    position: absolute;
    top: 92px;
    right: -16%;
    width: 8px;
    height: 8px;
    border-right: 2px solid #e0e0e0;
    border-top: 2px solid #e0e0e0;
    transform: rotate(45deg);
    z-index: 1;
}

.round-container {
    width: 110px;
    height: 110px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    background: white;
    position: relative;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.round-container::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    animation: radarPulse 2s infinite;
    opacity: 0;
}

.process-item:hover .round-container {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(48, 159, 206, 0.2);
    border-color: var(--text-dark);
}

.round-container svg {
    width: 50px;
    height: 50px;
    fill: none;
    stroke: var(--primary-color);
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    animation: drawSvg 2s ease forwards 0.8s;
}

.process-item:hover svg {
    stroke: var(--text-dark);
}

.process-item h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin: 10px 0;
    font-weight: 700;
}

.process-item p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 200px;
}

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

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

@keyframes radarPulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@keyframes flowLine {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}
@media (max-width: 900px) {
    .process-row {
        flex-direction: column;
        align-items: center;
    }
    .process-item {
        margin-bottom: 50px;
        width: 100%;
    }
    .process-item:not(:last-child)::after, 
    .process-item:not(:last-child)::before {
        display: none; 
    }
}

:root {
  --ease: cubic-bezier(.19,1,.22,1);
}

.reveal {
  opacity: 0;
  transform: translateY(80px) scale(0.95);
  transition: all 1s var(--ease);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.reveal-delay-1 {
     transition-delay: .15s;
     }
.reveal-delay-2 { 
    transition-delay: .3s;
 }
.reveal-delay-3 {
     transition-delay: .45s;
     }

.hero-text h1,
.hero-text p,
.hero-text .cta-btn {
  opacity: 0;
  transform: translateY(40px);
  animation: heroFade 1.2s var(--ease) forwards;
}

.hero-text p { animation-delay: .2s; }
.hero-text .cta-btn { animation-delay: .4s; }

@keyframes heroFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-image img {
  animation: floatPhone 4s ease-in-out infinite;
}

@keyframes floatPhone {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
}
.stat-card {
  transform-style: preserve-3d;
  transition: transform .6s var(--ease), box-shadow .6s;
}

.stat-card:hover {
  transform: translateY(-12px) rotateX(6deg);
  box-shadow: 0 30px 60px rgba(0,0,0,.25);
}
.reward-content,
.reward-image {
  opacity: 0;
  transition: all 1s var(--ease);
}

.reward-content {
  transform: translateX(-80px);
}

.reward-image {
  transform: translateX(80px) scale(.9);
}

.reward-section.active .reward-content,
.reward-section.active .reward-image {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.card {
  opacity: 0;
  transform: translateY(60px) scale(.96);
  transition: all .9s var(--ease);
}

.card.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 25px 60px rgba(0,0,0,.25);
}

.process-item {
  opacity: 0;
  transform: translateY(70px);
  transition: all .9s var(--ease);
}

.process-item.active {
  opacity: 1;
  transform: translateY(0);
}

.round-container {
  transition: transform .6s var(--ease), box-shadow .6s;
}

.process-item:hover .round-container {
  transform: scale(1.15) rotate(6deg);
  box-shadow: 0 0 30px rgba(0,180,255,.6);
}

.footer {
  opacity: 0;
  transform: translateY(80px);
  transition: all 1s var(--ease);
}

.footer.active {
  opacity: 1;
  transform: translateY(0);
}

.app-experience {
    padding: 100px 20px;
    display: flex;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-light) 0%, rgba(255,255,255,0) 100%);
}

.main-container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}
.col {
    flex: 1;
}

.center-col {
    display: flex;
    justify-content: center;
    flex: 0 0 300px; 
}

.phone-display {
    max-height: 520px; 
    width: auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.1));
}
.title {
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 40px;
    line-height: 1.2;
}

.accent { 
    color: var(--primary); 
}

.feature-box {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 16px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(48, 159, 206, 0.1);
}

.feature-box:hover {
    background: #ffffff;
    transform: translateX(10px);
    box-shadow: 0 10px 20px rgba(48, 159, 206, 0.05);
}

.icon-sq {
    min-width: 48px;
    height: 48px;
    background: var(--primary-tint);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.feature-text h3 { 
    margin: 0;
     font-size: 1.1rem; 
     color: var(--text-dark);
     }
.feature-text p { 
    margin: 5px 0 0; 
    font-size: 0.85rem; color: var(--text-muted); 
    line-height: 1.5;
 }

.section-title {
     font-size: 1.8rem; color: var(--text-dark); 
     margin-bottom: 15px;
     }
.description {
     color: var(--text-muted); 
     line-height: 1.6; 
     margin-bottom: 25px;
      font-size: 0.95rem; 
    }

.checklist { 
    list-style: none; 
    padding: 0; margin-bottom: 30px;
 }
.checklist li { 
    display: flex;
     gap: 10px;
      margin-bottom: 12px; 
      color: var(--text-muted);
       font-size: 0.95rem;
     }
.checklist i { 
    color: var(--primary);
     margin-top: 3px;
     }

.main-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(48, 159, 206, 0.3);
    transition: 0.3s;
}

.main-btn:hover {
    transform: translateY(-2px);
    background: #2689b5;
    box-shadow: 0 12px 30px rgba(48, 159, 206, 0.4);
}

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

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

.animate-slide-in { 
    animation: slideIn 0.8s ease-out forwards; 
}
.animate-pop {
     animation: popIn 1s cubic-bezier(0.17, 0.67, 0.83, 0.67) forwards; 
    }

@media (max-width: 1024px) {
    .main-container {
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }
    
    .center-col {
         order: -1; flex: 0 0 auto; 
        }
    .feature-box {
         flex-direction: column;
          align-items: center; 
          text-align: center; 
        }
    .feature-box:hover { 
        transform: translateY(-5px); 
    }
    .checklist li { 
        justify-content: center; 
    }
    .phone-display {
         max-height: 450px; 
        }
}
.animate-slide-in, .animate-pop {
    animation: none !important; 
    opacity: 0;
    filter: blur(8px);
    transition: all 1.2s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform, opacity;
}

.left-col.animate-slide-in {
    transform: translateX(-120px);
}


.right-col.animate-slide-in {
    transform: translateX(120px);
}

.animate-pop {
    transform: scale(1); 
    transition: opacity 1.5s ease;
}

.reveal {
    opacity: 1 !important;
    transform: translateX(0) !important;
    filter: blur(0px) !important;
}

.feature-box {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.reveal .feature-box {
    opacity: 1;
    transform: translateY(0);
}

.reveal .feature-box:nth-of-type(1) { transition-delay: 0.3s; }
.reveal .feature-box:nth-of-type(2) { transition-delay: 0.5s; }
.reveal .feature-box:nth-of-type(3) { transition-delay: 0.7s; }

.right-col.reveal .section-title,
.right-col.reveal .description,
.right-col.reveal .checklist li,
.right-col.reveal .main-btn {
    opacity: 0;
    animation: fancyFadeUp 0.8s ease forwards;
}

.right-col.reveal .description {
    
    animation-delay: 0.2s; 
}
.right-col.reveal .checklist li:nth-child(1) {
     animation-delay: 0.4s; 
    }
.right-col.reveal .checklist li:nth-child(2) { 
    animation-delay: 0.5s; 
}
.right-col.reveal .checklist li:nth-child(3) {
     animation-delay: 0.6s; 
    }
.right-col.reveal .main-btn {
     animation-delay: 0.8s; 
    }

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