@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #ffffff;
  --bg-soft: #f5f4fb;
  --surface: #ffffff;
  --surface-2: #f3f1fb;
  --border: #ececf4;
  --border-strong: #e2def0;
  --text: #16132e;
  --heading: #120f26;
  --muted: #6b6880;
  --muted-2: #9a96ad;
  --primary: #6a4cff;
  --primary-2: #9b6bff;
  --accent: #8b5cf6;
  --good: #1fb673;
  --grad: linear-gradient(120deg, #6a4cff 0%, #8b5cf6 55%, #b07bff 110%);
  --grad-soft: linear-gradient(135deg, rgba(106, 76, 255, 0.10), rgba(155, 107, 255, 0.05));
  --radius: 20px;
  --radius-sm: 14px;
  --shadow: 0 30px 70px -32px rgba(40, 25, 110, 0.30);
  --shadow-sm: 0 14px 34px -18px rgba(40, 25, 110, 0.22);
  --ff-display: "Plus Jakarta Sans", system-ui, sans-serif;
  --ff-body: "Inter", system-ui, sans-serif;
}

* { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* soft ambient lilac glow */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(620px 460px at 50% -8%, rgba(106, 76, 255, 0.12), transparent 62%),
    radial-gradient(520px 420px at 92% 4%, rgba(176, 123, 255, 0.10), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
main, footer, .site-header { position: relative; z-index: 1; }

h1, h2, h3, h4, h5, h6, .display-font {
  font-family: var(--ff-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.14;
  color: var(--heading);
}

a { text-decoration: none; color: inherit; }
.text-muted-2 { color: var(--muted) !important; }
.lead-muted { color: var(--muted); font-size: 1.05rem; }
::selection { background: rgba(106, 76, 255, 0.18); }

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ---------- eyebrow / section heading ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--ff-display); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--primary);
  padding: 0.4rem 0.9rem; border: 1px solid var(--border-strong); border-radius: 100px;
  background: var(--surface); box-shadow: var(--shadow-sm);
}
.section { padding: 100px 0; }
.section-title { font-size: clamp(1.9rem, 4vw, 2.9rem); margin: 1rem 0 0.75rem; }

/* ---------- buttons ---------- */
.btn { font-family: var(--ff-display); font-weight: 600; border-radius: 100px; padding: 0.72rem 1.6rem; transition: transform .18s ease, box-shadow .18s ease, background .18s ease; }
.btn:active { transform: translateY(1px); }
.btn-grad { background: var(--grad); color: #fff; border: none; box-shadow: 0 14px 30px -10px rgba(106, 76, 255, 0.55); }
.btn-grad:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 18px 40px -10px rgba(106, 76, 255, 0.7); }
.btn-ghost { background: var(--surface); color: var(--heading); border: 1px solid var(--border-strong); box-shadow: var(--shadow-sm); }
.btn-ghost:hover { background: var(--surface-2); color: var(--heading); border-color: var(--primary); }
.btn-soft { background: var(--surface-2); color: var(--heading); border: 1px solid var(--border); }
.btn-soft:hover { background: #ebe8f7; color: var(--heading); }

/* ---------- header / navbar ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background .3s ease, box-shadow .3s ease;
}
.site-header.scrolled { border-bottom-color: var(--border); background: rgba(255, 255, 255, 0.94); box-shadow: 0 8px 30px -20px rgba(40, 25, 110, 0.25); }
.brand { display: inline-flex; align-items: center; gap: 0.6rem; font-family: var(--ff-display); font-weight: 800; font-size: 1.3rem; letter-spacing: -0.03em; color: var(--heading); }
.brand-mark { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; background: var(--grad); color: #fff; font-weight: 700; box-shadow: 0 8px 18px -8px rgba(106, 76, 255, 0.7); }
.nav-links { display: flex; align-items: center; gap: 0.25rem; }
.nav-links a { font-family: var(--ff-display); font-weight: 600; font-size: 0.95rem; color: var(--muted); padding: 0.5rem 0.9rem; border-radius: 100px; transition: color .15s ease, background .15s ease; }
.nav-links a:hover, .nav-links a.active { color: var(--heading); background: var(--surface-2); }
.hamburger { background: var(--surface); border: 1px solid var(--border-strong); color: var(--heading); width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; font-size: 1.2rem; box-shadow: var(--shadow-sm); }

/* ---------- offcanvas mobile sidebar (slides left -> right) ---------- */
.offcanvas { background: #fff; color: var(--text); border-right: 1px solid var(--border); width: 300px; }
.offcanvas .offcanvas-header { border-bottom: 1px solid var(--border); }
.mobile-nav a { display: block; font-family: var(--ff-display); font-weight: 600; color: var(--muted); padding: 0.85rem 0.5rem; border-bottom: 1px solid var(--border); transition: color .15s ease, padding-left .15s ease; }
.mobile-nav a:hover, .mobile-nav a.active { color: var(--heading); padding-left: 0.9rem; }
.mobile-nav a.active { color: var(--primary); }

/* ---------- surfaces ---------- */
.card-surface { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-sm); transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.card-surface:hover { transform: translateY(-4px); border-color: var(--border-strong); box-shadow: var(--shadow); }
.glass { background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--radius); }

/* ---------- hero (centered, image-led) ---------- */
.hero { padding: 70px 0 50px; text-align: center; }
.hero h1 {font-size: clamp(2.5rem, 6vw, 3.4rem);max-width: 920px;margin-inline: auto;}
.hero .lead-muted { max-width: 600px; margin-inline: auto; }
.badge-pill { display: inline-flex; align-items: center; gap: 0.55rem; padding: 0.45rem 1rem; border-radius: 100px; background: var(--surface); border: 1px solid var(--border-strong); font-size: 0.85rem; color: var(--muted); box-shadow: var(--shadow-sm); }
.badge-pill .tag { background: var(--grad); color: #fff; font-family: var(--ff-display); font-weight: 700; font-size: 0.7rem; padding: 0.1rem 0.5rem; border-radius: 100px; }
.badge-pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--good); box-shadow: 0 0 0 4px rgba(31, 182, 115, 0.16); }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(70px); opacity: 0.5; z-index: -1; }

/* hero product window */
.hero-window { max-width: 960px; margin: 56px auto 0; border-radius: 22px; overflow: hidden; background: var(--surface); border: 1px solid var(--border); box-shadow: var(--shadow); }
.window-bar { display: flex; align-items: center; gap: 0.5rem; padding: 0.85rem 1.1rem; border-bottom: 1px solid var(--border); background: var(--surface-2); }
.window-bar .dot3 { width: 11px; height: 11px; border-radius: 50%; display: inline-block; }
.window-url { margin-left: auto; font-size: 0.78rem; color: var(--muted-2); background: var(--bg); border: 1px solid var(--border); padding: 0.2rem 0.8rem; border-radius: 100px; }

/* feature pill row */
.feature-pills { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.6rem; }
.feature-pills span { font-family: var(--ff-display); font-weight: 600; font-size: 0.9rem; color: var(--heading); background: var(--surface); border: 1px solid var(--border-strong); border-radius: 100px; padding: 0.45rem 1rem; box-shadow: var(--shadow-sm); }
.feature-pills span i { color: var(--primary); margin-right: 0.35rem; }

/* brand strip */
.brand-strip { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 2.6rem; opacity: 0.65; }
.brand-strip span { font-family: var(--ff-display); font-weight: 700; font-size: 1.2rem; color: var(--muted); }

/* ---------- service cards ---------- */
.svc-card { padding: 1.9rem; height: 100%; }
.svc-icon { width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; font-size: 1.5rem; background: var(--grad-soft); border: 1px solid var(--border-strong); color: var(--primary); margin-bottom: 1.1rem; }
.svc-card h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.svc-link { font-family: var(--ff-display); font-weight: 600; color: var(--primary); display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 0.9rem; }
.svc-link:hover { color: var(--primary); gap: 0.65rem; }

/* ---------- why choose ---------- */
.why-item { display: flex; gap: 1rem; padding: 1.5rem; }
.why-item .why-ico { flex: 0 0 auto; width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; background: var(--grad-soft); color: var(--primary); font-size: 1.25rem; border: 1px solid var(--border-strong); }
.stat-num { font-family: var(--ff-display); font-size: clamp(2rem, 5vw, 2.9rem); font-weight: 800; }

/* ---------- pricing ---------- */
.price-toggle { display: inline-flex; padding: 5px; border-radius: 100px; background: var(--surface-2); border: 1px solid var(--border); }
.price-toggle button { border: none; background: transparent; color: var(--muted); font-family: var(--ff-display); font-weight: 600; padding: 0.5rem 1.3rem; border-radius: 100px; transition: all .2s ease; }
.price-toggle button.active { background: var(--grad); color: #fff; box-shadow: 0 10px 22px -10px rgba(106,76,255,0.6); }
.price-card { padding: 2.1rem; height: 100%; display: flex; flex-direction: column; }
.price-card.featured { border-color: var(--primary); background: linear-gradient(180deg, rgba(106, 76, 255, 0.06), var(--surface)); box-shadow: 0 30px 70px -30px rgba(106, 76, 255, 0.45); }
.price-amount { font-family: var(--ff-display); font-size: 3rem; font-weight: 800; line-height: 1; color: var(--heading); }
.price-list { list-style: none; padding: 0; margin: 1.5rem 0; display: grid; gap: 0.7rem; }
.price-list li { display: flex; gap: 0.6rem; align-items: flex-start; color: var(--muted); }
.price-list li i { color: var(--good); margin-top: 3px; }

/* ---------- faq accordion ---------- */
.accordion { --bs-accordion-bg: transparent; --bs-accordion-border-color: var(--border); }
.accordion-item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm) !important; margin-bottom: 0.85rem; overflow: hidden; box-shadow: var(--shadow-sm); }
.accordion-button { background: transparent; color: var(--heading); font-family: var(--ff-display); font-weight: 600; font-size: 1.05rem; box-shadow: none; padding: 1.15rem 1.3rem; }
.accordion-button:not(.collapsed) { background: var(--surface-2); color: var(--heading); box-shadow: none; }
.accordion-button:focus { box-shadow: none; }
.accordion-body { color: var(--muted); padding-top: 0; }

/* ---------- footer ---------- */
.site-footer { border-top: 1px solid var(--border); background: var(--bg-soft); padding: 76px 0 32px; margin-top: 40px; }
.site-footer h6 { font-family: var(--ff-display); font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 1.1rem; }
.site-footer a { display: block; color: var(--muted); padding: 0.32rem 0; transition: color .15s ease; }
.site-footer a:hover { color: var(--heading); }
.footer-bottom { border-top: 1px solid var(--border); margin-top: 48px; padding-top: 24px; color: var(--muted-2); font-size: 0.9rem; }
.social-ico { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; background: var(--surface); border: 1px solid var(--border-strong); color: var(--muted); transition: all .18s ease; }
.social-ico:hover { color: var(--primary); border-color: var(--primary); transform: translateY(-2px); }

/* ---------- forms ---------- */
.form-control, .form-select { background: var(--surface); border: 1px solid var(--border-strong); color: var(--text); border-radius: var(--radius-sm); padding: 0.8rem 1rem; }
.form-control:focus, .form-select:focus { background: var(--surface); color: var(--text); border-color: var(--primary); box-shadow: 0 0 0 3px rgba(106, 76, 255, 0.16); }
.form-control::placeholder { color: var(--muted-2); }
.form-label { font-family: var(--ff-display); font-weight: 600; font-size: 0.92rem; margin-bottom: 0.45rem; color: var(--heading); }
.input-icon { position: relative; }
.input-icon > i { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--muted-2); }
.input-icon .form-control { padding-left: 2.6rem; }
.input-icon .toggle-pw { left: auto; right: 14px; cursor: pointer; }

/* ---------- auth ---------- */
.auth-wrap { min-height: 100vh; display: grid; place-items: center; padding: 32px 16px; }
.auth-card { width: 100%; max-width: 440px; padding: 2.5rem; }
.divider { display: flex; align-items: center; gap: 1rem; color: var(--muted-2); font-size: 0.85rem; margin: 1.3rem 0; }
.divider::before, .divider::after { content: ""; flex: 1; height: 1px; background: var(--border); }

/* ---------- inner page hero ---------- */
.page-hero { padding: 120px 0 60px; text-align: center; }
.breadcrumb-pill { display: inline-flex; gap: 0.5rem; color: var(--muted); font-size: 0.9rem; }
.breadcrumb-pill a:hover { color: var(--heading); }

/* ---------- cart ---------- */
.cart-item { display: flex; gap: 1rem; align-items: center; padding: 1.1rem; }
.cart-thumb { width: 76px; height: 76px; border-radius: 16px; flex: 0 0 auto; display: grid; place-items: center; font-size: 1.6rem; background: var(--grad-soft); color: var(--primary); border: 1px solid var(--border-strong); }
.qty { display: inline-flex; align-items: center; border: 1px solid var(--border-strong); border-radius: 100px; overflow: hidden; }
.qty button { background: var(--surface-2); border: none; color: var(--heading); width: 34px; height: 34px; }
.qty input { width: 42px; text-align: center; background: transparent; border: none; color: var(--heading); }
.qty input:focus { outline: none; }
.summary-row { display: flex; justify-content: space-between; padding: 0.45rem 0; color: var(--muted); }
.summary-total { border-top: 1px solid var(--border); margin-top: 0.6rem; padding-top: 0.9rem; font-family: var(--ff-display); font-weight: 700; font-size: 1.25rem; color: var(--heading); }

/* ---------- dashboard ---------- */
.dash-shell { display: grid; grid-template-columns: 264px 1fr; min-height: 100vh; background: var(--bg-soft); }
.dash-side { background: var(--surface); border-right: 1px solid var(--border); padding: 1.5rem 1rem; position: sticky; top: 0; height: 100vh; overflow-y: auto; }
.dash-main { padding: 1.6rem; }
.dash-nav a { display: flex; align-items: center; gap: 0.75rem; padding: 0.7rem 0.85rem; border-radius: 12px; color: var(--muted); font-family: var(--ff-display); font-weight: 600; margin-bottom: 0.25rem; transition: all .15s ease; }
.dash-nav a:hover { background: var(--surface-2); color: var(--heading); }
.dash-nav a.active { background: var(--grad-soft); color: var(--primary); border: 1px solid var(--border-strong); }
.dash-nav a i { font-size: 1.15rem; }
.stat-card { padding: 1.4rem; }
.stat-card .label { color: var(--muted); font-size: 0.9rem; }
.stat-card .value { font-family: var(--ff-display); font-weight: 800; font-size: 1.9rem; color: var(--heading); }
.trend-up { color: var(--good); font-size: 0.85rem; }
.project-row { display: flex; align-items: center; gap: 1rem; padding: 0.95rem 0; border-bottom: 1px solid var(--border); }
.project-row:last-child { border-bottom: none; }
.avatar { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; font-family: var(--ff-display); font-weight: 700; color: #fff; }
.progress { background: var(--surface-2); height: 8px; border-radius: 100px; }
.progress-bar { background: var(--grad); border-radius: 100px; }
.pill-tag { font-size: 0.75rem; padding: 0.25rem 0.65rem; border-radius: 100px; font-family: var(--ff-display); font-weight: 600; }
.pill-progress { background: rgba(106, 76, 255, 0.12); color: #6a4cff; }
.pill-review { background: rgba(245, 158, 11, 0.14); color: #b4730c; }
.pill-done { background: rgba(31, 182, 115, 0.14); color: #128a55; }

/* ---------- chat ---------- */
.chat-panel { display: flex; flex-direction: column; height: 560px; }
.chat-head { padding: 1rem 1.2rem; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 0.75rem; }
.chat-body { flex: 1; overflow-y: auto; padding: 1.2rem; display: flex; flex-direction: column; gap: 0.85rem; }
.msg { max-width: 78%; padding: 0.7rem 1rem; border-radius: 16px; font-size: 0.94rem; line-height: 1.5; }
.msg.them { align-self: flex-start; background: var(--surface-2); border: 1px solid var(--border); color: var(--text); border-bottom-left-radius: 5px; }
.msg.me { align-self: flex-end; background: var(--grad); color: #fff; border-bottom-right-radius: 5px; }
.msg .time { display: block; font-size: 0.7rem; opacity: 0.65; margin-top: 0.25rem; }
.chat-input { padding: 0.85rem; border-top: 1px solid var(--border); display: flex; gap: 0.6rem; }
.chat-input input { flex: 1; background: var(--surface-2); border: 1px solid var(--border); color: var(--text); border-radius: 100px; padding: 0.7rem 1.1rem; }
.chat-input input:focus { outline: none; border-color: var(--primary); }
.chat-send { width: 46px; height: 46px; border-radius: 50%; border: none; background: var(--grad); color: #fff; flex: 0 0 auto; }
.online-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--good); display: inline-block; }

.chat-fab { position: fixed; right: 22px; bottom: 22px; width: 58px; height: 58px; border-radius: 50%; background: var(--grad); color: #fff; border: none; display: grid; place-items: center; font-size: 1.4rem; z-index: 1040; box-shadow: 0 16px 40px -12px rgba(106, 76, 255, 0.7); }
.chat-fab:hover { transform: translateY(-3px); color: #fff; }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { * { scroll-behavior: auto; } .reveal { transition: none; opacity: 1; transform: none; } }

/* ---------- responsive ---------- */
@media (max-width: 991.98px) {
  .section { padding: 72px 0; }
  .dash-shell { grid-template-columns: 1fr; }
  .dash-side { position: fixed; left: 0; top: 0; z-index: 1045; transform: translateX(-100%); transition: transform .3s ease; width: 270px; }
  .dash-side.open { transform: translateX(0); }
  .dash-overlay { position: fixed; inset: 0; background: rgba(18, 15, 38, 0.4); z-index: 1044; opacity: 0; pointer-events: none; transition: opacity .3s ease; }
  .dash-overlay.show { opacity: 1; pointer-events: auto; }
}

:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; border-radius: 6px; }


/* //common */
    #cookiePopup h4 {
        font-size: 25px;
        color: #fff;
        margin-bottom: 15px;
    }
    #cookiePopup p {
        font-size: 15px;
        color: #fff;
        margin-bottom: 15px;
        letter-spacing: 1px;
        line-height: 1.5;
        max-width: 850px;
    }
    #cookiePopup p a {
        color: #fff;
        text-decoration: underline;
    }
    .cookieBtns {
        display: inline-flex;
        gap: 10px;
    }
    .cookieBtns button {
        font-size: 15px;
        margin: 10px 0;
        color: #fff;
padding: 10px 20px;
border-radius: 5px;
background: #000;
cursor: pointer;
transition: all 0.5s ease;
border: 2px solid #fff;
}
.cookieBtns button:last-child {
background-color: #fff;
color: #666 !important;
}

a.navbar-brand img {
    width: auto;
    height: 32px;
}

.payment-icons-strip img {
    width: auto;
    height: 38px;
    background: #fff;
    padding: 2px;
    border-radius: 5px;
}

h3.checkout-title {
    font-size: 24px;
    color: #7350fc;
    margin: 10px 0;
}

h3.summary-title {
    font-size: 24px;
    color: #7752fc;
    margin: 10px 0;
}

.checkout-card label {
    margin: 10px 0;
}

.order-item {
    display: flex;
    border-bottom: 1px solid #ddd;
    justify-content: space-between;
    padding: 10px 0;
}

.total-row {
    display: flex;
    justify-content: space-between;
    margin: 10px 0;
}

.d-flex {
    display: flex;
}

.terms-container input {
    width: 16px;
    height: 26px;
    margin: 0px 8px;
}

h3.sec-head {
    font-family: 'Inter';
    color: #9665f9;
    font-weight: 600;
    font-size: 32px;
}

h1.sec-head {
    font-size: 35px;
    margin: 0;
    padding: 0;
}

.prod-main-bx h4 {
    margin: 11px 0;
    font-size: 18px;
    font-weight: 600;
    margin: 20px 0;
}

.prod-main-bx-btm h5 {
    font-size: 18px;
    margin: 0;
    font-weight: 700;
}

.prod-main-bx-btm p {
    margin: 10px 0;
    font-style: italic;
    padding: 0 10px;
    border-left: 2px solid #714ffd;
}

.prod-main-bx-btm {
    margin: 30px 0;
}

.prod-main-bx p {
    background: #7752fc26;
    padding: 20px;
    font-size: 16px;
    font-style: italic;
}

section.prvcy-sec h4 {
    font-size: 18px;
    line-height: normal;
    font-weight: 600;
}

a.brand img {
    width: auto;
    height: 46px;
}

.feature-box {
    padding: 20px;
    box-shadow: 3px 5px 15px 1px #ddd;
    border-radius: 20px;
    min-height: 221px;
}

.feature-box-icon {
    display: flex;
    width: 50px;
    height: 50px;
    color: #fff;
    margin-bottom: 20px;
    justify-content: center;
    align-items: center;
    background: #7551fc;
    border-radius: 10px;
}

.feature-box-content span {
    font-size: 16px;
    font-family: 'Inter';
    color: #1b1140;
    margin: -1px 0;
}

.feature-box-content p {
    font-size: 13px;
}