@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Syne:wght@500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Public+Sans:wght@500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cabin:wght@500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap");
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

:root {
    --green: #22c55e;
    --green-dk: #16a34a;
    --green-lt: #dcfce7;
    --green-bg: #f0fdf4;
    --navy: #0044b5;
    --deep-navy: #29487d;
    --navy2: #1e293b;
    --text: #0f172a;
    --text2: #334155;
    --muted: #475569;
    --border: #e2e8f0;
    --bg: #f8fafc;
    --surface: #f4f6f9;
    --white: #fff;
    --wrap: 1180px;
    --r: 12px;
    --r-lg: 18px;
    --blue: #3caa1e;
    --dark-green: #05933a;
    --max-w: 1200px;
    --radius: 16px;
    --radius-sm: 10px;
}

body {
    /* font-family: "Plus Jakarta Sans", sans-serif; */
    font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: 1.65;
    color: var(--text);
    background: #fff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
    padding-left: 0rem;
}

/* -- LAYOUT -- */
.wrap {
    max-width: var(--wrap);
    margin: 0 auto;
    padding: 0 24px;
}

.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
}

.tc {
    text-align: center;
}

.sec {
    padding: 60px 0;
}

.sec-title {
    font-size: clamp(1.6rem, 4vw, 2.25rem);
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.4px;
    margin-bottom: 8px;
}

.sec-sub {
    font-size: 1rem;
    color: var(--muted);
    margin: 0 auto;
    margin-bottom: 15px;
}

.sec-green {
    color: var(--green);
}

.section-heading {
    margin: 0;
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    line-height: 1.15;
    font-weight: 900;
    letter-spacing: -1px;
    color: #08142d;
}

.section-heading span {
    background: linear-gradient(90deg, #22c55e, #2bd7b0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--green-bg);
    border: 1.5px solid #bbf7d0;
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #15803d;
    margin-bottom: 12px;
}

.section-sub {
    font-size: 1rem;
    color: var(--muted);
    max-width: 560px;
    line-height: 1.7;
    margin-top: 10px;
}

/* -- BUTTONS -- */
.btn-green {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--green);
    color: #fff;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    padding: 13px 26px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(34, 197, 94, 0.35);
    transition:
        background 0.2s,
        transform 0.15s,
        box-shadow 0.2s;
}

.btn-green:hover {
    background: var(--green-dk);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.45);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--text2);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 1rem;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 50px;
    border: 1.5px solid var(--border);
    cursor: pointer;
    transition:
        border-color 0.2s,
        color 0.2s,
        transform 0.15s;
}

.btn-outline:hover {
    border-color: var(--green);
    color: var(--green);
    transform: translateY(-2px);
}

/* -- NAVBAR -- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 70px;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    transition: box-shadow 0.3s;
}

.navbar.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.navbar .wrap {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 9px;
    flex-shrink: 0;
}

.nav-logo img {
    height: 65px;
    width: 170px;
}

.nav-logo span {
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--text);
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
    justify-content: center;
}

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: #000;
    padding: 6px 14px;
    border-radius: 8px;
    transition: color 0.15s;
    white-space: nowrap;
    position: relative;
}

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

.nav-links a.active {
    color: var(--green);
    font-weight: 700;
}

.nav-links a.active::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 22px;
    height: 2.5px;
    background: var(--green);
    border-radius: 2px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.nav-login {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text2);
    padding: 6px 14px;
}

.nav-login:hover {
    color: var(--text);
}

.nav-signup {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    background: var(--green);
    padding: 9px 20px;
    border-radius: 50px;
    box-shadow: 0 2px 10px rgba(34, 197, 94, 0.3);
    transition:
        background 0.2s,
        transform 0.15s;
}

.nav-signup:hover {
    background: var(--green-dk);
    transform: translateY(-1px);
}

/* Hamburger */
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    margin-left: auto;
}

.nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s;
}

.nav-hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
    opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    z-index: 999;
    padding: 16px 24px 24px;
    flex-direction: column;
    gap: 6px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu a {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text2);
    padding: 10px 14px;
    border-radius: 10px;
    transition:
        background 0.15s,
        color 0.15s;
}

.mobile-menu a:hover,
.mobile-menu a.active {
    background: var(--green-bg);
    color: var(--green);
}

.mobile-menu-actions {
    display: flex;
    gap: 10px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.mobile-menu-actions .nav-login {
    border: 1.5px solid var(--border);
    border-radius: 50px;
}

/* -- HERO -- */
.hero {
    padding: 100px 0 70px;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -60px;
    width: 560px;
    height: 560px;
    background: radial-gradient(
        circle,
        rgba(186, 230, 253, 0.6) 0%,
        rgba(224, 242, 254, 0.25) 45%,
        transparent 70%
    );
    border-radius: 50%;
    pointer-events: none;
}

.hero::after {
    content: "";
    position: absolute;
    top: 60px;
    right: 260px;
    width: 300px;
    height: 300px;
    background: radial-gradient(
        circle,
        rgba(167, 243, 208, 0.25) 0%,
        transparent 70%
    );
    border-radius: 50%;
    pointer-events: none;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--green-bg);
    border: 1.5px solid #bbf7d0;
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.775rem;
    font-weight: 700;
    color: #15803d;
    margin-bottom: 22px;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.8rem);
    font-weight: 800;
    color: var(--text);
    line-height: 1.08;
    letter-spacing: -0.5px;
    margin-bottom: 18px;
}

.hero-title .grn {
    color: var(--green);
}

.hero-desc {
    font-size: 1rem;
    color: var(--muted);
    max-width: 430px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.hero-desc b {
    color: var(--text);
    font-weight: 700;
}

.hero-btns {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hstat {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hstat-icon {
    width: 35px;
    height: 35px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.hsi-blue {
    background: #dbeafe;
    color: #1d4ed8;
}

.hsi-amber {
    background: #fef3c7;
    color: #d97706;
}

.hsi-teal {
    background: #ccfbf1;
    color: #0d9488;
}

.hstat-v {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--text);
    line-height: 1.1;
}

.hstat-l {
    font-size: 0.75rem;
    color: var(--muted);
    line-height: 1.2;
}

.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.hero-visual img {
    width: 125%;
    max-width: none;
    object-fit: contain;
    filter: drop-shadow(0 25px 60px rgba(37, 99, 235, 0.18));
}

/* -- TLX SECTION -- */
.tlx-section {
    padding: 60px 0;
    background:
        radial-gradient(circle at top left, #dcfce7 0%, transparent 28%),
        radial-gradient(circle at bottom right, #dbeafe 0%, transparent 30%),
        #f8fafc;
    overflow: hidden;
}

.tlx-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 32px;
}

.tlx-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 8px 22px;
    border-radius: 999px;
    background: #ecfff2;
    border: 1px solid #b8efc8;
    color: #17994b;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 14px;
}

.tlx-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #19c95b;
}

.tlx-header h2 {
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    line-height: 1.15;
    font-weight: 900;
    letter-spacing: -1px;
    color: #08142d;
}

.tlx-header h2 span {
    background: linear-gradient(90deg, #22c55e, #2bd7b0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tlx-header p {
    margin-top: 10px;
    font-size: 1rem;
    line-height: 1.6;
    color: #64748b;
}

.tlx-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.tlx-card {
    background: #fff;
    border-radius: 28px;
    padding: 24px;
    border: 1px solid #e8edf5;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
    transition: 0.3s ease;
}

.tlx-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.tlx-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 16px;
}

.tlx-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

.tlx-green-light {
    background: #ecfff2;
    color: #18a64f;
}

.tlx-blue-light {
    background: #edf4ff;
    color: #3478ff;
}

.tlx-purple-light {
    background: #f2ecff;
    color: #8954ff;
}

.tlx-card h3 {
    font-size: 1.3rem;
    line-height: 1.2;
    font-weight: 800;
    color: #08142d;
    margin: 0 0 8px;
}

.tlx-card p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    color: #64748b;
}

.tlx-divider {
    width: 100%;
    height: 1px;
    background: #e7edf5;
    margin: 14px 0;
}

.tlx-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tlx-card ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    font-weight: 700;
    color: #08142d;
}

.tlx-card ul li i {
    font-size: 1rem;
}

.tlx-feature-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tlx-feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    font-weight: 700;
    color: #08142d;
}

.tlx-feature-list li i {
    font-size: 1rem;
    width: 20px;
}

.tlx-icon-green {
    color: #19b85a;
}

.tlx-icon-blue {
    color: #2f6dff;
}

.tlx-icon-purple {
    color: #8a4dff;
}

.tlx-icon-orange {
    color: #f59e0b;
}

.tlx-icon-red {
    color: #ff476f;
}

.tlx-bottom-strip {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 20px;
    padding: 20px 24px;
    background: #f8fbff;
    border: 1px solid #e8edf5;
    border-radius: 24px;
}

.tlx-strip-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.tlx-strip-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: #18a64f;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.tlx-strip-item h4 {
    margin: 0 0 2px;
    font-size: 1rem;
    font-weight: 800;
    color: #08142d;
}

.tlx-strip-item p {
    margin: 0;
    font-size: 0.975rem;
    line-height: 1.5;
    color: #64748b;
}

.tlx-strip-divider {
    width: 1px;
    height: 70px;
    background: #dfe7f2;
}

/* -- PRODUCT DETAIL -- */
.product-detail {
    padding: 60px 0;
    background: var(--surface);
    position: relative;
    overflow: hidden;
}

.pd-header {
    text-align: center;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}

.pd-header .section-label {
    justify-content: center;
}

.pd-header .section-sub {
    margin: 8px auto 0;
}

.pd-grid {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 0;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 8px 48px rgba(20, 30, 50, 0.1),
        0 0 0 1px rgba(230, 230, 230, 0.5);
    min-height: 460px;
    position: relative;
    z-index: 1;
}

.pd-nav {
    background: linear-gradient(180deg, var(--navy), var(--deep-navy));
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    overflow-y: auto;
}

.pd-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.25s;
    border: none;
    background: transparent;
    text-align: left;
    width: 100%;
}

.pd-nav-item:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.07);
}

.pd-nav-item.active {
    color: #fff;
    background: linear-gradient(135deg, var(--green), var(--dark-green));
    box-shadow: 0 4px 14px rgba(22, 163, 74, 0.3);
}

.pd-panels {
    position: relative;
    overflow: hidden;
}

.pd-panel {
    display: none;
    padding: 24px;
    animation: fadeIn 0.35s ease;
}

.pd-panel.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.pd-panel h3 {
    font-size: clamp(1.3rem, 3vw, 1.7rem);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 2px;
}

.pd-panel .tagline {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--green);
}

.pd-panel > p {
    font-size: 0.95rem;
    color: #5a6478;
    line-height: 1.7;
    margin-bottom: 18px;
}

.pd-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.pd-feat {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px;
    background: linear-gradient(
        135deg,
        var(--surface),
        rgba(232, 240, 250, 0.4)
    );
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    transition: all 0.25s;
}

.pd-feat:hover {
    border-color: rgba(60, 120, 180, 0.1);
    box-shadow: 0 4px 14px rgba(20, 30, 50, 0.04);
    transform: translateY(-2px);
}

.pd-feat-check {
    width: 22px;
    height: 22px;
    min-width: 22px;
    border-radius: 50%;
    background: var(--green);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    margin-top: 1px;
}

.pd-feat span {
    font-size: 0.875rem;
    color: #334155;
    font-weight: 500;
    line-height: 1.4;
}

/* product nav tabs for mobile */
.pd-tabs-mobile {
    display: none;
    overflow-x: auto;
    gap: 8px;
    padding: 12px 16px;
    background: linear-gradient(180deg, var(--navy), var(--deep-navy));
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.pd-tabs-mobile::-webkit-scrollbar {
    display: none;
}

.pd-tab-btn {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.08);
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.pd-tab-btn.active {
    color: #fff;
    background: var(--green);
}

/* -- NARRATIVE / TIMELINE -- */

.narrative {
    padding: 30px 0;
    background: #f8fafc;
}

.narrative-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-heading {
    font-size: 36px;
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 18px;
}

.section-heading span {
    color: #22c55e;
}

.section-sub {
    max-width: 700px;
    margin: auto;
    color: #64748b;
    font-size: 1rem;
    line-height: 1.7;
}

/* ===== TIMELINE ===== */

.timeline {
    position: relative;
    max-width: 1400px;
    margin: auto;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(
        to bottom,
        rgba(230, 230, 230, 0.5),
        var(--blue),
        var(--green),
        rgba(230, 230, 230, 0.5)
    );
    transform: translateX(-50%);
    border-radius: 3px;
}

/* ===== STEP ===== */

.timeline-step {
    position: relative;
    display: flex;
    margin-bottom: 20px;
}

.timeline-step.left {
    justify-content: flex-start;
}

.timeline-step.right {
    justify-content: flex-end;
}

/* stagger exactly like screenshot */

.timeline-step:nth-child(2) {
    margin-top: 0px;
}

.timeline-step:nth-child(4) {
    margin-top: 0px;
}

/* ===== CARD ===== */

.timeline-card {
    width: 560px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border-radius: 24px;
    padding: 8px;
    border: 1px solid #edf2f7;
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.06);
}

/* closer to center */

.timeline-step.left .timeline-card {
    margin-right: 120px;
}

.timeline-step.right .timeline-card {
    margin-left: 120px;
}

/* ===== IMAGE ===== */

.timeline-image {
    width: 230px;
    height: 170px;

    flex-shrink: 0;

    border-radius: 18px;

    overflow: hidden;

    background: #eef8f1;
}

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

/* ===== CONTENT ===== */

.timeline-content h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 4px;
    color: #111827;
}

.timeline-content p {
    font-size: 15px;
    line-height: 1.5;
    color: #4b5563;
    margin-bottom: 18px;
}

/* ===== TAGS ===== */

.timeline-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.timeline-tags span {
    background: #e8f8eb;
    color: #1f9d49;

    padding: 2px 14px;

    border-radius: 999px;

    font-size: 13px;
    font-weight: 700;
}

/* ===== CENTER ICON ===== */

.timeline-icon {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: white;
    border: 3px solid var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    z-index: 2;
    box-shadow:
        0 8px 24px rgba(60, 120, 180, 0.15),
        0 0 0 6px rgba(60, 120, 180, 0.06);
    transition: all 0.3s;
}
.timeline-step:hover .timeline-icon {
    box-shadow:
        0 8px 32px rgba(60, 120, 180, 0.25),
        0 0 0 10px rgba(60, 120, 180, 0.08);
    transform: translate(-50%, -50%) scale(1.08);
}

/* ===== MOBILE ===== */

@media (max-width: 991px) {
    .timeline::before {
        left: 30px;
    }

    .timeline-step,
    .timeline-step.left,
    .timeline-step.right {
        justify-content: flex-start;
        margin-top: 0 !important;
    }

    .timeline-card {
        width: 100%;
        margin-left: 80px !important;
        margin-right: 0 !important;
        flex-direction: column;
    }

    .timeline-image {
        width: 100%;
        /* height: auto; */
    }

    .timeline-icon {
        left: 30px;
        top: 40px;
        transform: none;
    }

    .section-heading {
        font-size: 42px;
    }
}

/* -- KEY FEATURES -- */
.kf-sec {
    background: #fff;
    padding: 60px 0;
}

.kf-box {
    border: 1.5px solid var(--border);
    border-radius: 20px;
    background: #fff;
    padding: 36px;
    margin-top: 36px;
}

.kf-grid {
    display: grid;
    grid-template-columns: 1fr 1.5px 1fr;
    gap: 36px;
    align-items: start;
}

.kf-divider {
    background: var(--border);
}

.kf-col-hd {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text2);
    margin-bottom: 18px;
}

.kf-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    flex-shrink: 0;
}

.kf-dot-green {
    background: var(--green);
}

.kf-dot-blue {
    background: #3b82f6;
}

.kf-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
}

.kf-item:first-of-type {
    padding-top: 0;
}

.kf-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.kf-ico {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.1rem;
}

.ki-green {
    background: #dcfce7;
    color: #15803d;
}

.ki-orange {
    background: #ffedd5;
    color: #c2410c;
}

.ki-purple {
    background: #ede9fe;
    color: #7c3aed;
}

.ki-amber {
    background: #fef9c3;
    color: #b45309;
}

.ki-blue {
    background: #dbeafe;
    color: #1d4ed8;
}

.ki-teal {
    background: #ccfbf1;
    color: #0d9488;
}

.kf-item h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 2px;
}

.kf-item p {
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.55;
}

/* -- IMPACT -- */
.impact-sec {
    padding: 60px 0;
    background:
        radial-gradient(circle at top left, #dcfce7 0%, transparent 28%),
        radial-gradient(circle at bottom right, #dbeafe 0%, transparent 30%),
        #f8fafc;
}

.impact-box {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 48px;
    align-items: center;
}

.impact-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border-radius: 999px;
    background: #dcfce7;
    color: #16a34a;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.7px;
    margin-bottom: 20px;
}

.impact-left h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: -1.5px;
    color: #0f172a;
    margin-bottom: 16px;
}

.impact-left h2 span {
    color: #22c55e;
}

.impact-left p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--muted);
    max-width: 340px;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.impact-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px;
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.05);
    transition:
        transform 0.35s,
        box-shadow 0.35s;
}

.impact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.1);
}

.impact-card::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.07;
}

.ic-red::before {
    background: #ef4444;
}

.ic-blue::before {
    background: #2563eb;
}

.ic-green::before {
    background: #22c55e;
}

.ic-orange::before {
    background: #f97316;
}

.impact-icon {
    width: 66px;
    height: 66px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    flex-shrink: 0;
}

.ic-red .impact-icon {
    background: #fee2e2;
    color: #ef4444;
}

.ic-blue .impact-icon {
    background: #dbeafe;
    color: #2563eb;
}

.ic-green .impact-icon {
    background: #dcfce7;
    color: #22c55e;
}

.ic-orange .impact-icon {
    background: #ffedd5;
    color: #f97316;
}

.impact-content h3 {
    font-size: 1.6rem;
    line-height: 1;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 4px;
}

.impact-content span {
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.5;
}

/* -- CTA -- */
.cta-sec {
    background: linear-gradient(130deg, #0b1221 0%, #0e2448 55%, #082010 100%);
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

.cta-sec::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(
            circle at 20% 50%,
            rgba(34, 197, 94, 0.08) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 80% 50%,
            rgba(37, 99, 235, 0.07) 0%,
            transparent 50%
        );
    pointer-events: none;
}

.cta-inner {
    display: grid;
    grid-template-columns: 160px 1fr auto;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.cta-shield {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-text h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 8px;
}

.cta-text p {
    font-size: 0.95rem;
    color: #94a3b8;
}

.cta-action {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 14px;
    flex-shrink: 0;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--green);
    color: #fff;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 50px;
    white-space: nowrap;
    box-shadow: 0 4px 20px rgba(34, 197, 94, 0.4);
    transition:
        background 0.2s,
        transform 0.15s,
        box-shadow 0.2s;
}

.btn-cta:hover {
    background: var(--green-dk);
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(34, 197, 94, 0.5);
}

.cta-shield-svg {
    animation: floatY 3.5s ease-in-out infinite;
}

@keyframes floatY {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* -- FOOTER -- */
.footer {
    background: #0b1221;
    padding: 60px 0 28px;
    color: #fff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2.2fr 1fr 1fr 1fr 1.6fr;
    gap: 36px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-grid  ul{
    padding-left: 0rem !important;
}

.ft-brand .ft-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    width: 150px;
}

.ft-logo-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.ft-brand-name {
    font-size: 1.2rem;
    font-weight: 900;
    color: #f1f5f9;
    letter-spacing: 0.5px;
}

.ft-brand p {
    font-size: 0.85rem;
    line-height: 1.8;
    margin-bottom: 18px;
    max-width: 250px;
}

.ft-social {
    display: flex;
    gap: 8px;
}

.ft-social a {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: #fff;
    transition:
        background 0.2s,
        color 0.2s;
}

.ft-social a:hover {
    background: var(--green);
    color: #fff;
    border-color: var(--green);
}

.ft-col h5 {
    font-size: 0.9rem;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 14px;
}

.ft-col ul li {
    margin-bottom: 9px;
    color: #fff;
}

.ft-col ul li a {
    font-size: 0.85rem;
    color: #fff;
    transition: color 0.15s;
}

.ft-col ul li a:hover {
    color: #fff;
}

.ft-stores {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ft-store-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 10px;
    padding: 9px 13px;
    transition:
        border-color 0.2s,
        background 0.2s;
}

.ft-store-btn:hover {
    border-color: var(--green);
    background: rgba(34, 197, 94, 0.07);
}

.ft-store-ico {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.ft-store-txt small {
    font-size: 0.68rem;
    color: #64748b;
    display: block;
}

.ft-store-txt strong {
    font-size: 0.82rem;
    color: #f1f5f9;
    font-weight: 600;
    display: block;
}

.footer-bottom {
    padding-top: 22px;
    text-align: center;
    font-size: 0.85rem;
    color: #fff;
}

/* -- SCROLL REVEAL -- */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

.reveal-delay1 {
    transition-delay: 0.1s;
}

.reveal-delay2 {
    transition-delay: 0.2s;
}

.reveal-delay3 {
    transition-delay: 0.3s;
}

.downloads-section {
    padding: 30px 0;
    background: linear-gradient(
        90deg,
        rgba(74, 222, 128, 0.08),
        rgba(59, 130, 246, 0.05)
    );
}

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

.section-tag {
    display: inline-block;
    background: rgba(34, 197, 94, 0.12);
    color: #22c55e;
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.section-title {
    margin-top: 20px;
    font-size: 36px;
    line-height: 1.1;
    text-align: center;
    color: #0f172a;
}

.section-title span {
    color: #22c55e;
}

.section-subtitle {
    max-width: 720px;
    margin: 20px auto 60px;
    text-align: center;
    color: #64748b;
    font-size: 16px;
}

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

.download-card {
    background: #fff;
    border-radius: 24px;
    padding: 22px;
    position: relative;
    border: 1px solid #e5e7eb;
    transition: 0.3s;
}

.download-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}

.icon-box {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.icon-box svg {
    width: 34px;
    height: 34px;
}

.download-links img {
    width: 34px;
    height: 34px;
}

.chrome-btn {
    background: #4285f4 !important;
    color: #fff !important;
    border: none !important;
}

.edge-btn {
    background: #0ea5e9 !important;
    color: #fff !important;
    border: none !important;
}

.firefox-btn {
    background: #ff7139 !important;
    color: #fff !important;
    border: none !important;
}

.windows-btn {
    background: #0078d4 !important;
    color: #fff !important;
    border: none !important;
}

.apple-btn {
    background: #111827 !important;
    color: #fff !important;
    border: none !important;
}

.icon-box i {
    width: 34px;
    height: 34px;
}

.green {
    background: rgba(34, 197, 94, 0.12);
    color: #22c55e;
}

.blue {
    background: rgba(59, 130, 246, 0.12);
    color: #2563eb;
}

.card-badge {
    position: absolute;
    top: 25px;
    right: 25px;
    background: #eff6ff;
    color: #2563eb;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}

.mobile {
    background: #ecfdf5;
    color: #22c55e;
}

.download-card h3 {
    font-size: 20px;
    margin-bottom: 5px;
    color: #0f172a;
}

.download-card p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 24px;
}

.download-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.download-links a {
    text-decoration: none;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 7px;
    padding: 10px 18px;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: 0.25s;
}

.download-links a:hover {
    border-color: #22c55e;
}

.primary-btn {
    background: linear-gradient(135deg, #2563eb, #3b82f6) !important;
    color: #fff !important;
    border: none !important;
}

.trust-bar {
    margin-top: 40px;
    background: white;
    border-radius: 18px;
    padding: 24px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    border: 1px solid #e5e7eb;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #334155;
    font-weight: 500;
}

.trust-item i {
    color: #22c55e;
    width: 18px;
    height: 18px;
}

.download-cta {
    margin-top: 30px;
    background: white;
    border-radius: 24px;
    padding: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    border: 1px solid #e5e7eb;
}

.cta-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #2563eb, #22c55e);
    border-radius: 24px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-icon i {
    width: 42px;
    height: 42px;
}

.cta-content h3 {
    font-size: 32px;
    margin-bottom: 10px;
    color: #0f172a;
}

.cta-content p {
    color: #64748b;
    max-width: 600px;
}

.cta-buttons {
    display: flex;
    gap: 14px;
}

.btn-primary {
    background: #22c55e;
    color: white;
    padding: 16px 30px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 600;
}

.btn-secondary {
    background: white;
    border: 1px solid #e5e7eb;
    color: #0f172a;
    padding: 16px 30px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 600;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--green-bg);
    border: 1.5px solid #bbf7d0;
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    color: #15803d;
    margin-bottom: 22px;
}

.hero-badge-pulse {
    position: relative;
}

.hero-badge-dot {
    width: 18px;
    height: 18px;
    background: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-badge-pulse::before {
    content: "";
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 2px solid var(--green);
    animation: pulseRing 2s ease-out infinite;
}

@media (max-width: 991px) {
    .download-grid {
        grid-template-columns: 1fr;
    }

    .trust-bar {
        grid-template-columns: 1fr 1fr;
    }

    .download-cta {
        flex-direction: column;
        text-align: center;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .section-title {
        font-size: 42px;
    }
}

/* -- PULSE RING -- */
@keyframes pulseRing {
    0% {
        transform: scale(0.9);
        opacity: 0.5;
    }

    70% {
        transform: scale(1.4);
        opacity: 0;
    }

    100% {
        transform: scale(0.9);
        opacity: 0;
    }
}

@keyframes floatNotif {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

/* -------------------------------------------
        RESPONSIVE BREAKPOINTS
        ------------------------------------------- */

/* -- 1280px -- */
@media (max-width: 1280px) {
    .hero-visual img {
        width: 100%;
    }

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

    .ft-brand {
        grid-column: 1 / -1;
    }

    .ft-brand p {
        max-width: 100%;
    }
}

/* -- 1024px -- */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-desc,
    .hero-btns,
    .hero-stats {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-btns,
    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        justify-content: center;
        margin-top: 32px;
    }

    .hero-visual img {
        width: 90%;
        max-width: 600px;
    }

    .hero::before,
    .hero::after {
        display: none;
    }

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

    .tlx-grid .tlx-card:last-child {
        grid-column: 1 / -1;
    }

    .tlx-bottom-strip {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .tlx-strip-divider {
        display: none;
    }

    .impact-box {
        grid-template-columns: 1fr;
    }

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

    .impact-left p {
        margin: 0 auto;
    }

    .cta-inner {
        grid-template-columns: 120px 1fr;
        row-gap: 20px;
    }

    .cta-action {
        grid-column: 1/-1;
        align-items: center;
    }
}

/* -- 900px -- */
@media (max-width: 900px) {
    .pd-grid {
        grid-template-columns: 1fr;
    }

    .pd-nav {
        display: none;
    }

    .pd-tabs-mobile {
        display: flex;
    }

    .pd-panel {
        display: none;
    }

    .pd-panel.active {
        display: block;
    }

    .pd-features {
        grid-template-columns: 1fr;
    }
}

/* -- 768px -- */
@media (max-width: 768px) {
    .nav-links,
    .nav-actions {
        display: none;
    }

    .nav-hamburger {
        display: flex;
        align-items: flex-end;
    }

    .hero {
        padding: 90px 0 50px;
    }

    .hero-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }

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

    .tlx-grid .tlx-card:last-child {
        grid-column: auto;
    }

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

    .kf-divider {
        display: none;
    }

    .kf-box {
        padding: 24px;
    }

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

    .impact-card {
        flex-direction: column;
        text-align: center;
    }

    .impact-icon {
        width: 54px;
        height: 54px;
        font-size: 22px;
    }

    .impact-content h3 {
        font-size: 1.4rem;
    }

    /* Timeline ? vertical single column */
    .timeline::before {
        left: 24px;
    }

    .tl-row {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 20px 0 20px 56px;
    }

    .tl-dot {
        left: 4px;
        top: 28px;
        width: 40px;
        height: 40px;
        font-size: 16px;
        transform: none;
    }

    .tl-row:hover .tl-dot {
        transform: scale(1.08);
    }

    .tl-spacer {
        display: none;
    }

    .tl-row:nth-child(odd) .tl-content,
    .tl-row:nth-child(even) .tl-content {
        grid-column: 1;
    }

    .cta-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 24px;
    }

    .cta-shield {
        display: none;
    }

    .cta-action {
        align-items: center;
    }

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

    .ft-brand {
        grid-column: 1 / -1;
    }
}

/* -- 600px -- */
@media (max-width: 600px) {
    .wrap,
    .container {
        padding: 0 16px;
    }

    .sec {
        padding: 44px 0;
    }

    .sec-title {
        font-size: 1.5rem;
    }

    .hero-stats {
        gap: 16px;
    }

    .hero-btns {
        flex-direction: column;
        align-items: center;
    }

    .btn-green,
    .btn-outline {
        width: 100%;
        justify-content: center;
        max-width: 300px;
    }

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

    .impact-card {
        flex-direction: row;
        text-align: left;
    }

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

    .ft-brand {
        grid-column: auto;
    }
}

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

    .section-heading {
        font-size: 1.4rem;
        letter-spacing: -0.5px;
    }

    .tlx-header h2 {
        font-size: 1.4rem;
    }

    .tlx-header p {
        font-size: 0.9rem;
    }

    .tlx-card h3 {
        font-size: 1.1rem;
    }

    .pd-panel h3 {
        font-size: 1.1rem;
    }

    .cta-text h2 {
        font-size: 1.3rem;
    }
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-thumb {
    background-image: linear-gradient(135deg, #195175 10%, #2791d6);
    border-radius: 5px;
}

::-webkit-scrollbar-track {
    background-color: #2791d6;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #f2f2f2;
}
