:root {
  --bg: #f4f7fb;
  --bg2: #eaf0f8;
  --white: #fff;
  --blue: #1a5fd8;
  --blue2: #0d4bbf;
  --blue-l: #e8f0fe;
  --teal: #0ea5b8;
  --teal-l: #e0f7fa;
  --green: #16a34a;
  --green-l: #dcfce7;
  --amber: #d97706;
  --amber-l: #fef3c7;
  --text: #1a2640;
  --text2: #4a6280;
  --text3: #8aa0bc;
  --border: #dae3f0;
  --shadow: 0 2px 12px rgba(26, 95, 216, 0.08);
  --shadow-lg: 0 8px 40px rgba(26, 95, 216, 0.12);
  --font: 'Plus Jakarta Sans', sans-serif;
  --font-h: 'Sora', sans-serif;
  --r: 10px;
  --r2: 16px;
  --max: 1140px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--bg); color: var(--text); overflow-x: hidden; line-height: 1.65; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue2); }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem; height: 64px;
  background: rgba(255, 255, 255, 0.93);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 8px rgba(26, 95, 216, 0.06);
}
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo img { height: 40px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 1.75rem; list-style: none; }
.nav-links a {
  color: var(--text2); font-size: 0.87rem; font-weight: 500;
  padding: 5px 11px; border-radius: 7px;
  transition: color .2s, background .2s;
}
.nav-links a:hover { color: var(--blue); background: var(--blue-l); }
.nav-links a.active {
  color: var(--blue);
  background: var(--blue-l);
  font-weight: 600;
  border: 1px solid rgba(26,95,216,0.18);
}
.nav-right { display: flex; align-items: center; gap: 10px; }
.lang-toggle { display: flex; background: var(--bg); border: 1px solid var(--border); border-radius: 6px; overflow: hidden; }
.lang-btn { padding: 4px 10px; font-size: 0.74rem; font-weight: 700; cursor: pointer; border: none; background: transparent; color: var(--text3); transition: all .2s; font-family: var(--font); letter-spacing: .05em; }
.lang-btn.active { background: var(--blue); color: #fff; }
.btn-nav { padding: 8px 20px; background: var(--blue); color: #fff; border-radius: var(--r); font-size: 0.83rem; font-weight: 700; border: none; cursor: pointer; transition: all .2s; }
.btn-nav:hover { background: var(--blue2); color: #fff; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(26, 95, 216, .3); }

/* ── HERO ── */
.hero {
  padding: 116px 2rem 80px; text-align: center;
  background: linear-gradient(175deg, #fff 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 800px 350px at 50% -40px, rgba(26, 95, 216, .055) 0%, transparent 70%),
    radial-gradient(ellipse 350px 250px at 5% 90%, rgba(14, 165, 184, .04) 0%, transparent 60%);
  pointer-events: none;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 5px 14px; background: var(--blue-l);
  border: 1px solid rgba(26, 95, 216, .2); border-radius: 100px;
  font-size: 0.77rem; font-weight: 600; color: var(--blue); margin-bottom: 1.5rem;
}
.badge-dot { width: 6px; height: 6px; background: var(--blue); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: .4; transform: scale(.75); } }

h1 { font-family: var(--font-h); font-size: clamp(2.4rem, 7vw, 5rem); font-weight: 800; line-height: 1.08; color: var(--text); letter-spacing: -.03em; margin-bottom: 1.25rem; position: relative; }
.grad { background: linear-gradient(135deg, var(--blue), var(--teal)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; display: block; }
.hero-sub { font-size: clamp(.95rem, 2vw, 1.15rem); color: var(--text2); max-width: 540px; margin: 0 auto 2.5rem; font-weight: 400; line-height: 1.72; position: relative; }
.hero-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 3.5rem; position: relative; }

.btn-p { padding: 13px 30px; background: var(--blue); color: #fff; border-radius: var(--r); font-size: .92rem; font-weight: 700; border: none; cursor: pointer; transition: all .25s; box-shadow: 0 4px 18px rgba(26, 95, 216, .3); }
.btn-p:hover { background: var(--blue2); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(26, 95, 216, .4); color: #fff; }
.btn-o { padding: 12px 26px; background: var(--white); color: var(--text); border: 1.5px solid var(--border); border-radius: var(--r); font-size: .92rem; font-weight: 600; cursor: pointer; transition: all .25s; }
.btn-o:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-l); }

.hero-stats {
  display: inline-flex; gap: 2.5rem; flex-wrap: wrap; justify-content: center;
  padding: 1.4rem 2.5rem; background: var(--white);
  border-radius: var(--r2); border: 1px solid var(--border);
  box-shadow: var(--shadow); position: relative;
}
.stat-n { font-family: var(--font-h); font-size: 1.9rem; font-weight: 800; color: var(--blue); line-height: 1; }
.stat-n span { color: var(--teal); }
.stat-l { font-size: .7rem; color: var(--text3); text-transform: uppercase; letter-spacing: .08em; margin-top: 3px; }

/* ── SECTIONS COMMON ── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 2rem; }
.stag { display: inline-block; font-size: .7rem; text-transform: uppercase; letter-spacing: .1em; color: var(--blue); font-weight: 700; margin-bottom: .5rem; }
.stitle { font-family: var(--font-h); font-size: clamp(1.7rem, 4vw, 2.6rem); font-weight: 800; color: var(--text); line-height: 1.1; letter-spacing: -.02em; margin-bottom: .7rem; }
.ssub { color: var(--text2); font-size: .98rem; max-width: 510px; line-height: 1.7; }
.divider { width: 38px; height: 3px; background: linear-gradient(90deg, var(--blue), var(--teal)); border-radius: 2px; margin: .9rem 0; }

/* ── SCREENSHOTS ── */
.ss-sect { padding: 80px 0; }
.ss-tabs { display: flex; gap: 8px; margin-bottom: 1.75rem; flex-wrap: wrap; }
.ss-tab { padding: 7px 17px; border-radius: 8px; border: 1.5px solid var(--border); background: var(--white); color: var(--text2); font-size: .82rem; font-weight: 600; cursor: pointer; transition: all .2s; font-family: var(--font); }
.ss-tab.active { background: var(--blue); color: #fff; border-color: var(--blue); }
.ss-tab:hover:not(.active) { border-color: var(--blue); color: var(--blue); }

.ss-frame { background: var(--white); border-radius: var(--r2); border: 1px solid var(--border); overflow: hidden; box-shadow: var(--shadow-lg); }
.ss-bar { background: #f8fafc; border-bottom: 1px solid var(--border); padding: 10px 16px; display: flex; align-items: center; gap: 8px; }
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot.r { background: #ff5f57; } .dot.y { background: #ffbd2e; } .dot.g { background: #28c840; }
.ss-bar span { margin-left: 12px; font-size: .72rem; color: var(--text3); font-family: monospace; }

/* RESPONSIVE SCREENSHOTS */
.ss-img { display: none; width: 100%; }
.ss-img.on { display: block; }
.ss-img img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
  object-position: top;
  display: block;
}

.ss-cap { padding: 12px 18px; background: var(--blue-l); border-top: 1px solid rgba(26, 95, 216, .12); font-size: .83rem; color: var(--blue); font-weight: 500; }

/* ── FEATURES ── */
.feat-sect { padding: 88px 0; background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.feat-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--r2); padding: 22px 20px; transition: all .25s; }
.feat-card:hover { background: var(--white); box-shadow: var(--shadow-lg); border-color: rgba(26, 95, 216, .2); transform: translateY(-3px); }
.ficon { width: 42px; height: 42px; border-radius: var(--r); display: flex; align-items: center; justify-content: center; font-size: 1.15rem; margin-bottom: .9rem; }
.fi-b { background: var(--blue-l); } .fi-t { background: var(--teal-l); } .fi-g { background: var(--green-l); } .fi-a { background: var(--amber-l); }
.ftitle { font-family: var(--font-h); font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: .35rem; }
.fdesc { font-size: .85rem; color: var(--text2); line-height: 1.65; }
.ftags { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 11px; }
.ftag { padding: 3px 8px; background: var(--blue-l); border-radius: 4px; font-size: .67rem; color: var(--blue); font-weight: 600; }

/* ── HOW IT WORKS ── */
.how-sect { padding: 88px 0; }
.how-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4.5rem; align-items: start; }
.step { display: flex; gap: 1rem; padding: 1.1rem 0; border-bottom: 1px solid var(--border); }
.step:last-child { border: none; }
.step-n { min-width: 38px; height: 38px; background: var(--blue-l); border-radius: 9px; display: flex; align-items: center; justify-content: center; font-family: var(--font-h); font-size: .95rem; font-weight: 800; color: var(--blue); flex-shrink: 0; }
.step h3 { font-size: .95rem; font-weight: 700; color: var(--text); margin-bottom: .28rem; }
.step p { font-size: .84rem; color: var(--text2); }
.how-info { background: var(--white); border: 1px solid var(--border); border-radius: var(--r2); padding: 26px; box-shadow: var(--shadow); }
.irow { display: flex; align-items: flex-start; gap: 13px; padding: 13px 0; border-bottom: 1px solid var(--border); }
.irow:last-child { border: none; padding-bottom: 0; }
.iicon { width: 34px; height: 34px; border-radius: 8px; background: var(--blue-l); display: flex; align-items: center; justify-content: center; font-size: .95rem; flex-shrink: 0; }
.irow h4 { font-size: .88rem; font-weight: 600; color: var(--text); margin-bottom: 1px; }
.irow p { font-size: .8rem; color: var(--text2); }

/* ── PRICING ── */
.price-sect { padding: 88px 0; background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.price-header { text-align: center; margin-bottom: 3rem; }
.price-header .divider { margin: .9rem auto; }
.price-header .ssub { margin: 0 auto; }
.price-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; max-width: 820px; margin: 0 auto; }
.pcard { background: var(--bg); border: 1.5px solid var(--border); border-radius: var(--r2); padding: 30px 26px; position: relative; transition: all .25s; }
.pcard:hover { box-shadow: var(--shadow-lg); }
.pcard.feat { background: var(--white); border: 2px solid var(--blue); box-shadow: 0 0 0 4px rgba(26, 95, 216, .06); }
.pbadge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); padding: 3px 14px; background: var(--blue); border-radius: 100px; font-size: .7rem; font-weight: 700; color: #fff; white-space: nowrap; letter-spacing: .05em; }
.picon { font-size: 1.8rem; margin-bottom: .7rem; }
.pname { font-family: var(--font-h); font-size: 1.35rem; font-weight: 800; color: var(--text); margin-bottom: .25rem; }
.ptag { font-size: .84rem; color: var(--text2); margin-bottom: 1.4rem; }
.pprice-area { margin-bottom: 1.4rem; padding-bottom: 1.4rem; border-bottom: 1px solid var(--border); }
.pprice-lbl { font-size: .72rem; color: var(--text3); text-transform: uppercase; letter-spacing: .07em; margin-bottom: .2rem; }
.pprice-val { font-size: .95rem; font-weight: 600; color: var(--blue); }
.pfeats { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 1.4rem; }
.pfeats li { display: flex; align-items: flex-start; gap: 7px; font-size: .85rem; color: var(--text2); }
.pfeats li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }
.btn-plan { width: 100%; padding: 12px; border-radius: var(--r); font-size: .87rem; font-weight: 700; cursor: pointer; transition: all .25s; border: none; font-family: var(--font); }
.btn-blue { background: var(--blue); color: #fff; box-shadow: 0 4px 14px rgba(26, 95, 216, .3); }
.btn-blue:hover { background: var(--blue2); transform: translateY(-1px); }
.btn-ghost { background: var(--white); color: var(--text); border: 1.5px solid var(--border); }
.btn-ghost:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-l); }
.price-note { text-align: center; margin-top: 1.75rem; font-size: .81rem; color: var(--text3); max-width: 640px; margin-left: auto; margin-right: auto; line-height: 1.6; }

/* ── TRUST ── */
.trust-sect { padding: 88px 0; }
.trust-header { text-align: center; margin-bottom: 2.75rem; }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.tcard { background: var(--white); border: 1px solid var(--border); border-radius: var(--r2); padding: 22px; }
.stars { color: #f59e0b; font-size: .88rem; margin-bottom: .7rem; }
.qtext { font-size: .87rem; color: var(--text); line-height: 1.72; margin-bottom: 1.2rem; }
.qauth { display: flex; align-items: center; gap: 10px; }
.avatar { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: .8rem; color: #fff; }
.av1 { background: linear-gradient(135deg, #1a5fd8, #0ea5b8); }
.av2 { background: linear-gradient(135deg, #7c3aed, #db2777); }
.av3 { background: linear-gradient(135deg, #059669, #0ea5b8); }
.aname { font-size: .84rem; font-weight: 600; color: var(--text); }
.arole { font-size: .73rem; color: var(--text3); }

/* ── CONTACT ── */
.ct-sect { padding: 88px 0; background: var(--white); border-top: 1px solid var(--border); }
.ct-inner { display: grid; grid-template-columns: 1fr 1.15fr; gap: 4.5rem; align-items: start; }
.ccards { display: flex; flex-direction: column; gap: 9px; margin-top: 1.75rem; }
.ccard { display: flex; align-items: center; gap: 11px; padding: 13px; background: var(--bg); border: 1px solid var(--border); border-radius: var(--r); }
.cicon { width: 34px; height: 34px; background: var(--blue-l); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: .95rem; }
.ccard p { font-size: .72rem; color: var(--text3); }
.ccard strong { font-size: .86rem; color: var(--text); }
.fcard { background: var(--bg); border: 1px solid var(--border); border-radius: var(--r2); padding: 28px; }
.fgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.ffield { display: flex; flex-direction: column; gap: 5px; }
.ffield.full { grid-column: 1 / -1; }
label { font-size: .73rem; text-transform: uppercase; letter-spacing: .07em; color: var(--text3); font-weight: 700; }
input, select, textarea { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--r); padding: 9px 12px; color: var(--text); font-family: var(--font); font-size: .88rem; transition: border-color .2s; outline: none; width: 100%; }
input:focus, select:focus, textarea:focus { border-color: var(--blue); }
select option { background: var(--white); }
textarea { resize: vertical; min-height: 85px; }
.hp { display: none !important; }
.consent { display: flex; align-items: flex-start; gap: 9px; font-size: .77rem; color: var(--text2); margin: 8px 0; }
.consent input { width: auto; flex-shrink: 0; margin-top: 3px; }
.btn-sub { width: 100%; padding: 13px; background: var(--blue); color: #fff; border: none; border-radius: var(--r); font-family: var(--font-h); font-size: .97rem; font-weight: 700; cursor: pointer; transition: all .25s; box-shadow: 0 4px 14px rgba(26, 95, 216, .3); margin-top: 14px; }
.btn-sub:hover { background: var(--blue2); transform: translateY(-1px); }
.fnote { font-size: .7rem; color: var(--text3); text-align: center; margin-top: 7px; }
.fsuccess { display: none; text-align: center; padding: 2rem; }
.fsuccess h3 { font-family: var(--font-h); font-size: 1.3rem; color: var(--green); margin-bottom: .4rem; }
.fsuccess p { color: var(--text2); font-size: .88rem; }

/* ── FOOTER ── */
footer { background: var(--text); padding: 56px 0 22px; }
.fgrid2 { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 3rem; margin-bottom: 2.75rem; }
.fbrand p { font-size: .83rem; color: rgba(255, 255, 255, .48); margin-top: .7rem; max-width: 270px; line-height: 1.7; }
.fcol h4 { font-size: .68rem; text-transform: uppercase; letter-spacing: .1em; color: rgba(255, 255, 255, .32); font-weight: 700; margin-bottom: .9rem; }
.fcol ul { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.fcol ul li a { font-size: .83rem; color: rgba(255, 255, 255, .57); transition: color .2s; }
.fcol ul li a:hover { color: #fff; }
.fbot { border-top: 1px solid rgba(255, 255, 255, .1); padding-top: 1.4rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.fbot p { font-size: .76rem; color: rgba(255, 255, 255, .32); }
.fleg { display: flex; gap: 1.25rem; }
.fleg a { font-size: .76rem; color: rgba(255, 255, 255, .37); }
.fleg a:hover { color: #fff; }

/* ── ANIMATIONS ── */
.fu { opacity: 0; transform: translateY(22px); transition: opacity .5s ease, transform .5s ease; }
.fu.vis { opacity: 1; transform: none; }

/* ── MOBILE ── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .feat-grid, .trust-grid { grid-template-columns: 1fr; }
  .how-inner, .ct-inner, .fgrid2, .price-grid { grid-template-columns: 1fr; }
  .fgrid { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.5rem; padding: 1.2rem 1.5rem; }
  .ss-img img { max-height: 260px; }
}