:root {
    --cyan: #00c8d7;
    --cyan-dark: #01C2E3;
    --cyan-light: #e0f9fc;
    --dark: #1a1a2e;
    --text: #3a3a5c;
    --muted: #6b7280;
    --white: #ffffff;
    --radius: 18px;
    --shadow: 0 8px 32px rgba(0,200,215,0.13);
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    background: #fff;
    overflow-x: hidden;
}

/* ── NAVBAR ── */
.navbar {
    padding: 18px 0;
    background: #fff;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Popins', sans-serif;
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--cyan) !important;
    text-decoration: none;
}
.brand-icon {
    width: 36px;
    height: 36px;
}
.lang-btn {
    display: flex;
    align-items: center;
    gap: 7px;
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 50px;
    padding: 6px 16px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    transition: border-color .2s;
}
.lang-btn:hover { border-color: var(--cyan); }
.flag { font-size: 1.1rem; }

/* ── HERO ── */
.hero {
    padding: 72px 0 60px;
    background: #fff;
    overflow: hidden;
}
.hero h1 {
    font-family: 'Popins', sans-serif;
    font-weight: 900;
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    line-height: 1.18;
    color: #111827;
}
.hero h1 span {
    color: var(--text);
    font-weight: 400;
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
}
.hero .subtitle {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text);
    margin: 8px 0 14px;
}
.hero .subtitle strong {
    color: var(--cyan);
    font-family: 'Popins', sans-serif;
    font-weight: 900;
}
.hero .desc {
    font-size: 0.93rem;
    color: var(--muted);
    line-height: 1.7;
    max-width: 420px;
    margin-bottom: 32px;
}
.btn-cta {
    background: var(--cyan);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 14px 32px;
    font-size: 0.97rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background .2s, transform .15s, box-shadow .2s;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(0,200,215,0.35);
}
.btn-cta:hover {
    background: var(--cyan-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0,200,215,0.45);
    color: #fff;
}
.btn-cta .arrow-circle {
    background: rgba(255,255,255,0.25);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

/* phone mockups */
.phones-wrap {
    position: relative;
    height: 420px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
.phone {
    border-radius: 30px;
    box-shadow: 0 24px 60px rgba(0,0,0,0.18);
    overflow: hidden;
    position: absolute;
}
.phone-back {
    width: 190px;
    height: 380px;
    background: linear-gradient(145deg, #1a1a2e, #2d2d55);
    right: 60px;
    bottom: 0;
    transform: rotate(6deg) translateY(20px);
    z-index: 1;
    border: 3px solid #2a2a4a;
}
.phone-front {
    width: 195px;
    height: 390px;
    background: linear-gradient(145deg, #111827, #1f2937);
    right: 140px;
    bottom: 0;
    transform: rotate(-4deg);
    z-index: 2;
    border: 3px solid #1a1a2e;
}
.phone-screen {
    width: 100%;
    height: 100%;
    padding: 30px 10px 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.phone-notch {
    width: 70px;
    height: 20px;
    background: #111;
    border-radius: 0 0 14px 14px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}
.phone-bar {
    height: 8px;
    border-radius: 6px;
    background: var(--cyan);
    opacity: 0.7;
}
.phone-bar-sm { height: 6px; background: #e5e7eb; opacity: 0.4; }
.phone-tile {
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    height: 50px;
}
.phone-tile-sm {
    background: rgba(255,255,255,0.07);
    border-radius: 8px;
    height: 36px;
}
.phone-header-text {
    color: #fff;
    font-size: 0.55rem;
    font-weight: 700;
    padding: 4px 6px;
}
.phone-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
}
.phone-grid-item {
    background: rgba(255,255,255,0.12);
    border-radius: 8px;
    height: 44px;
}
.phone-logo {
    color: var(--cyan);
    font-size: 0.6rem;
    font-weight: 900;
    font-family: 'Popins', sans-serif;
    padding: 6px;
}

/* ── FEATURE BANNER ── */
.feature-banner {
    background: linear-gradient(135deg, var(--cyan) 0%, #00adc0 60%, #0097ab 100%);
    border-radius: 24px;
    margin: 0 16px 60px;
    padding: 44px 48px;
    overflow: hidden;
    position: relative;

    padding-right: 0;
    box-shadow: 0 4px 58px rgb(0 0 0 / 25%);
    /* border-color: #fff; */
    border: 5px solid #fff;
}
.feature-banner::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    top: -80px;
    right: 30%;
    pointer-events: none;
}
.feature-banner h2 {
    font-family: 'Popins', sans-serif;
    font-weight: 900;
    font-size: clamp(1.25rem, 2.5vw, 1.7rem);
    color: #fff;
    line-height: 1.3;
}
.feature-banner .underline-dec {
    width: 48px;
    height: 3px;
    background: rgba(255,255,255,0.6);
    border-radius: 2px;
    margin: 12px 0 16px;
}
.feature-banner p {
    color: rgba(255,255,255,0.88);
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 380px;
}
.mockup-screens {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: flex-end;
}
.mock-screen {
    background: rgba(255,255,255,0.18);
    border-radius: 14px;
    border: 2px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(8px);
}
.mock-screen-lg { width: 90px; height: 160px; }
.mock-screen-md { width: 75px; height: 130px; }
.mock-screen-sm { width: 68px; height: 115px; }
.mock-inner {
    padding: 8px 6px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.mock-bar { height: 5px; border-radius: 4px; background: rgba(255,255,255,0.5); }
.mock-bar-sm { height: 4px; background: rgba(255,255,255,0.3); }
.mock-dot { width: 20px; height: 20px; background: rgba(255,255,255,0.4); border-radius: 50%; }
.mock-map {
    height: 60px;
    background: rgba(255,255,255,0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mock-map i { color: rgba(255,255,255,0.7); font-size: 1.2rem; }

/* ── SERVICES ── */
.services { padding: 64px 0; }
.services h2 {
    font-family: 'Popins', sans-serif;
    font-weight: 900;
    font-size: 1.6rem;
    text-align: center;
    color: #111827;
    margin-bottom: 36px;
}
.services-box {
    border: 1.5px solid var(--cyan-dark);
    border-radius: 20px;
    padding: 36px 28px;
    background: #fff;
}
.service-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 0;
    border-bottom: 1px solid #f3f4f6;
    transition: background .15s;
}
.service-item:last-child { border-bottom: none; }
.service-num {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--cyan);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;

    box-shadow: 0 4px 15px rgb(0 0 0 / 25%);
    border: 2px solid #fff;

}
.service-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
}

/* ── WHY SECTION ── */
.why-section { padding: 60px 0; }
.why-label {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 6px;
}
.why-logo {
    font-family: 'Popins', sans-serif;
    font-weight: 900;
    font-size: 2rem;
    color: var(--cyan);
    display: flex;
    align-items: center;
    gap: 8px;
}
.why-desc {
    font-size: 0.87rem;
    color: var(--muted);
    line-height: 1.7;
    margin-top: 14px;
    max-width: 280px;
}
.why-card {
    border: 1.5px solid #e5e7eb;
    border-radius: 16px;
    padding: 22px 20px;
    height: 100%;
    transition: box-shadow .2s, border-color .2s, transform .2s;
}
.why-card:hover {
    box-shadow: var(--shadow);
    border-color: var(--cyan);
    transform: translateY(-3px);
}
.why-card.featured {
    background: var(--cyan);
    border-color: var(--cyan);
    color: #fff;
}
.why-card.featured .card-title { color: #fff; }
.why-card.featured .card-text { color: rgba(255,255,255,0.85); }
.card-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: var(--cyan-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    font-size: 1.15rem;
    color: var(--cyan);
}
.featured .card-icon {
    background: rgba(255,255,255,0.25);
    color: #fff;
}
.card-title {
    font-family: 'Popins', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    color: #111827;
    margin-bottom: 6px;
}
.card-text {
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.6;
}

/* ── DOWNLOAD ── */
.download-section {
    text-align: center;
    padding: 60px 0 72px;
    background: #f9fafb;
}
.download-section h2 {
    font-family: 'Popins', sans-serif;
    font-weight: 900;
    font-size: 1.8rem;
    color: #111827;
    margin-bottom: 8px;
}
.download-section p {
    color: var(--muted);
    font-size: 0.92rem;
    margin-bottom: 32px;
}
.store-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.store-btn {
    background: #111827;
    color: #fff;
    border: none;
    border-radius: 14px;
    padding: 14px 28px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.88rem;
    cursor: pointer;
    transition: transform .2s, box-shadow .2s;
    text-decoration: none;
    min-width: 190px;
}
.store-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    color: #fff;
}
.store-btn i { font-size: 1.6rem; }
.store-btn .btn-labels { text-align: left; }
.store-btn .btn-labels small {
    display: block;
    font-size: 0.7rem;
    opacity: 0.7;
    line-height: 1;
}
.store-btn .btn-labels span {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4;
}

/* ── FOOTER ── */
footer {
    background: var(--cyan-dark);
    color: #fff;
    padding-top: 0;
    position: relative;
}
.footer-wave {
    display: block;
    width: 100%;
    margin-bottom: -1px;
}
.footer-inner {
    padding: 48px 0 28px;
}
.footer-logo {
    font-family: 'Popins', sans-serif;
    font-weight: 900;
    font-size: 1.5rem;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
}
.footer-desc {
    font-size: 16px;
    color: rgb(255 255 255);
    line-height: 1.7;
}
.footer-title {
    font-weight: 800;
    font-size: 1.3rem;
    margin-bottom: 16px;
}
.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 1rem;
    color: rgba(255,255,255,0.9);
}
.contact-item i {
    width: 32px;
    height: 32px;
    background: #fff;
    color: var(--cyan-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}
.social-icons { display: flex; gap: 10px; }
.social-icon {
    width: 36px;
    height: 36px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #fff;
    text-decoration: none;
    transition: background .2s, transform .15s;
}
.social-icon i {
    color: var(--cyan-dark);
}
.social-icon:hover {
    background: rgba(255,255,255,0.4);
    transform: translateY(-2px);
    color: #fff;
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.25);
    padding: 16px 0 0;
    margin-top: 32px;
    text-align: center;

    color: #fff;
    font-size: 1rem;
    font-weight: 600;
}


.navbar .navbar-brand img,
.footer-logo img {
    width: 200px;
}
.hero .phone-image img {
    width: 400px;
}
.mockup-screens img {
    width: 700px;
}


/* brand logo SVG style */
.logo-svg-icon {
    display: inline-block;
}

@media (max-width: 768px) {
    .hero { padding: 40px 0 32px; }
    .phones-wrap { height: 280px; margin-top: 32px; }
    .phone-back { width: 140px; height: 270px; right: 20px; }
    .phone-front { width: 145px; height: 285px; right: 80px; }
    .feature-banner { margin: 0 8px 40px; padding: 28px 24px; }
    .mockup-screens { display: none; }
    .services-box { padding: 20px 12px; }
    .why-desc { max-width: 100%; }
    .footer-inner > .row > div { margin-bottom: 28px; }
}

