:root {
    --primary: #0068b4;
    --primary-dark: #0049e0;
    --primary-light: #e8f0ff;
    --accent: #00d4aa;
    --dark: #0d0f1a;
    --text: #2c2f45;
    --muted: #6b7292;
    --border: #e4e7f4;
    --white: #ffffff;
    --card-bg: #f1f4ff;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Jost-Regular';
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}


@keyframes fadeUp {
    from { opacity:0; transform:translateY(28px); }
    to   { opacity:1; transform:translateY(0); }
}
@keyframes floatY {
    0%,100% { transform:translateY(0); }
    50%     { transform:translateY(-12px); }
}
@keyframes pulse-ring {
    0%   { box-shadow: 0 0 0 0 rgba(0,87,255,.4); }
    70%  { box-shadow: 0 0 0 14px rgba(0,87,255,0); }
    100% { box-shadow: 0 0 0 0 rgba(0,87,255,0); }
}


.fade-up { opacity:0; animation: fadeUp .65s ease forwards; }
.d1 { animation-delay:.08s; }
.d2 { animation-delay:.18s; }
.d3 { animation-delay:.28s; }
.d4 { animation-delay:.42s; }
/* ── NAVBAR ── */



.navbar {
    position: fixed;
    right: 0;
    left: 0;
    z-index: 1000;
}

.menuAreahd {
    padding: 0.5rem 1rem;
    border-radius: 50px;
    backdrop-filter: blur(14px);
    /* background: #d8e7ff99; */
    border: 1px solid #cad4ff;
    display: flex;
    width: 100%;
    margin: 10px 0;
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.35rem;
    color: var(--primary) !important;
    display: flex;
    align-items: center;
    gap: .45rem;
}

.navbar-brand .logo-icon {
    width: 32px; height: 32px;
    background: var(--primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: .9rem;
}

.nav-link {
    font-weight: 500;
    color: var(--text) !important;
    font-size: .93rem;
    padding: .45rem .85rem !important;
    border-radius: 8px;
    transition: background .18s, color .18s;
}

.nav-link:hover { background: var(--primary-light); color: var(--primary) !important; }

.btn-try {
    background: var(--primary);
    color: #fff !important;
    font-weight: 600;
    font-size: .88rem;
    padding: .5rem 1.2rem;
    border-radius: 10px;
    border: none;
    transition: background .2s, transform .15s, box-shadow .2s;
    box-shadow: 0 4px 16px rgba(26,107,255,.28);
}

.btn-try:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 22px rgba(26,107,255,.36);
}

/* ── HERO (Freea-style) ── */
.hero {
    padding: 0;
    background: linear-gradient(160deg, #dce9fb 0%, #e8f1fd 30%, #f0f5fe 60%, #e4eefb 100%);
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
}


/* Grid overlay */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
    linear-gradient(rgba(26,107,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,107,255,.06) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
}

.hero-top {
    padding: 7.5rem 0 2rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

/* Pill badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: rgba(255,255,255,.75);
    border: 1px solid rgba(26,107,255,.2);
    backdrop-filter: blur(8px);
    border-radius: 20px;
    padding: .3rem .9rem;
    font-size: .82rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgb(255 255 255 / 44%);
    border: 1px solid rgba(0,87,255,.2);
    backdrop-filter: blur(8px);
    border-radius: 50px;
    padding: .3rem 1rem .3rem .55rem;
    font-size: .8rem;
    color: var(--text);
    margin-bottom: 1rem;
    font-family: "Jost-Medium";
}

.eyebrow-dot {
    width: 20px; height: 20px;
    border-radius: 50%;
    background: var(--primary);
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-size: .5rem;
    animation: pulse-ring 2s infinite;
}


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

.hero h1 {
    font-size: clamp(2.6rem, 7vw, 5.2rem);
    font-weight: 800;
    line-height: 1.06;
    letter-spacing: -.04em;
    color: #0a0d1a;
    max-width: 820px;
    margin: 0 auto .9rem;
}


.btn-hero-primary {
    background: var(--primary);
    color: #fff;
    font-weight: 600;
    padding: .75rem 1.8rem;
    border-radius: 50px;
    border: none;
    box-shadow: 0 5px 22px rgba(26,107,255,.35);
    transition: all .2s;
    font-size: .95rem;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    text-decoration: none;
}

.btn-hero-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(26,107,255,.42);
    color: #fff;
}

.btn-hero-primary .arrow-icon {
    width: 22px; height: 22px;
    background: rgba(255,255,255,.25);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: .75rem;
}

/* Floating app icons */
.hero-float-icon {
    position: absolute;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 28px rgba(0,0,0,.12);
    z-index: 3;
    animation: floatBob 4s ease-in-out infinite;
}

.hero-float-icon.icon-pink {
    width: 52px; 
    height: 52px;
    /* background: linear-gradient(135deg, #f92b8b, #ff6bb5); */
    /* background: linear-gradient(135deg, #4a8aff, #2560cd); */
    background: linear-gradient(135deg, #4a8aff8c, #2560cd94);
    top: 32%; 
    left: 6%;
    animation-delay: 0s;
}

.hero-float-icon.icon-green {
    width: 52px; 
    height: 52px;
    /* background: linear-gradient(135deg, #22c55e, #16a34a); */
    /* background: linear-gradient(50deg, #4a8aff, #2560cd); */
    background: linear-gradient(50deg, #4a8aff8c, #2560cd94);
    top: 28%; 
    right: 6%;
    animation-delay: 1.5s;
}

.hero-float-icon.icon-orng {
    width: 52px;
    height: 52px;
    /* background: linear-gradient(135deg, #ff9349, #db5d06); */
    /* background: linear-gradient(302deg, #4a8aff, #2560cd); */
    background: linear-gradient(302deg, #4a8aff8c, #2560cd94);
    bottom: 33%;
    right: 9%;
    animation-delay: 1.5s;
}

.hero-float-icon.icon-blues {
    width: 52px;
    height: 52px;
    /* background: linear-gradient(135deg, #4a8aff, #2560cd); */
    /* background: linear-gradient(135deg, #4a8aff, #2560cd); */
    background: linear-gradient(135deg, #4a8aff8c, #2560cd94);
    bottom: 38%;
    left: 8%;
    animation-delay: 1.5s;
}

@keyframes floatBob {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* ── APP MOCKUP (Freea-style) ── */
.hero-mockup-wrap {
    position: relative;
    max-width: 980px;
    margin: 0 auto;
    padding: 0 1.5rem 0;
    z-index: 2;
    flex: 1;
}

.hero-mockup {
    background: #fff;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -4px 60px rgba(26,107,255,.1), 0 0 0 1px rgba(26,107,255,.08);
    overflow: hidden;
}

/* App top bar */
.app-topbar {
    display: flex;
    align-items: center;
    padding: .65rem 1.2rem;
    border-bottom: 1px solid var(--border);
    gap: .8rem;
    background: #fff;
}

.app-logo-pill {
    display: flex;
    align-items: center;
    gap: .45rem;
    padding: .25rem .7rem .25rem .35rem;
    background: var(--primary-light);
    border-radius: 8px;
    flex-shrink: 0;
}

.app-logo-sq {
    width: 26px; height: 26px;
    background: var(--primary);
    border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-size: .7rem;
}

.app-logo-text {
    font-weight: 700;
    font-size: .82rem;
    color: var(--text);
    line-height: 1;
}

.app-logo-sub {
    font-size: .6rem;
    color: var(--primary);
    font-weight: 600;
}

.app-topbar-mid {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
}

.app-topbar-date {
    display: flex;
    align-items: center;
    gap: .35rem;
    font-size: .75rem;
    color: var(--muted);
}

.app-avatars-row {
    display: flex;
}

.app-avatars-row .av {
    width: 24px; height: 24px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -6px;
    display: flex; align-items: center; justify-content: center;
    font-size: .55rem;
    color: #fff;
    font-weight: 700;
}

.app-avatars-row .av:first-child { margin-left: 0; }

.timer-pill {
    background: #1a1a2e;
    color: #fff;
    font-size: .68rem;
    padding: .18rem .55rem;
    border-radius: 6px;
    font-weight: 600;
}

.app-topbar-right {
    display: flex;
    align-items: center;
    gap: .8rem;
    flex-shrink: 0;
}

.app-topbar-right .tb-icon {
    font-size: 1rem;
    color: var(--muted);
    cursor: pointer;
}

.app-user-pill {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .78rem;
    font-weight: 600;
    color: var(--text);
}

.user-av {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f97316, #fb923c);
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-size: .7rem;
    font-weight: 700;
}

/* App body layout */
.app-body {
    display: grid;
    grid-template-columns: 220px 1fr;
    min-height: 420px;
}

/* Sidebar */
.app-sidebar {
    border-right: 1px solid var(--border);
    padding: 1rem .75rem;
    background: #fafbff;
    display: flex;
    flex-direction: column;
    gap: .2rem;
}

.sb-row {
    display: flex;
    align-items: center;
    gap: .55rem;
    padding: .45rem .6rem;
    border-radius: 8px;
    font-size: .8rem;
    color: var(--text);
    cursor: pointer;
    transition: background .15s;
}

.sb-row:hover { background: var(--primary-light); }
.sb-row i { font-size: .9rem; color: var(--muted); }

.sb-badge {
    margin-left: auto;
    background: var(--primary-light);
    color: var(--primary);
    font-size: .6rem;
    font-weight: 700;
    padding: 1px 6px;
    border-radius: 20px;
}

.sb-badge.red { background: #fff0f0; color: #e53e3e; }

.sb-section-title {
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--muted);
    padding: .8rem .6rem .3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sb-project-row {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .4rem .6rem;
    border-radius: 8px;
    font-size: .78rem;
    color: var(--text);
    cursor: pointer;
}

.sb-project-row:hover { background: var(--primary-light); }

.proj-dot {
    width: 8px; height: 8px;
    border-radius: 2px;
    flex-shrink: 0;
}

.sb-friend-row {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .35rem .6rem;
    border-radius: 8px;
    font-size: .78rem;
    cursor: pointer;
}

.friend-av {
    width: 22px; height: 22px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: .55rem;
    color: #fff;
    font-weight: 700;
    flex-shrink: 0;
}

/* Main content */
.app-main {
    padding: 1.4rem 1.5rem;
    background: #fff;
    overflow: hidden;
}

.app-main-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: .15rem;
}

.app-main-sub {
    font-size: .78rem;
    color: var(--muted);
    margin-bottom: 1rem;
}

/* Toolbar */
.app-toolbar {
    display: flex;
    align-items: center;
    gap: .6rem;
    margin-bottom: 1.2rem;
}

.tb-add-btn {
    width: 30px; height: 30px;
    background: var(--primary);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-size: .85rem;
    flex-shrink: 0;
}

.tb-view-btn {
    display: flex;
    align-items: center;
    gap: .25rem;
    font-size: .78rem;
    color: var(--muted);
    padding: .2rem .5rem;
    border-radius: 6px;
    cursor: pointer;
    transition: background .15s, color .15s;
}

.tb-view-btn:hover, .tb-view-btn.active { background: var(--primary-light); color: var(--primary); }
.tb-view-btn i { font-size: .75rem; }

.tb-search {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: .4rem;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: .3rem .7rem;
    font-size: .76rem;
    color: var(--muted);
}

/* Kanban columns */
.kanban-board {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    overflow-x: auto;
}

.kanban-col-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: .75rem;
}

.kanban-col-title {
    font-size: .82rem;
    font-weight: 700;
    color: var(--text);
}

.kanban-add {
    width: 20px; height: 20px;
    border-radius: 5px;
    background: var(--primary-light);
    color: var(--primary);
    display: flex; align-items: center; justify-content: center;
    font-size: .8rem;
    cursor: pointer;
}

.k-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: .75rem;
    margin-bottom: .6rem;
}

.k-card-title {
    font-size: .78rem;
    font-weight: 700;
    margin-bottom: .25rem;
    color: var(--text);
}

.k-card-desc {
    font-size: .7rem;
    color: var(--muted);
    line-height: 1.5;
    margin-bottom: .5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.k-tags {
    display: flex;
    gap: .3rem;
    flex-wrap: wrap;
    margin-bottom: .5rem;
}

.k-tag {
    font-size: .6rem;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 20px;
}

.tag-low    { background: #fff7e0; color: #c97a00; }
.tag-high   { background: #ffe9e9; color: #e53e3e; }
.tag-mid    { background: #e8fff3; color: #16a34a; }
.tag-hifi   { background: #f0f0ff; color: #6366f1; }

.k-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: .4rem;
}

.k-avs {
    display: flex;
}

.k-av {
    width: 20px; height: 20px;
    border-radius: 50%;
    border: 1.5px solid #fff;
    margin-left: -5px;
    font-size: .5rem;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-weight: 700;
}

.k-av:first-child { margin-left: 0; }

.k-comment {
    font-size: .68rem;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: .2rem;
}

.k-progress-wrap {
    margin: .4rem 0 .2rem;
}

.k-progress-bar {
    height: 4px;
    border-radius: 4px;
    background: var(--border);
    position: relative;
    overflow: hidden;
    margin-bottom: .2rem;
}

.k-progress-fill {
    position: absolute;
    top: 0; left: 0;
    height: 100%;
    border-radius: 4px;
}

.k-progress-label {
    font-size: .65rem;
    color: var(--muted);
    text-align: right;
}

.btn-hero-outline {
    background: transparent;
    color: var(--text);
    font-weight: 600;
    padding: .75rem 1.6rem;
    border-radius: 12px;
    border: 1.5px solid var(--border);
    transition: all .2s;
    font-size: .95rem;
    display: flex;
    align-items: center;
    gap: .4rem;
}

.btn-hero-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-light);
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

/* ── STATS ── */
.stats-section {
    padding: 3rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.stat-item { text-align: center; }

.stat-number {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-family: "Jost-Medium";
    color: var(--primary);
    line-height: 1;
    margin-bottom: .25rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--muted);
    font-family: "Jost-Regular";
}

/* ── FEATURES ── */
.features-section {
    padding: 80px 0;
    background: var(--card-bg);
}
.section-eyebrow {
    font-family: "Jost-SemiBold";
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--primary);
    margin-bottom: .75rem;
}
.section-title {
    font-family: "Jost-Regular";
    font-size: clamp(1.6rem, 3.5vw, 2.5rem);
    color: var(--dark);
}
.section-title span{
    font-family: "Jost-Medium";
    color: #0068b4;
}
.section-subtitle {
    color: var(--muted);
    font-size: 1rem;
    margin: .5rem auto 0;
    line-height: 1.7;
}

.feature-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 1.3rem;
    height: 100%;
    transition: transform .22s, box-shadow .22s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(26,107,255,.1);
}

.feature-card .feature-cardHdng{
    font-family: 'Jost-Medium';
    color: #000;
    margin-bottom: 4px;
}
.feature-card .feature-cardTxt{
    font-family: 'Jost-Regular';
    color: #6b7292;
    font-size: 0.9rem;
}

.feature-card .feature-cardImgs{
    width: 100%;
}
.feature-card .cardimgarea{
    background: linear-gradient(135deg, #c8d8ff, #e0ebff);
    border-radius: 12px;
    aspect-ratio: 4 / 3;
    /* display: flex; */
    align-items: center;
    justify-content: center;
    padding: 10px 10px 0px 10px;
}
.feature-card .cardimgarea img.feature-cardImgs{
    border-radius: 10px;
}

.feature-card .cardimgarea .maillinks{
    margin-top: 7px;
    font-size: 0.8rem;
}


.feature-icon {
    width: 52px; height: 52px;
    background: var(--primary-light);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.feature-card h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: .5rem;
}

.feature-card p {
    font-size: .88rem;
    color: var(--muted);
    margin: 0;
    line-height: 1.65;
}

.toggle-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .4rem 0;
    border-bottom: 1px solid var(--border);
}

.toggle-row:last-child { border: none; }

.toggle-label {
    font-size: .82rem;
    color: var(--text);
    font-family: 'Jost-Regular';
}

.toggle-fake {
    width: 32px; 
    height: 17px;
    border-radius: 20px;
    position: relative;
    flex-shrink: 0;
}

.toggle-on  { background: var(--accent); }
.toggle-off { background: #d0d4e8; }

.toggle-knob {
    width: 13px; height: 13px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    top: 2px;
    transition: left .2s;
}

.toggle-on .toggle-knob  { left: 17px; }
.toggle-off .toggle-knob { left: 2px; }



/* ── FAQ ── */
.faq-section {
    padding: 5rem 0;
    background: var(--white);
}

.accordion-item {
    border: 1px solid var(--border) !important;
    border-radius: 14px !important;
    overflow: hidden;
    margin-bottom: .75rem;
}

.accordion-button {
    font-size: .95rem;
    /* font-weight: 600; */
    color: var(--text) !important;
    background: var(--white) !important;
    padding: 1.1rem 1.3rem;
    font-family: 'Jost-Medium';
}

.accordion-button:not(.collapsed) {
    color: var(--primary) !important;
    box-shadow: none !important;
}

.accordion-button::after {
    filter: none;
}

.accordion-body {
    font-size: .9rem;
    color: var(--muted);
    line-height: 1.7;
    padding: 0 1.3rem 1.1rem;
    font-family: 'Jost-Regular';
}

/* ── CTA ── */
.cta-section {
    background: linear-gradient(135deg, #1a6bff 0%, #0049e0 50%, #003ab5 100%);
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 50% 0%, rgba(255,255,255,.12) 0%, transparent 60%);
}

.cta-section h2 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: .75rem;
    letter-spacing: -.02em;
}

.cta-section p {
    color: rgba(255,255,255,.75);
    margin-bottom: 2rem;
    font-size: 1rem;
}

.btn-cta-white {
    background: #fff;
    color: var(--primary);
    font-family: "Jost-SemiBold";
    padding: .8rem 2.2rem;
    border-radius: 12px;
    border: none;
    font-size: 1rem;
    transition: all .2s;
    box-shadow: 0 6px 24px rgba(0,0,0,.18);
}

.btn-cta-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(0,0,0,.24);
    color: var(--primary-dark);
}


/* ── ANIMATIONS ── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

.fade-up { opacity: 0; animation: fadeUp .6s ease forwards; }
.delay-1 { animation-delay: .1s; }
.delay-2 { animation-delay: .2s; }
.delay-3 { animation-delay: .3s; }
.delay-4 { animation-delay: .4s; }

/* ── RESPONSIVE ── */
@media (max-width: 767px) {
    .hero-float-icon { display: none; }
    .app-body { grid-template-columns: 1fr; }
    .app-sidebar { display: none; }
    .kanban-board { grid-template-columns: repeat(2, minmax(160px, 1fr)); }
    .app-topbar-mid { display: none; }
    .revol-img-placeholder { height: 250px; }
}

@media (max-width: 575px) {
    .stat-number { font-size: 1.8rem; }
    .preview-imgs { grid-template-columns: 1fr; }
    .preview-img-card:first-child { aspect-ratio: 16/9; }
}


