/* ===========================
   RESET & BASE
   =========================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    color: #0F172A;
    background: #fff;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; }
ul { list-style: none; padding: 0; margin: 0; }
button { cursor: pointer; font-family: inherit; }

/* ===========================
   UTILITIES
   =========================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.section { padding: 90px 0; }

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #EFF6FF;
    color: #2563EB;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 20px;
    letter-spacing: .3px;
}

.badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #2563EB;
    border-radius: 50%;
    flex-shrink: 0;
}

.badge-white {
    background: rgba(255,255,255,.18);
    color: #fff;
    border: 1px solid rgba(255,255,255,.25);
}

.badge-white::before { background: #fff; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all .2s;
    text-decoration: none;
    font-family: inherit;
}

.btn-blue   { background: #2563EB; color: #fff; }
.btn-blue:hover { background: #1D4FD8; transform: translateY(-1px); color: #fff; }

.btn-orange { background: #F97316; color: #fff; }
.btn-orange:hover { background: #EA6508; color: #fff; }

.btn-outline-blue {
    background: transparent;
    color: #2563EB;
    border: 1.5px solid #2563EB;
}
.btn-outline-blue:hover { background: #2563EB; color: #fff; }

.btn-outline-white {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255,255,255,.6);
}
.btn-outline-white:hover {
    background: rgba(255,255,255,.12);
    border-color: #fff;
    color: #fff;
}

/* ===========================
   HERO SECTION
   =========================== */
.hero {
    background: #fff;
    padding: 68px 0 0;
}

.hero-text {
    text-align: center;
    max-width: 660px;
    margin: 0 auto 52px;
}

.hero-text h1 {
    font-size: 52px;
    font-weight: 800;
    color: #0F172A;
    line-height: 1.13;
    letter-spacing: -1px;
    margin-bottom: 4px;
}

.hero-text .hero-sub {
    font-size: 48px;
    font-weight: 800;
    color: #2563EB;
    line-height: 1.13;
    letter-spacing: -1px;
    font-style: italic;
    margin-bottom: 28px;
}

/* Search bar */
.search-bar {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1.5px solid #E2E8F0;
    border-radius: 50px;
    padding: 5px 5px 5px 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,.08);
    max-width: 520px;
    margin: 0 auto;
    gap: 10px;
}

.search-bar svg { flex-shrink: 0; color: #94A3B8; }

.search-bar input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 14px;
    color: #374151;
    font-family: inherit;
    background: transparent;
}

.search-bar input::placeholder { color: #9CA3AF; }

.search-bar .btn-orange {
    padding: 10px 26px;
    border-radius: 50px;
    flex-shrink: 0;
    font-size: 14px;
}

/* ===========================
   SERVICE CARDS ROW
   =========================== */
.services-row-wrap {
    position: relative;
    overflow: hidden;
}

.services-row {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 4px 40px 28px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: x mandatory;
}

.services-row::-webkit-scrollbar { display: none; }

.service-card {
    min-width: 220px;
    max-width: 220px;
    background: #fff;
    border: 1.5px solid #E2E8F0;
    border-radius: 18px;
    overflow: hidden;
    flex-shrink: 0;
    scroll-snap-align: start;
    cursor: pointer;
    transition: box-shadow .25s, transform .25s, border-color .25s;
}

.service-card:hover {
    box-shadow: 0 10px 32px rgba(37,99,235,.13);
    transform: translateY(-4px);
    border-color: #2563EB;
}

.service-card-img {
    height: 145px;
    overflow: hidden;
    position: relative;
    background: #F1F5F9;
}

.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s;
}

.service-card:hover .service-card-img img { transform: scale(1.05); }

.service-card-body {
    padding: 16px 16px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.service-card-body h3 {
    font-size: 14px;
    font-weight: 600;
    color: #0F172A;
    line-height: 1.3;
}

.explore-link {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: 12px;
    font-weight: 600;
    color: #2563EB;
    background: #EFF6FF;
    padding: 5px 12px;
    border-radius: 20px;
    white-space: nowrap;
    transition: background .2s, color .2s;
    flex-shrink: 0;
}

.explore-link:hover { background: #2563EB; color: #fff; }

/* Scroll fade edge */
.services-row-wrap::after {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 28px;
    width: 60px;
    background: linear-gradient(to left, #fff, transparent);
    pointer-events: none;
}

/* ===========================
   SMARTER WAY SECTION
   =========================== */
.smarter-way {
    background: #F8FAFF;
    padding: 90px 0;
}

.smarter-way-head {
    text-align: center;
    margin-bottom: 64px;
}

.smarter-way-head .badge { margin-bottom: 14px; }

.smarter-way-head h2 {
    font-size: 38px;
    font-weight: 800;
    color: #0F172A;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.smarter-way-head h2 span { color: #2563EB; }

.smarter-way-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

/* Media cluster */
.media-cluster {
    display: flex;
    align-items: flex-end;
    gap: 20px;
    position: relative;
    padding-bottom: 56px;
}

.video-thumb {
    width: 220px;
    height: 300px;
    background: #0F172A;
    border-radius: 20px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 16px 40px rgba(0,0,0,.2);
    position: relative;
    overflow: hidden;
}

.video-thumb img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .5;
}

.play-circle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255,255,255,.2);
    border: 2px solid rgba(255,255,255,.5);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    transition: background .2s;
}

.play-circle:hover { background: rgba(255,255,255,.35); }

.play-circle svg {
    width: 22px;
    height: 22px;
    color: #fff;
    margin-left: 3px;
}

/* Phone mockup */
.phone-wrap {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.phone-mockup {
    width: 160px;
    height: 310px;
    background: #0F172A;
    border-radius: 30px;
    border: 5px solid #1E293B;
    overflow: hidden;
    box-shadow: 0 20px 48px rgba(0,0,0,.25);
    position: relative;
}

.phone-notch {
    width: 60px;
    height: 12px;
    background: #1E293B;
    border-radius: 0 0 10px 10px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.phone-screen {
    background: linear-gradient(160deg, #1E40AF 0%, #2563EB 50%, #3B82F6 100%);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 14px;
    gap: 10px;
    margin-top: -12px;
}

.phone-screen-logo {
    font-size: 14px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.3px;
    margin-top: 8px;
}

.phone-screen-card {
    background: rgba(255,255,255,.12);
    border-radius: 10px;
    padding: 10px;
    width: 100%;
}

.phone-screen-card-line {
    height: 6px;
    background: rgba(255,255,255,.25);
    border-radius: 3px;
    margin-bottom: 6px;
}

.phone-screen-card-line:last-child {
    width: 60%;
    margin-bottom: 0;
}

.phone-screen-btn {
    background: #F97316;
    border-radius: 8px;
    padding: 8px;
    width: 100%;
    text-align: center;
    font-size: 10px;
    font-weight: 700;
    color: #fff;
}

/* Google Play badge */
.gplay-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #0F172A;
    color: #fff;
    border-radius: 10px;
    padding: 10px 16px;
    margin-top: 16px;
    text-decoration: none;
    transition: background .2s;
    width: 160px;
}

.gplay-badge:hover { background: #1E293B; color: #fff; }

.gplay-badge svg { width: 22px; height: 22px; flex-shrink: 0; color: #fff; }

.gplay-text small {
    display: block;
    font-size: 9px;
    color: #94A3B8;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.gplay-text strong { font-size: 13px; font-weight: 700; }

/* Features list */
.features-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.feature-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #EFF6FF;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon-box svg {
    width: 24px;
    height: 24px;
    color: #2563EB;
}

.feature-item h4 {
    font-size: 15px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 5px;
}

.feature-item p {
    font-size: 13.5px;
    color: #6B7280;
    line-height: 1.65;
}

/* ===========================
   PLATFORM BENEFITS
   =========================== */
.platform-benefits { background: #fff; padding: 90px 0; }

.benefits-head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: flex-end;
    margin-bottom: 60px;
    padding-bottom: 48px;
    border-bottom: 1px solid #F1F5F9;
}

.benefits-head-left .badge { margin-bottom: 14px; }

.benefits-head-left h2 {
    font-size: 38px;
    font-weight: 800;
    color: #0F172A;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.benefits-head-right p {
    font-size: 15px;
    color: #6B7280;
    line-height: 1.75;
}

/* Benefit rows */
.benefit-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
    padding: 48px 0;
    border-bottom: 1px solid #F1F5F9;
}

.benefit-row:last-child { border-bottom: none; padding-bottom: 0; }

.feature-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    color: #2563EB;
    background: #EFF6FF;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 14px;
    letter-spacing: .3px;
}

.feature-label::before {
    content: '';
    width: 5px;
    height: 5px;
    background: #2563EB;
    border-radius: 50%;
}

.benefit-text h3 {
    font-size: 26px;
    font-weight: 800;
    color: #0F172A;
    line-height: 1.25;
    margin-bottom: 14px;
    letter-spacing: -0.3px;
}

.benefit-text p {
    font-size: 14.5px;
    color: #6B7280;
    line-height: 1.75;
    margin-bottom: 24px;
    max-width: 400px;
}

.benefit-img {
    border-radius: 18px;
    overflow: hidden;
    height: 300px;
    background: #F1F5F9;
}

.benefit-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s;
}

.benefit-row:hover .benefit-img img { transform: scale(1.03); }

/* ===========================
   HOW IT WORKS
   =========================== */
.how-it-works {
    background: #2563EB;
    padding: 90px 0;
}

.hiw-head {
    text-align: center;
    margin-bottom: 64px;
}

.hiw-head .badge { margin-bottom: 14px; }

.hiw-head h2 {
    font-size: 38px;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.hiw-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

/* Steps */
.steps-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.step-item {
    display: flex;
    gap: 20px;
    position: relative;
}

/* vertical connecting line between steps */
.step-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 27px;
    top: 58px;
    bottom: -12px;
    width: 2px;
    background: repeating-linear-gradient(
        to bottom,
        rgba(255,255,255,.35) 0,
        rgba(255,255,255,.35) 5px,
        transparent 5px,
        transparent 10px
    );
}

.step-item { padding-bottom: 40px; }
.step-item:last-child { padding-bottom: 0; }

.step-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,.25);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.step-icon svg {
    width: 26px;
    height: 26px;
    color: #fff;
}

.step-body h4 {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 7px;
    padding-top: 14px;
}

.step-body p {
    font-size: 14px;
    color: rgba(255,255,255,.72);
    line-height: 1.7;
}

/* Right image */
.hiw-image {
    border-radius: 24px;
    overflow: hidden;
    height: 460px;
    background: rgba(255,255,255,.08);
}

.hiw-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===========================
   TESTIMONIALS
   =========================== */
.testimonials {
    background: #F8FAFF;
    padding: 90px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 80px;
    align-items: flex-start;
}

.testi-left .badge { margin-bottom: 14px; }

.testi-left h2 {
    font-size: 36px;
    font-weight: 800;
    color: #0F172A;
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
}

.testi-left h2 span { color: #2563EB; }

.testi-meta {
    font-size: 14px;
    color: #6B7280;
    line-height: 1.6;
    margin-bottom: 20px;
}

.stars-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.stars { display: flex; gap: 2px; }

.stars svg {
    width: 17px;
    height: 17px;
    fill: #F59E0B;
    color: #F59E0B;
}

.rating-label { font-size: 13px; color: #6B7280; font-weight: 500; }

/* Slider */
.testi-slider { position: relative; }

.testi-slide { display: none; }
.testi-slide.active { display: block; }

.testi-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 4px 32px rgba(0,0,0,.07);
    border: 1px solid #F1F5F9;
    position: relative;
}

.quote-mark {
    font-size: 72px;
    font-family: Georgia, serif;
    color: #DBEAFE;
    line-height: .8;
    margin-bottom: 8px;
    display: block;
    font-weight: 700;
}

.testi-card blockquote {
    font-size: 15px;
    color: #374151;
    line-height: 1.8;
    font-style: normal;
    border: none;
    padding: 0;
    margin-bottom: 28px;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid #F1F5F9;
}

.testi-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid #EFF6FF;
}

.testi-author-info h5 {
    font-size: 14px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 2px;
}

.testi-author-info span {
    font-size: 12.5px;
    color: #94A3B8;
}

/* Slider controls */
.slider-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #CBD5E1;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background .2s, width .2s;
}

.dot.active {
    background: #2563EB;
    width: 24px;
    border-radius: 4px;
}

.nav-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1.5px solid #E2E8F0;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .2s;
    margin-left: auto;
}

.nav-btn:first-of-type { margin-left: 12px; }

.nav-btn:hover {
    background: #2563EB;
    border-color: #2563EB;
    color: #fff;
}

.nav-btn svg { width: 16px; height: 16px; color: inherit; }

/* ===========================
   SOCIAL / IN ACTION
   =========================== */
.social-section { background: #fff; padding: 90px 0; }

.social-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 36px;
}

.social-head-left .badge { margin-bottom: 12px; }

.social-head-left h2 {
    font-size: 36px;
    font-weight: 800;
    color: #0F172A;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.social-head-left h2 span { color: #2563EB; }

.follow-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #0F172A;
    color: #fff;
    padding: 11px 22px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background .2s;
    flex-shrink: 0;
}

.follow-btn:hover { background: #2563EB; color: #fff; }
.follow-btn svg { width: 18px; height: 18px; }

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

.social-post {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 1;
    background: #0F172A;
    position: relative;
    cursor: pointer;
}

.social-post img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .5;
    transition: opacity .3s;
}

.social-post:hover img { opacity: .35; }

.post-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.post-play-circle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255,255,255,.18);
    border: 2px solid rgba(255,255,255,.55);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s, transform .2s;
}

.social-post:hover .post-play-circle {
    background: rgba(255,255,255,.3);
    transform: scale(1.1);
}

.post-play-circle svg {
    width: 22px;
    height: 22px;
    color: #fff;
    margin-left: 3px;
}

/* ===========================
   CTA SECTION
   =========================== */
.cta-section {
    background: linear-gradient(135deg, #1E40AF 0%, #2563EB 60%, #3B82F6 100%);
    padding: 90px 0;
}

.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.cta-content h2 {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 15px;
    color: rgba(255,255,255,.8);
    line-height: 1.75;
    margin-bottom: 36px;
    max-width: 400px;
}

.cta-image {
    border-radius: 24px;
    overflow: hidden;
    height: 420px;
}

.cta-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
    .container { padding: 0 24px; }

    .smarter-way-grid,
    .hiw-grid,
    .cta-grid { grid-template-columns: 1fr; gap: 48px; }

    .testimonials-grid { grid-template-columns: 1fr; gap: 40px; }

    .benefits-head { grid-template-columns: 1fr; gap: 16px; }

    .benefit-row { grid-template-columns: 1fr; gap: 32px; }

    .hero-text h1  { font-size: 40px; }
    .hero-text .hero-sub { font-size: 36px; }

    .smarter-way-head h2,
    .hiw-head h2,
    .testi-left h2,
    .social-head-left h2,
    .cta-content h2 { font-size: 30px; }

    .benefits-head-left h2 { font-size: 30px; }

    .hiw-image,
    .cta-image { height: 300px; }

    .media-cluster { justify-content: center; }

    .social-head { flex-direction: column; align-items: flex-start; gap: 20px; }
}

@media (max-width: 640px) {
    .section { padding: 60px 0; }
    .smarter-way,
    .how-it-works,
    .testimonials,
    .social-section,
    .cta-section { padding: 60px 0; }

    .hero { padding: 48px 0 0; }
    .hero-text h1 { font-size: 30px; }
    .hero-text .hero-sub { font-size: 26px; }

    .services-row { padding: 4px 24px 24px; }

    .social-grid { grid-template-columns: repeat(2, 1fr); }

    .hiw-image { height: 240px; }
    .cta-image { height: 240px; }

    .video-thumb { width: 150px; height: 230px; }
    .phone-mockup { width: 130px; height: 256px; }
    .gplay-badge { width: 130px; }

    .testi-left h2,
    .smarter-way-head h2,
    .hiw-head h2,
    .cta-content h2 { font-size: 26px; }
}
