:root {
  --body: #EDF1F5;
  --black: #000;
  --white: #fff;
  --theme: #007BFF;
  --header: #15171A;
  --text: #15171ACC;
  --border: #E4E9EF;
  --bg: #F8FAFC;
  --box-shadow: 0px 1px 14px 0px rgba(0, 0, 0, 0.13);
  --cube-1: cubic-bezier(0.55, 0.085, 0, 0.99);
}

* { box-sizing: border-box; }

@media (hover: hover) and (pointer: fine) {
  body { cursor: none; }
  a, button, .nav-toggle { cursor: none; }
}
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0; pointer-events: none; z-index: 10000;
  border-radius: 50%; transform: translate(-50%, -50%);
}
.cursor-dot { width: 6px; height: 6px; background: var(--theme); margin: -3px 0 0 -3px; }
.cursor-ring {
  width: 34px; height: 34px; border: 1.5px solid var(--theme); opacity: .6;
  margin: -17px 0 0 -17px; transition: width .2s, height .2s, margin .2s, opacity .2s, background .2s;
}
.cursor-ring.hover { width: 54px; height: 54px; margin: -27px 0 0 -27px; background: rgba(0,123,255,.1); opacity: 1; }

html, body { overflow-x: hidden; max-width: 100%; }
body {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text);
  background: var(--body);
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--header);
  font-weight: 700;
  margin: 0 0 16px;
}

p { margin: 0 0 12px; }
a { text-decoration: none; color: inherit; transition: .25s var(--cube-1); }
ul { padding: 0; margin: 0; list-style: none; }

.container { max-width: 1200px; }

.btn-theme {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--theme); color: #fff; border: none;
  padding: 14px 26px; border-radius: 50px; font-weight: 600;
}
.btn-theme:hover { background: #0062cc; color: #fff; }
.btn-outline-theme {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: var(--theme); border: 1px solid var(--theme);
  padding: 13px 26px; border-radius: 50px; font-weight: 600;
}
.btn-outline-theme:hover { background: var(--theme); color: #fff; }

.badge-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid var(--border);
  border-radius: 50px; padding: 6px 16px 6px 6px;
  font-size: 14px; font-weight: 500; margin-bottom: 20px;
}
.badge-pill span {
  background: var(--theme); color: #fff; border-radius: 50px;
  padding: 4px 12px; font-size: 12px; font-weight: 700;
}

.section-title { max-width: 640px; margin: 0 auto 50px; }
.section-title h2 { font-size: 42px; }

.split-title { display: block; }
.split-title .word-mask { display: inline-block; overflow: hidden; vertical-align: top; padding-bottom: .08em; }
.split-title .word { display: inline-block; will-change: transform, opacity; }

/* HEADER */
.header-section {
  position: sticky; top: 0; z-index: 999;
  background: rgba(255,255,255,.85); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; }
.logo { font-size: 24px; font-weight: 800; color: var(--header); display: inline-flex; }
.logo.light { color: #fff; }
.inline-icon { width: 16px; height: 16px; object-fit: contain; margin-right: 4px; }
.main-nav { display: flex; gap: 30px; }
.main-nav a { font-weight: 500; color: var(--header); }
.main-nav a:hover { color: var(--theme); }
.nav-toggle { background: none; border: none; font-size: 22px; z-index: 1001; position: relative; }
.nav-overlay { display: none; }

@media (max-width: 991px) {
  .main-nav {
    position: fixed; top: 0; right: 0; height: 100vh; width: min(300px, 80vw);
    background: #fff; flex-direction: column; align-items: flex-start; gap: 4px;
    padding: 90px 30px 30px; box-shadow: -10px 0 30px rgba(0,0,0,.1);
    transform: translateX(100%); transition: transform .35s var(--cube-1); z-index: 1000;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav a { padding: 12px 0; width: 100%; border-bottom: 1px solid var(--border); }
  .main-nav .btn-theme { justify-content: center; margin-top: 16px; border-bottom: none; }

  .nav-overlay {
    display: block; position: fixed; inset: 0; background: rgba(0,0,0,.35);
    opacity: 0; visibility: hidden; transition: .3s; z-index: 999;
  }
  .nav-overlay.open { opacity: 1; visibility: visible; }
}

/* HERO */
.hero-section {
  position: relative;
  padding: 100px 0 0;
  overflow: hidden;
}
.hero-section #hero-distortion {
  position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0;
}
.hero-section .container { position: relative; z-index: 1; }
.hero-content { max-width: 720px; margin: 0 auto; position: relative; }
.hero-section h1 { font-size: 50px; line-height: 1.25; max-width: 720px; margin-left: auto; margin-right: auto; white-space: nowrap; }
.hero-section p { font-size: 18px; max-width: 560px; margin: 20px auto; }
.hero-subscribe { display: flex; max-width: 460px; margin: 0 auto; background: #fff; border-radius: 50px; padding: 6px; box-shadow: var(--box-shadow); }
.hero-subscribe input { flex: 1; border: none; outline: none; padding: 0 20px; background: transparent; }
.hero-dashboard { margin-top: 60px; position: relative; display: flex; justify-content: center; }
.hero-glass {
  width: 100%; max-width: 944px; padding: 22px;
  border-radius: 28px; background: linear-gradient(135deg, rgba(255,255,255,.55), rgba(255,255,255,.15));
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,.6);
  box-shadow: var(--box-shadow), inset 0 1px 1px rgba(255,255,255,.8), inset 0 -1px 12px rgba(255,255,255,.3);
}
.hero-image { width: 100%; max-width: 100%; aspect-ratio: 1320 / 700; object-fit: cover; object-position: top; border-radius: 18px; display: block; }
.hero-shape { position: absolute; z-index: 2; pointer-events: none; border-radius: 16px; box-shadow: var(--box-shadow); }
.hero-shape.shape1 { top: -100px; left: 5%; width: 56px; animation: float-shape1 5s ease-in-out infinite; }
.hero-shape.shape2 { top: -60px; right: 6%; width: 56px; animation: float-shape2 5s ease-in-out infinite; }
@keyframes float-y { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-18px); } }
@keyframes float-shape1 { 0%,100% { transform: translateY(0) rotate(-12deg); } 50% { transform: translateY(-18px) rotate(-12deg); } }
@keyframes float-shape2 { 0%,100% { transform: translateY(0) rotate(12deg); } 50% { transform: translateY(-18px) rotate(12deg); } }
/* SERVICE */
.service-section { padding: 100px 0; }
.service-card { background: #F8FAFC; border: 1px solid var(--border); border-radius: 12px; padding: 15px; padding-bottom: 0; height: 100%; }
.service-panel, .choose-visual { position: relative; height: 370px; border-radius: 9px; overflow: hidden; background-size: cover; background-position: center; }
.choose-visual { height: auto; aspect-ratio: 986 / 840; }
.mock-card {
  position: absolute; inset: 20px; border-radius: 14px; padding: 10px;
  background: linear-gradient(135deg, rgba(255,255,255,.55), rgba(255,255,255,.15));
  backdrop-filter: blur(16px) saturate(160%); -webkit-backdrop-filter: blur(16px) saturate(160%);
  border: 1px solid rgba(255,255,255,.6);
  box-shadow: 0 20px 40px rgba(0,0,0,.14), inset 0 1px 1px rgba(255,255,255,.8);
  overflow: hidden; display: flex; align-items: center; justify-content: center;
}
.mock-card img { width: 100%; height: 100%; object-fit: contain; border-radius: 10px; display: block; }
.mock-card.fit-content { inset: auto; top: 50%; left: 50%; transform: translate(-50%, -50%); width: min(85%, 320px); aspect-ratio: 301 / 212; }
.mock-card.fit-content.archive { width: min(90%, 620px); aspect-ratio: 814 / 341; }
.mock-card.fit-content.profile { width: min(70%, 220px); aspect-ratio: 241 / 289; }
.mock-card.fit-content.choose { width: auto; height: min(90%, 580px); aspect-ratio: 986 / 840; }
.service-card .content { padding: 30px 15px; }
.service-card h4 { font-size: 28px; margin-bottom: 10px; }
.service-card p { font-size: 15px; color: var(--text); margin-bottom: 0; max-width: 360px; }
@media (max-width: 1399px) {
  .service-card h4 { font-size: 24px; }
}
@media (max-width: 991px) {
  .service-panel { height: 260px; }
}

/* CHOOSE US */
.choose-us-section { padding: 100px 0; }
.choose-item { display: flex; gap: 20px; padding: 20px 0; border-bottom: 1px solid var(--border); }
.choose-item .num { font-size: 28px; font-weight: 800; color: var(--theme); opacity: .4; }
@media (min-width: 992px) {
  .choose-visual-shift { margin-left: 50px; }
}

/* HOW IT */
.how-it-section { padding: 100px 0; }
.how-visual { position: relative; border-radius: 20px; overflow: visible; }
.how-visual-panel { position: relative; border-radius: 20px; overflow: hidden; background-size: cover; background-position: center; aspect-ratio: 1034 / 1250; }
.mock-card.fit-content.howit { width: min(88%, 600px); aspect-ratio: 1034 / 1250; }
.how-float { position: absolute; width: 56px; box-shadow: var(--box-shadow); border-radius: 14px; background: #fff; padding: 10px; animation: float-y 5s ease-in-out infinite; }
.how-float.f1 { top: 10%; left: -10px; }
.how-float.f2 { top: 45%; right: -14px; animation-delay: .5s; }
.how-float.f3 { bottom: 8%; left: 20%; animation-delay: 1s; }
.how-step { display: flex; gap: 18px; margin-bottom: 24px; }
.how-step .icon { width: 48px; height: 48px; flex-shrink: 0; border-radius: 12px; background: #E8F1FF; color: var(--theme); display: flex; align-items: center; justify-content: center; }

/* TESTIMONIAL */
.testimonial-section { padding: 100px 0; background-size: cover; background-position: center; }
.testi-card { background: #fff; border-radius: 16px; padding: 34px; box-shadow: var(--box-shadow); margin: 4px; }
.testi-author { display: flex; align-items: center; gap: 12px; margin-top: 20px; }
.testi-author .avatar { width: 44px; height: 44px; border-radius: 50%; background: #CFE3FF; object-fit: cover; display: block; }
.avatar-initial { display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 15px; }
.testi-author h6 { margin: 0; }
.testi-author small { color: #94A3B8; }

/* FAQ */
.faq-section { padding: 100px 0; }
.faq-accordion { max-width: 800px; margin: 0 auto; }
.faq-accordion .accordion-item { border: none; margin-bottom: 14px; border-radius: 12px; overflow: hidden; }
.faq-accordion .accordion-button { font-weight: 600; background: #fff; }
.faq-accordion .accordion-button:not(.collapsed) { background: var(--theme); color: #fff; }
.faq-accordion .accordion-button:focus { box-shadow: none; }

/* PRICING */
.pricing-section { padding: 100px 0; }
.price-toggle { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 16px; font-weight: 600; }
.price-toggle em { color: var(--theme); font-style: normal; }
.switch { position: relative; width: 48px; height: 26px; }
.switch input { opacity: 0; width: 0; height: 0; }
.switch .slider { position: absolute; inset: 0; background: #CBD5E1; border-radius: 50px; cursor: pointer; transition: .25s; }
.switch .slider::before { content: ""; position: absolute; width: 20px; height: 20px; left: 3px; top: 3px; background: #fff; border-radius: 50%; transition: .25s; }
.switch input:checked + .slider { background: var(--theme); }
.switch input:checked + .slider::before { transform: translateX(22px); }

.price-card { position: relative; background: #fff; border-radius: 16px; padding: 40px 30px; height: 100%; box-shadow: var(--box-shadow); text-align: center; }
.price-card.active { background: var(--theme); color: #fff; transform: scale(1.03); }
.price-card.active h4, .price-card.active .amount { color: #fff; }
.price-card .ribbon { position: absolute; top: 18px; right: 18px; background: #fff; color: var(--theme); font-size: 12px; font-weight: 700; padding: 4px 10px; border-radius: 50px; }
.price-card .price { margin: 16px 0 24px; }
.price-card .amount { font-size: 44px; font-weight: 800; color: var(--header); }
.price-card ul { margin-bottom: 28px; }
.price-card ul li { padding: 6px 0; display: flex; align-items: center; justify-content: center; gap: 8px; }
.price-card ul li img { width: 16px; height: 16px; }
.price-card.active .btn-outline-theme, .price-card.active .btn-theme { background: #fff; color: var(--theme); border-color: #fff; }
.price-card .price-note { margin: 16px 0 0; font-size: 13px; opacity: .85; line-height: 1.5; }

/* FOOTER */
.footer-section { padding: 80px 0 30px; background: var(--header); color: #94A3B8; }
.footer-logo { display: inline-flex; background: transparent; padding: 0; margin: -10px 0 10px -14px; }
.footer-logo img { display: block; }
.footer-section h6 { color: #fff; margin-bottom: 18px; }
.footer-section ul li { padding: 6px 0; }
.footer-section a:hover { color: var(--theme); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; margin-top: 50px; padding-top: 24px; border-top: 1px solid #2A2E33; flex-wrap: wrap; gap: 16px; }
.socials { display: flex; gap: 10px; }
.socials a { width: 36px; height: 36px; border-radius: 50%; background: #22262B; display: flex; align-items: center; justify-content: center; }

@media (max-width: 991px) {
  .hero-section h1 { font-size: 44px; }
  .section-title h2 { font-size: 32px; }
}
@media (max-width: 575px) {
  .hero-subscribe { flex-direction: column; border-radius: 20px; }
  .hero-subscribe input { padding: 12px 16px; }
  .dm-body { flex-direction: column; }
}
