/* ============================================================
   LARISKU — Landing Page styles
   Aesthetic inspired by Tokpee: mint hero, orange CTA, red+yellow
   highlights, rounded soft cards. Brand: LARISKU flame.
   ============================================================ */

:root {
  --orange: #f26522;
  --orange-dark: #d94f14;
  --orange-soft: #fff1e9;
  --red: #e5322b;
  --yellow: #ffe94d;
  --gold: #eaa100;
  --mint-1: #e8f8ee;
  --mint-2: #d3f0dd;
  --ink: #1a1b1f;
  --body: #55606e;
  --muted: #8a93a2;
  --line: #eceff3;
  --bg-soft: #f5f6f8;
  --cream: #fdf3d2;
  --white: #ffffff;
  --radius: 18px;
  --shadow-sm: 0 2px 10px rgba(20, 25, 40, .06);
  --shadow-md: 0 12px 34px rgba(20, 25, 40, .10);
  --shadow-lg: 0 24px 60px rgba(20, 25, 40, .16);
  --maxw: 1120px;
  --font: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --script: 'Caveat', cursive;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--body);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 { color: var(--ink); line-height: 1.18; font-weight: 800; letter-spacing: -.01em; }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); }
h3 { font-size: 1.15rem; }
p { color: var(--body); }
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

/* highlight helpers */
.hl-red { color: var(--red); }
.mark {
  background: linear-gradient(transparent 55%, var(--yellow) 55%);
  padding: 0 .12em;
}
.mark-red { color: var(--red); background: linear-gradient(transparent 55%, var(--yellow) 55%); padding: 0 .12em; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--font); font-weight: 700; font-size: 1rem;
  border: none; border-radius: 12px; cursor: pointer; padding: 14px 26px;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  text-align: center;
}
.btn-cta {
  background: linear-gradient(180deg, #f77b3d, var(--orange));
  color: #fff; box-shadow: 0 10px 24px rgba(242, 101, 34, .38);
  flex-direction: column; gap: 0; padding: 15px 34px; line-height: 1.25;
}
.btn-cta small { font-weight: 500; font-size: .72rem; opacity: .9; }
.btn-cta:hover { transform: translateY(-2px); box-shadow: 0 16px 32px rgba(242, 101, 34, .48); }
.btn-gold { background: var(--gold); color: #fff; padding: 10px 20px; border-radius: 10px; }
.btn-gold:hover { transform: translateY(-1px); background: #d29200; }
.btn-ghost { background: #fff; color: var(--ink); border: 1.5px solid var(--line); }
.btn-ghost:hover { border-color: var(--orange); color: var(--orange); }
.btn-block { width: 100%; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, .88); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 66px; }
.brand { display: flex; align-items: center; gap: 9px; }
.brand img { height: 30px; width: auto; }
.brand b { font-size: 1.28rem; font-weight: 800; color: var(--ink); letter-spacing: -.02em; }
.brand span { font-size: .68rem; color: var(--muted); font-weight: 600; }
.nav-links { display: flex; gap: 26px; align-items: center; }
.nav-links a { font-weight: 600; font-size: .95rem; color: var(--body); }
.nav-links a:hover { color: var(--orange); }
.nav-actions { display: flex; gap: 12px; align-items: center; }
.nav-actions .login { font-weight: 600; font-size: .95rem; }
.nav-toggle { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; }

/* ---------- Hero ---------- */
.hero {
  background: radial-gradient(120% 90% at 50% -10%, var(--mint-2), var(--mint-1) 45%, #fff 100%);
  padding: 44px 0 60px; text-align: center;
}
.stars-row { display: flex; justify-content: center; gap: clamp(14px, 6vw, 70px); margin-bottom: 18px; flex-wrap: wrap; }
.star-quote { text-align: center; }
.star-quote .stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; }
.star-quote .q { font-family: var(--script); font-size: 1.15rem; color: #7a8595; }
.star-quote.big .q { color: var(--ink); font-weight: 700; }
.hero h1 { font-size: clamp(2.1rem, 5.4vw, 3.4rem); font-weight: 800; }
.hero .sub { max-width: 620px; margin: 18px auto 0; font-size: clamp(1rem, 2.2vw, 1.18rem); color: #5a6470; }

/* browser mockup */
.mock-wrap { max-width: 760px; margin: 34px auto 0; }
.browser {
  background: #fff; border-radius: 16px; box-shadow: var(--shadow-lg);
  overflow: hidden; border: 1px solid #e7ebf0;
}
.browser-bar { display: flex; align-items: center; gap: 7px; padding: 12px 15px; background: #f3f5f8; border-bottom: 1px solid #e7ebf0; }
.browser-bar i { width: 11px; height: 11px; border-radius: 50%; display: inline-block; }
.browser-bar i:nth-child(1) { background: #ff5f57; }
.browser-bar i:nth-child(2) { background: #febc2e; }
.browser-bar i:nth-child(3) { background: #28c840; }
.browser-bar .url { margin-left: 10px; flex: 1; background: #fff; border-radius: 7px; font-size: .74rem; color: #98a2b3; padding: 5px 12px; text-align: left; border: 1px solid #e7ebf0; }
.browser-body { display: grid; grid-template-columns: 1.35fr 1fr; gap: 0; min-height: 300px; background: #fbfcfd; }
.mock-site { padding: 18px; border-right: 1px solid #eef1f4; }
.mock-site .mrow { height: 12px; background: #eef1f4; border-radius: 6px; margin-bottom: 10px; }
.mock-site .mgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 14px; }
.mock-site .mcard { background: #fff; border: 1px solid #eef1f4; border-radius: 10px; height: 92px; display: flex; flex-direction: column; }
.mock-site .mcard .ph { flex: 1; background: linear-gradient(135deg, #f1f4f8, #e7ecf2); border-radius: 10px 10px 0 0; }
.mock-site .mcard .pl { height: 20px; }
.mock-site .mcard .pl div { height: 6px; width: 70%; background: #eef1f4; border-radius: 4px; margin: 5px 8px; }
/* LARISKU panel mock */
.mock-panel { background: #12141c; color: #e7e9f0; padding: 16px; font-size: .78rem; }
.mp-head { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.mp-head img { height: 20px; }
.mp-head b { color: #fff; font-size: .92rem; }
.mp-head .badge { margin-left: auto; background: #f43f5e; color: #fff; font-size: .58rem; font-weight: 700; padding: 3px 8px; border-radius: 20px; }
.mp-tabs { display: flex; gap: 10px; font-size: .66rem; color: #9aa0b3; margin-bottom: 12px; flex-wrap: wrap; }
.mp-tabs .on { color: #ff6b3d; border-bottom: 2px solid #ff6b3d; padding-bottom: 3px; }
.mp-stat { background: #1b1e29; border-radius: 10px; padding: 11px 13px; margin-bottom: 8px; display: flex; justify-content: space-between; align-items: center; }
.mp-stat span { color: #9aa0b3; }
.mp-stat b { color: #fff; font-size: .92rem; }
.mp-stat b.up { color: #34d399; }
.mp-score { background: linear-gradient(135deg, #f43f5e, #f26522); border-radius: 10px; padding: 12px; text-align: center; color: #fff; margin-bottom: 8px; }
.mp-score .n { font-size: 1.6rem; font-weight: 800; line-height: 1; }
.mp-score .l { font-size: .62rem; opacity: .9; }

.hero-cta { margin: 30px 0 8px; display: flex; justify-content: center; }
.support-line { font-size: .82rem; color: var(--muted); font-weight: 600; margin-top: 22px; }
.mp-chips { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-top: 12px; }
.mp-chip {
  display: inline-flex; align-items: center; gap: 7px; background: #fff; border: 1px solid var(--line);
  border-radius: 30px; padding: 8px 16px; font-weight: 700; font-size: .86rem; color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.mp-chip .dot { width: 9px; height: 9px; border-radius: 50%; }

/* trust / social proof */
.trust { text-align: center; padding: 40px 0 10px; }
.trust p { font-weight: 600; color: var(--body); margin-bottom: 20px; }
.trust p b { color: var(--ink); }
.badge-strip { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; max-width: 760px; margin: 0 auto; }
.badge-pill {
  background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 12px 18px;
  font-weight: 700; color: var(--body); font-size: .92rem; box-shadow: var(--shadow-sm);
}

/* ---------- Section base ---------- */
section { position: relative; }
.sec { padding: 72px 0; }
.sec-soft { background: var(--bg-soft); }
.sec-mint { background: linear-gradient(180deg, #f0faf3, #e3f6ea); }
.sec-head { text-align: center; max-width: 680px; margin: 0 auto 44px; }
.sec-head .kicker { font-family: var(--script); color: var(--orange); font-size: 1.5rem; font-weight: 700; }
.sec-head h2 { margin: 4px 0 12px; }
.sec-head p { font-size: 1.05rem; color: #5a6470; }

/* pill badge (script) */
.pill {
  display: inline-flex; align-items: center; gap: 6px; background: var(--orange);
  color: #fff; font-family: var(--script); font-size: 1.15rem; font-weight: 700;
  padding: 4px 18px; border-radius: 30px; box-shadow: 0 6px 16px rgba(242, 101, 34, .3);
}

/* ---------- Sales letter ---------- */
.letter {
  max-width: 720px; margin: 0 auto; background: #fff; border: 1px solid var(--line);
  border-radius: 22px; padding: clamp(26px, 5vw, 54px); box-shadow: var(--shadow-md);
}
.letter h2 { text-align: center; margin-bottom: 26px; }
.letter h2 .quote { color: var(--orange); font-size: 2rem; }
.letter p { margin-bottom: 16px; font-size: 1.02rem; }
.letter .center-cta { text-align: center; margin: 30px 0; }
.letter .big-line { text-align: center; font-size: 1.5rem; font-weight: 800; color: var(--ink); margin: 26px 0 10px; }

/* ---------- Intro (orange) ---------- */
.intro {
  background: linear-gradient(160deg, #f97a37, var(--orange-dark));
  color: #fff; text-align: center; padding: 66px 0;
}
.intro img.flame { height: 54px; margin: 0 auto 14px; }
.intro h2 { color: #fff; }
.intro p { color: #ffe6d7; max-width: 560px; margin: 12px auto 0; }
.feat-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 34px; }
.feat-card {
  background: #fff; border-radius: 16px; padding: 26px 22px; text-align: center; box-shadow: var(--shadow-md);
}
.feat-card .ic { font-size: 1.8rem; margin-bottom: 10px; }
.feat-card h3 { color: var(--ink); margin-bottom: 8px; }
.feat-card p { color: var(--muted); font-size: .92rem; }

/* ---------- Feature showcase ---------- */
.showcase { display: grid; gap: 30px; max-width: 880px; margin: 0 auto; }
.show-block {
  background: var(--bg-soft); border-radius: 22px; padding: clamp(24px, 4vw, 44px);
  text-align: center;
}
.show-block .pill { margin-bottom: 16px; }
.show-block h3 { font-size: clamp(1.3rem, 3vw, 1.9rem); font-weight: 800; margin-bottom: 12px; }
.show-block > p { max-width: 560px; margin: 0 auto 22px; color: #5a6470; }
.show-media {
  background: #fff; border-radius: 16px; box-shadow: var(--shadow-md); padding: 18px;
  margin: 0 auto; max-width: 620px;
}

/* mock: shop stat bar */
.shopstat { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; justify-content: space-between; }
.shopstat .cell { text-align: left; min-width: 84px; }
.shopstat .cell .k { font-size: .64rem; color: var(--muted); font-weight: 600; }
.shopstat .cell .v { font-size: .96rem; font-weight: 800; color: var(--ink); }
.shopstat .omset { background: var(--orange-soft); border-radius: 12px; padding: 10px 16px; }
.shopstat .omset .v { color: var(--orange); font-size: 1.15rem; }

/* mock: product cards row */
.prodrow { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.prodmini { border: 1px solid var(--line); border-radius: 12px; overflow: hidden; text-align: left; }
.prodmini .thumb { height: 66px; background: linear-gradient(135deg, #ffe1cf, #ffd0e2); }
.prodmini .pad { padding: 9px 10px; }
.prodmini .nm { font-size: .68rem; color: var(--ink); font-weight: 600; height: 26px; overflow: hidden; }
.prodmini .pr { font-size: .82rem; font-weight: 800; color: var(--ink); margin-top: 3px; }
.prodmini .sold { font-size: .62rem; color: #16a34a; font-weight: 700; margin-top: 2px; }

/* mock: AI card */
.aicard { text-align: left; }
.aicard .aihead { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.aichip { background: #eef2ff; color: #4f46e5; font-weight: 700; font-size: .7rem; padding: 4px 10px; border-radius: 20px; }
.aicard .line { height: 9px; border-radius: 6px; background: #eef1f4; margin-bottom: 9px; }
.aicard .line.w1 { width: 92%; } .aicard .line.w2 { width: 78%; } .aicard .line.w3 { width: 86%; }
.aiverdict { display: inline-block; background: #dcfce7; color: #15803d; font-weight: 800; font-size: .74rem; padding: 5px 12px; border-radius: 8px; margin-top: 6px; }

/* mock: visual before/after */
.visualmock { display: grid; grid-template-columns: 1fr auto 1fr; gap: 12px; align-items: center; }
.vshot { border-radius: 12px; height: 120px; }
.vshot.before { background: linear-gradient(135deg, #cfe0ff, #e6ecff); position: relative; }
.vshot.before::after { content: 'sebelum'; position: absolute; bottom: 6px; left: 8px; font-size: .6rem; color: #64748b; font-weight: 700; }
.vshot.after { background: repeating-conic-gradient(#eef1f4 0% 25%, #fff 0% 50%) 50% / 18px 18px; position: relative; }
.vshot.after::after { content: 'transparan ✨'; position: absolute; bottom: 6px; left: 8px; font-size: .6rem; color: #16a34a; font-weight: 700; }
.varrow { font-size: 1.3rem; color: var(--orange); }

/* mock: keyword score */
.kwmock { display: flex; gap: 16px; align-items: center; }
.kwscore { width: 96px; height: 96px; border-radius: 50%; display: grid; place-items: center; flex-shrink: 0;
  background: conic-gradient(#f26522 0% 82%, #eef1f4 82% 100%); }
.kwscore span { width: 74px; height: 74px; border-radius: 50%; background: #fff; display: grid; place-items: center; font-weight: 800; font-size: 1.4rem; color: var(--ink); }
.kwbars { flex: 1; text-align: left; }
.kwbars .b { margin-bottom: 9px; }
.kwbars .b .lbl { display: flex; justify-content: space-between; font-size: .72rem; font-weight: 600; color: var(--body); margin-bottom: 3px; }
.kwbars .track { height: 7px; background: #eef1f4; border-radius: 6px; overflow: hidden; }
.kwbars .track i { display: block; height: 100%; background: linear-gradient(90deg, #f97a37, #f26522); border-radius: 6px; }

/* ---------- Audience ---------- */
.aud-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.aud-card { background: var(--bg-soft); border-radius: 16px; padding: 26px 22px; text-align: center; }
.aud-card .ic { font-size: 1.7rem; margin-bottom: 8px; }
.aud-card h3 { margin-bottom: 6px; }
.aud-card p { font-size: .9rem; color: var(--muted); }

/* ---------- Testimonials ---------- */
.tst-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.tst-card { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 22px; box-shadow: var(--shadow-sm); }
.tst-card .stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 10px; }
.tst-card p { font-size: .95rem; color: #444d5a; margin-bottom: 14px; }
.tst-card .who { display: flex; align-items: center; gap: 10px; }
.tst-card .av { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg, #f97a37, #f43f5e); color: #fff; display: grid; place-items: center; font-weight: 800; font-size: .9rem; }
.tst-card .who b { color: var(--ink); font-size: .9rem; }
.tst-card .who small { color: var(--muted); font-size: .78rem; }

/* ---------- Pricing ---------- */
.price-single { max-width: 470px; margin: 0 auto; }
.price-single .price-card.feat { transform: none; }
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.price-card {
  background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 28px 24px;
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
}
.price-card.feat { box-shadow: var(--shadow-lg); border: 2px solid var(--orange); transform: translateY(-8px); position: relative; z-index: 2; }
.price-card .pname { display: flex; justify-content: space-between; align-items: center; font-weight: 700; color: var(--ink); }
.price-card .save { font-size: .74rem; font-weight: 800; color: var(--red); }
.price-card .old { color: var(--muted); text-decoration: line-through; font-size: .92rem; margin-top: 14px; }
.price-card .now { font-size: 2rem; font-weight: 800; color: var(--ink); margin: 2px 0; }
.price-card .now small { font-size: .8rem; font-weight: 600; color: var(--muted); }
.price-card .per { font-size: .82rem; color: var(--body); margin-bottom: 18px; }
.price-card ul { list-style: none; margin-top: 18px; display: grid; gap: 10px; }
.price-card li { font-size: .88rem; display: flex; gap: 9px; align-items: flex-start; color: var(--body); }
.price-card li::before { content: '✓'; color: var(--orange); font-weight: 800; }

/* ---------- Guarantee ---------- */
.guarantee { background: var(--cream); text-align: center; padding: 66px 0; }
.seal {
  width: 118px; height: 118px; border-radius: 50%; margin: 0 auto 20px;
  background: radial-gradient(circle at 50% 40%, #2c2c34, #16161b);
  color: #ffd85e; display: grid; place-items: center; text-align: center; box-shadow: var(--shadow-md);
  border: 4px solid #ffd85e; line-height: 1.1;
}
.seal b { font-size: 1.8rem; font-weight: 800; display: block; }
.seal small { font-size: .58rem; letter-spacing: 1px; }
.guarantee h2 { margin-bottom: 12px; }
.guarantee p { max-width: 560px; margin: 0 auto; color: #6b5d3a; }

/* ---------- FAQ ---------- */
.faq-wrap { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer; text-align: left;
  display: flex; gap: 12px; align-items: center; padding: 18px 4px; font-family: var(--font);
  font-weight: 600; font-size: 1rem; color: var(--ink);
}
.faq-q .chev { color: var(--orange); font-weight: 800; transition: transform .2s ease; }
.faq-item.open .faq-q .chev { transform: rotate(90deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .28s ease; }
.faq-a p { padding: 0 4px 18px 28px; color: var(--body); font-size: .95rem; }

/* ---------- Footer ---------- */
.footer { padding: 54px 0 30px; text-align: center; }
.footer .brand { justify-content: center; margin-bottom: 18px; }
.footer .cta-final { margin: 0 auto 34px; display: flex; justify-content: center; }
.foot-links { display: flex; gap: 22px; justify-content: center; flex-wrap: wrap; margin-bottom: 22px; font-weight: 600; font-size: .92rem; }
.foot-links a:hover { color: var(--orange); }
.disclaimer { max-width: 640px; margin: 18px auto 0; font-size: .76rem; color: var(--muted); line-height: 1.7; }
.copyright { margin-top: 16px; font-size: .8rem; color: var(--muted); }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .browser-body { grid-template-columns: 1fr; }
  .mock-site { display: none; }
  .feat-cards, .aud-grid, .tst-grid, .prodrow { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: 1fr; }
  .price-card.feat { transform: none; }
  .aud-grid { grid-template-columns: 1fr 1fr; }
  .tst-grid { grid-template-columns: 1fr; }
  .kwmock { flex-direction: column; }
  .visualmock { grid-template-columns: 1fr; }
  .varrow { transform: rotate(90deg); }
}
@media (max-width: 560px) {
  .aud-grid { grid-template-columns: 1fr; }
  .feat-cards { grid-template-columns: 1fr; }
  .stars-row .star-quote:not(.big) { display: none; }
}
