/* =========================================================
   LIVOERA CREATIVE GROUP — Design System
   One PT, two crafts: digital (jasa web & kasir) + fisik (kerajinan kawat bulu)
   Signature: the "wire line" — a looping chenille-stem line that threads
   through every section, tying the two business units together.
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@500;600;700&family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400&family=JetBrains+Mono:wght@400;500&display=swap');

:root{
  /* --- core palette --- */
  --bg:            #F7F4EE;
  --paper:         #FFFDF9;
  --ink:           #211E1B;
  --ink-soft:      #5C564C;
  --line:          #E4DDCC;

  /* --- unit 1: Livoera Digital (jasa web & kasir) --- */
  --tech:          #1F5C6B;
  --tech-dark:     #163F4A;
  --tech-soft:     #E4F0EF;

  /* --- unit 2: Livoera Craft (kerajinan kawat bulu) --- */
  --craft:         #C13F73;
  --craft-dark:    #8E2C55;
  --craft-soft:    #FBEAF1;

  /* --- shared signature accent: the wire --- */
  --wire:          #3FB88C;
  --wire-soft:     #E3F5EC;
  --gold:          #D9A441;

  --wire-dark:     #2d8c69;

  --radius-s: 10px;
  --radius-m: 18px;
  --radius-l: 30px;

  --shadow-sm: 0 2px 10px rgba(33,30,27,.06);
  --shadow-md: 0 10px 30px rgba(33,30,27,.10);
  --shadow-lg: 0 20px 50px rgba(33,30,27,.14);

  --font-display: 'Fredoka', system-ui, sans-serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  /* smooth, elegant easing used across all motion */
  --ease: cubic-bezier(.16,1,.3,1);
  --ease-soft: cubic-bezier(.22,.61,.36,1);
}

/* =========================== focus states =========================== */
/* The browser's default focus outline is always a square-cornered box.
   On rounded elements (pill buttons, cards, nav CTA) that box pokes out
   past the curved edges and looks broken — e.g. the "Hubungi Kami" pill
   in the header. Replace it everywhere with a ring that respects each
   element's own border-radius, using box-shadow instead of outline. */
a, button, input, select, textarea{ outline:none; }
a:focus-visible, button:focus-visible,
.nav-cta:focus-visible, .btn:focus-visible{
  outline:none;
  box-shadow:0 0 0 3px var(--bg), 0 0 0 5px var(--wire);
}
.nav-links a:focus-visible{ border-radius:6px; }

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; overflow-x:hidden; }
body{
  margin:0;
  background:var(--bg);
  color:var(--ink);
  font-family:var(--font-body);
  font-size:16px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden; /* mobile fix: decorative absolutely-positioned glows
    (hero background, etc.) were widening the scrollable area and causing
    a horizontal scrollbar / side-jump on small screens */
  width:100%;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4{
  font-family:var(--font-display);
  font-weight:600;
  line-height:1.15;
  margin:0 0 .5em;
  letter-spacing:-.01em;
}
p{ margin:0 0 1em; }
.container{ max-width:1120px; margin:0 auto; padding:0 24px; }
.container-narrow{ max-width:760px; margin:0 auto; padding:0 24px; }

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *{ animation-duration:.001ms !important; transition-duration:.001ms !important; }
}

/* =========================== eyebrow / badge =========================== */
.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-family:var(--font-mono);
  font-size:12.5px;
  letter-spacing:.06em;
  text-transform:uppercase;
  color:var(--ink-soft);
  margin-bottom:14px;
}
.eyebrow::before{
  content:''; width:16px; height:2px; background:var(--wire); border-radius:2px;
}
.eyebrow.tech{ color:var(--tech); }
.eyebrow.tech::before{ background:var(--tech); }
.eyebrow.craft{ color:var(--craft); }
.eyebrow.craft::before{ background:var(--craft); }

.badge{
  display:inline-flex; align-items:center; gap:6px;
  font-family:var(--font-mono);
  font-size:11.5px;
  padding:5px 12px;
  border-radius:99px;
  background:var(--wire-soft);
  color:var(--wire);
  border:1px solid rgba(63,184,140,.25);
}
.badge.tech{ background:var(--tech-soft); color:var(--tech); border-color:rgba(31,92,107,.2); }
.badge.craft{ background:var(--craft-soft); color:var(--craft-dark); border-color:rgba(193,63,115,.2); }

/* =========================== wire divider (signature) =========================== */
.wire-divider{ width:100%; overflow:hidden; line-height:0; margin:0 0 -1px; }
.wire-divider svg{ width:100%; height:auto; display:block; }

.wire-rule{
  position:relative;
  height:26px;
  margin:0 auto;
  width:100%;
  max-width:1120px;
}
.wire-rule svg{ width:100%; height:100%; }

/* =========================== nav =========================== */
/* Note: the header itself must NEVER carry backdrop-filter/transform/filter —
   any of those on an ancestor creates a new containing block for its
   position:fixed descendants, which traps the fixed mobile menu inside the
   header's own (short) box and makes it render broken/transparent. The blur
   lives on a ::before layer instead, so .site-header stays "clean". */
.site-header{
  position:sticky; top:0; z-index:50;
}
.site-header::before{
  content:''; position:absolute; inset:0; z-index:-1;
  background:rgba(247,244,238,.86);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:16px 24px; max-width:1120px; margin:0 auto;
  position:relative;
}
.brand{
  display:flex; align-items:center; gap:10px;
  font-family:var(--font-display); font-weight:700; font-size:19px;
  color:var(--ink);
}
.brand .mark{
  width:34px; height:34px; flex:none;
}
.brand .mark path{
  stroke-dasharray:60; stroke-dashoffset:60;
  animation:draw-wire 1.1s var(--ease) .15s forwards;
}
@keyframes draw-wire{ to{ stroke-dashoffset:0; } }
.brand small{
  display:block; font-family:var(--font-mono); font-weight:400; font-size:10px;
  letter-spacing:.08em; color:var(--ink-soft); text-transform:uppercase; margin-top:1px;
}
.nav-links{
  display:flex; align-items:center; gap:28px;
  font-size:14.5px; font-weight:500;
}
.nav-links a{
  position:relative; padding:6px 0; color:var(--ink-soft);
  white-space:nowrap;
  transition:color .2s var(--ease);
}
.nav-links a::before{
  content:''; position:absolute; left:0; bottom:-2px; height:2px; width:100%;
  background:var(--wire); border-radius:2px;
  transform:scaleX(0); transform-origin:left;
  transition:transform .25s var(--ease);
}
.nav-links a:hover::before{ transform:scaleX(1); }
.nav-links a:hover, .nav-links a.active{ color:var(--ink); }
.nav-links a.active::before{
  transform:scaleX(1);
}
.nav-cta{
  display:inline-flex; align-items:center; gap:8px;
  background:linear-gradient(135deg,var(--wire),var(--wire-dark));
  color:var(--ink-soft);
  padding:12px 22px; border-radius:999px; font-weight:700; font-size:15px; line-height:1;
  white-space:nowrap; flex:none; /* never let the label wrap or get squeezed/clipped */
  border:1px solid rgba(0,0,0,.04);
  box-shadow:0 6px 16px rgba(45,140,105,.12);
  transition:background-color .25s ease, color .25s ease, transform .2s var(--ease), box-shadow .2s var(--ease);
}
.nav-cta:hover{ background:linear-gradient(135deg,var(--wire-dark),var(--wire)); transform:translateY(-1px); box-shadow:0 10px 26px rgba(45,140,105,.16); }
.nav-cta::before, .nav-links a.nav-cta::before{ content:none; display:none; } /* don't inherit the growing-underline effect */
/* Extra safeguard: make sure no underline pseudo-elements show up due to specificity or caching */
.nav-cta::before, .nav-cta::after,
.nav-links a.nav-cta::before, .nav-links a.nav-cta::after{
  content:none !important; display:none !important; width:0 !important; height:0 !important; opacity:0 !important;
}

.nav-toggle{
  display:none; background:none; border:none; cursor:pointer; padding:6px;
  position:relative; z-index:61;
}
.nav-toggle span{
  display:block; width:22px; height:2px; background:var(--ink); margin:5px 0; border-radius:2px;
  transition:transform .3s var(--ease), opacity .2s ease;
}
.nav-toggle.active span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2){ opacity:0; }
.nav-toggle.active span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

/* dim scrim behind the mobile panel */
.nav-scrim{
  display:none;
}

@media (max-width: 1040px){
  .nav-scrim{
    display:block; position:fixed; inset:0;
    background:rgba(20,18,15,.45);
    opacity:0; pointer-events:none;
    transition:opacity .35s var(--ease);
    z-index:55;
  }
  .nav-scrim.open{ opacity:1; pointer-events:auto; }

  .nav-links{
    position:fixed; top:0; right:0; bottom:0;
    width:min(78vw, 320px);
    background:var(--paper);
    flex-direction:column; align-items:flex-start; gap:0;
    padding:88px 28px 28px;
    transform:translateX(100%);
    transition:transform .4s var(--ease);
    border-left:1px solid var(--line);
    box-shadow:-18px 0 44px rgba(33,30,27,.14);
    z-index:60;
    overflow-y:auto;
  }
  .nav-links.open{ transform:translateX(0); }
  .nav-links a{
    width:100%; padding:14px 0; border-bottom:1px solid var(--line);
    opacity:0; transform:translateX(14px);
    transition:opacity .35s var(--ease), transform .35s var(--ease), color .2s ease;
  }
  .nav-links.open a{ opacity:1; transform:translateX(0); }
  .nav-links.open a:nth-child(1){ transition-delay:.06s; }
  .nav-links.open a:nth-child(2){ transition-delay:.10s; }
  .nav-links.open a:nth-child(3){ transition-delay:.14s; }
  .nav-links.open a:nth-child(4){ transition-delay:.18s; }
  .nav-links.open a:nth-child(5){ transition-delay:.22s; }
  .nav-links.open a:nth-child(6){ transition-delay:.26s; }
  .nav-links.open a:nth-child(7){ transition-delay:.30s; }
  .nav-links a::before{ display:none; }
  .nav-cta{ margin-top:14px; justify-content:center; width:100%; }
  .nav-toggle{ display:block; }
  body.no-scroll{ overflow:hidden; }
}

/* =========================== buttons =========================== */
.btn{
  display:inline-flex; align-items:center; gap:8px;
  font-weight:600; font-size:15px;
  padding:13px 24px; border-radius:99px;
  border:1px solid transparent; cursor:pointer;
  transition:transform .2s var(--ease), box-shadow .2s var(--ease), background .2s ease;
}
.btn-primary{ background:linear-gradient(135deg,#37332d,var(--ink)); color:var(--paper); box-shadow:0 6px 16px rgba(33,30,27,.18); }
.btn-primary:hover{ transform:translateY(-2px); box-shadow:0 14px 30px rgba(33,30,27,.26); }
.btn-tech{ background:linear-gradient(135deg,var(--tech),var(--tech-dark)); color:#fff; box-shadow:0 6px 16px rgba(31,92,107,.22); }
.btn-tech:hover{ transform:translateY(-2px); box-shadow:0 14px 30px rgba(31,92,107,.32); }
.btn-craft{ background:linear-gradient(135deg,var(--craft),var(--craft-dark)); color:#fff; box-shadow:0 6px 16px rgba(193,63,115,.22); }
.btn-craft:hover{ transform:translateY(-2px); box-shadow:0 14px 30px rgba(193,63,115,.3); }
.btn-outline{ background:transparent; border-color:var(--ink); color:var(--ink); }
.btn-outline:hover{ background:var(--ink); color:var(--paper); transform:translateY(-2px); }
.btn-ghost{ background:transparent; color:var(--ink); padding-left:0; padding-right:0; }
.btn-ghost::after{ content:'→'; transition:transform .15s ease; }
.btn-ghost:hover::after{ transform:translateX(4px); }

/* =========================== hero (home split) =========================== */
.hero{
  padding:64px 0 0;
  position:relative;
  overflow:hidden;
}
.hero::before{
  content:''; position:absolute; top:-40px; left:50%;
  width:900px; height:420px; max-width:140vw;
  background:radial-gradient(ellipse at center, rgba(63,184,140,.14), rgba(193,63,115,.08) 55%, transparent 75%);
  pointer-events:none; z-index:0;
  animation:hero-float 12s ease-in-out infinite;
}
.hero::after{
  content:''; position:absolute; inset:0; z-index:0; pointer-events:none;
  background-image:radial-gradient(rgba(33,30,27,.09) 1.4px, transparent 1.4px);
  background-size:26px 26px;
  -webkit-mask-image:radial-gradient(ellipse 60% 55% at 50% 10%, #000 0%, transparent 75%);
  mask-image:radial-gradient(ellipse 60% 55% at 50% 10%, #000 0%, transparent 75%);
}
@keyframes hero-float{
  0%,100%{ transform:translate(-50%,0) scale(1); }
  50%{ transform:translate(-50%,-16px) scale(1.035); }
}
.hero .container{ position:relative; z-index:1; }
.hero-intro{ text-align:center; max-width:680px; margin:0 auto 46px; }
.hero-intro h1{ font-size:clamp(34px,5vw,54px); }
.hero-intro .lede{ font-size:17.5px; color:var(--ink-soft); }
@media (max-width:600px){
  .hero{ padding:40px 0 0; }
  .hero-intro{ margin:0 auto 32px; }
}

.split{
  display:grid; grid-template-columns:1fr 1fr;
  gap:0; border-radius:var(--radius-l); overflow:hidden;
  box-shadow:var(--shadow-lg);
}
.split-panel{
  position:relative; padding:52px 40px 46px;
  min-height:360px;
  display:flex; flex-direction:column; justify-content:flex-end;
}
.split-panel{ transition:transform .3s var(--ease), box-shadow .3s var(--ease); }
.split-panel:hover{ transform:translateY(-3px); }
.split-panel.tech{ background:linear-gradient(160deg,var(--tech-dark),var(--tech)); color:#fff; }
.split-panel.craft{ background:linear-gradient(160deg,var(--craft-dark),var(--craft)); color:#fff; }
.split-panel::after{
  content:''; position:absolute; inset:0;
  background:radial-gradient(circle at 85% 10%, rgba(255,255,255,.14), transparent 55%);
  pointer-events:none;
}
.split-panel h2{ font-size:clamp(22px,2.6vw,30px); color:#fff; }
.split-panel p{ color:rgba(255,255,255,.82); font-size:15px; max-width:32ch; }
.split-panel .panel-tag{
  font-family:var(--font-mono); font-size:11.5px; letter-spacing:.08em;
  text-transform:uppercase; opacity:.8; margin-bottom:10px;
}
.split-panel .panel-link{
  display:inline-flex; align-items:center; gap:6px; margin-top:18px;
  font-weight:600; font-size:14.5px; color:#fff;
  border-bottom:1px solid rgba(255,255,255,.4); padding-bottom:2px; width:fit-content;
}
.split-panel .panel-link::after{ content:'→'; transition:transform .15s ease; }
.split-panel .panel-link:hover::after{ transform:translateX(4px); }
.split-center-mark{
  position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);
  width:64px; height:64px; z-index:5; display:none;
}

@media (max-width:760px){
  .split{ grid-template-columns:1fr; border-radius:var(--radius-m); }
  .split-panel{ min-height:260px; padding:40px 26px 36px; }
}

/* =========================== sections =========================== */
section{ padding:88px 0; }
section.tight{ padding:56px 0; }
.section-head{ max-width:620px; margin:0 0 46px; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head h2{ font-size:clamp(26px,3.4vw,38px); }
.section-head p{ color:var(--ink-soft); font-size:16.5px; }
@media (max-width:600px){
  section{ padding:56px 0; }
  section.tight{ padding:40px 0; }
  .section-head{ margin-bottom:32px; }
}

.bg-paper{ background:var(--paper); }
.bg-tech-soft{ background:var(--tech-soft); }
.bg-craft-soft{ background:var(--craft-soft); }
.bg-ink{ background:var(--ink); color:#f4f0e8; }
.bg-ink .ink-soft{ color:#b9b3a5; }

/* =========================== grids & cards =========================== */
.grid-2{ display:grid; grid-template-columns:1fr 1fr; gap:28px; }
.grid-3{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.grid-4{ display:grid; grid-template-columns:repeat(4,1fr); gap:22px; }
@media (max-width:880px){
  .grid-2,.grid-3,.grid-4{ grid-template-columns:1fr 1fr; }
}
@media (max-width:600px){
  .grid-2,.grid-3,.grid-4{ grid-template-columns:1fr; }
}

.card{
  background:var(--paper);
  border:1px solid var(--line);
  border-radius:var(--radius-m);
  padding:30px 26px;
  position:relative; overflow:hidden;
  transition:transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s ease;
}
.card::before{
  content:''; position:absolute; top:0; left:0; right:0; height:3px;
  background:linear-gradient(90deg,var(--wire),var(--gold));
  transform:scaleX(0); transform-origin:left; transition:transform .35s var(--ease);
}
.card:hover{ transform:translateY(-4px); box-shadow:var(--shadow-md); border-color:transparent; }
.card:hover::before{ transform:scaleX(1); }
.card .icon{
  width:44px; height:44px; border-radius:12px;
  display:flex; align-items:center; justify-content:center;
  margin-bottom:16px; font-size:20px;
  transition:transform .3s var(--ease);
}
.card:hover .icon{ transform:scale(1.08) rotate(-4deg); }
.card.tech .icon{ background:var(--tech-soft); color:var(--tech); }
.card.craft .icon{ background:var(--craft-soft); color:var(--craft); }
.card h3{ font-size:19px; margin-bottom:8px; }
.card p{ color:var(--ink-soft); font-size:14.5px; margin-bottom:0; }

/* stat strip */
.stats{ display:flex; flex-wrap:wrap; gap:0; border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.stat{ flex:1 1 200px; padding:28px 24px; border-right:1px solid var(--line); transition:background .2s ease; }
.stat:hover{ background:rgba(63,184,140,.05); }
.stat:last-child{ border-right:none; }
.stat .num{ font-family:var(--font-display); font-size:32px; font-weight:700; color:var(--wire); }
.stat .label{ font-size:13.5px; color:var(--ink-soft); margin-top:4px; }
@media (max-width:600px){
  /* on phones the strip wraps to 2 columns — a plain flex-wrap leaves
     stray right borders mid-row, so switch to a real grid with rules
     drawn on all four sides via outline-free border logic */
  .stats{ display:grid; grid-template-columns:1fr 1fr; border:none; }
  .stat{ border-right:1px solid var(--line); border-bottom:1px solid var(--line); padding:22px 16px; }
  .stat:nth-child(2n){ border-right:none; }
  .stat:nth-last-child(-n+2){ border-bottom:none; }
  .stat .num{ font-size:26px; }
}

/* process steps */
.steps{ display:grid; grid-template-columns:repeat(4,1fr); gap:0; position:relative; }
.step{ padding:0 20px 0 0; position:relative; }
.step .step-num{
  font-family:var(--font-mono); font-size:13px; color:var(--wire);
  border:1px solid var(--wire); border-radius:99px;
  width:30px; height:30px; display:flex; align-items:center; justify-content:center;
  margin-bottom:16px;
}
.step h4{ font-size:16.5px; margin-bottom:6px; }
.step p{ font-size:14px; color:var(--ink-soft); }
@media (max-width:880px){ .steps{ grid-template-columns:1fr 1fr; gap:32px 20px; } }
@media (max-width:560px){ .steps{ grid-template-columns:1fr; } }

/* =========================== product / craft cards =========================== */
.product-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:26px; }
@media (max-width:880px){ .product-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:560px){ .product-grid{ grid-template-columns:1fr; } }

.product-card{
  background:var(--paper); border-radius:var(--radius-m);
  overflow:hidden; border:1px solid var(--line);
  transition:transform .3s var(--ease), box-shadow .3s var(--ease);
}
.product-card:hover{ transform:translateY(-5px); box-shadow:var(--shadow-md); }
.product-photo{
  position:relative; aspect-ratio:1/1; overflow:hidden;
  background:var(--craft-soft);
}
.product-photo img{ width:100%; height:100%; object-fit:cover; transition:transform .4s ease; }
.product-card:hover .product-photo img{ transform:scale(1.06); }
.product-photo .frame-wire{
  position:absolute; inset:10px; border-radius:16px;
  pointer-events:none;
  border:2px dashed rgba(255,255,255,.55);
}
.product-body{ padding:20px 20px 24px; }
.product-body .kind{ font-family:var(--font-mono); font-size:11px; text-transform:uppercase; letter-spacing:.06em; color:var(--craft); margin-bottom:6px; }
.product-body h3{ font-size:18px; margin-bottom:6px; }
.product-body p{ font-size:14px; color:var(--ink-soft); margin-bottom:14px; }
.product-body .meta{ display:flex; justify-content:space-between; align-items:center; font-size:13px; }
.product-body .price{ font-weight:700; color:var(--ink); }

/* =========================== timeline (tentang) =========================== */
.timeline{ position:relative; padding-left:28px; border-left:2px dashed var(--wire); }
.timeline-item{ position:relative; padding-bottom:36px; }
.timeline-item:last-child{ padding-bottom:0; }
.timeline-item::before{
  content:''; position:absolute; left:-34px; top:2px;
  width:12px; height:12px; border-radius:50%; background:var(--wire);
  border:3px solid var(--bg);
}
.timeline-item .year{ font-family:var(--font-mono); font-size:12.5px; color:var(--wire); margin-bottom:4px; display:block; }
.timeline-item h4{ font-size:17px; margin-bottom:6px; }
.timeline-item p{ font-size:14.5px; color:var(--ink-soft); margin-bottom:0; }

/* =========================== quote / value block =========================== */
.value-list{ display:grid; grid-template-columns:1fr 1fr; gap:22px; }
@media (max-width:700px){ .value-list{ grid-template-columns:1fr; } }
.value-item{ display:flex; gap:16px; }
.value-item .num{ font-family:var(--font-mono); color:var(--ink-soft); font-size:13px; padding-top:3px; }
.value-item h4{ font-size:16.5px; margin-bottom:4px; }
.value-item p{ font-size:14px; color:var(--ink-soft); margin-bottom:0; }

/* =========================== tags / pricing =========================== */
.tag-row{ display:flex; flex-wrap:wrap; gap:8px; }
.tag{
  font-family:var(--font-mono); font-size:12px;
  padding:6px 12px; border-radius:99px;
  background:var(--tech-soft); color:var(--tech);
  border:1px solid rgba(31,92,107,.18);
}

.pricing-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
@media (max-width:880px){ .pricing-grid{ grid-template-columns:1fr; max-width:420px; margin:0 auto; } }
.price-card{
  background:var(--paper); border:1px solid var(--line); border-radius:var(--radius-m);
  padding:32px 26px; display:flex; flex-direction:column;
}
.price-card{ transition:transform .3s var(--ease), box-shadow .3s var(--ease); }
.price-card:hover{ transform:translateY(-4px); box-shadow:var(--shadow-md); }
.price-card.featured{ border-color:var(--tech); box-shadow:0 14px 34px rgba(31,92,107,.16); position:relative; }
.price-card.featured:hover{ box-shadow:0 20px 44px rgba(31,92,107,.22); }
.price-card.featured::before{
  content:'Paling diminati'; position:absolute; top:-13px; left:26px;
  background:var(--tech); color:#fff; font-size:11.5px; font-family:var(--font-mono);
  padding:5px 12px; border-radius:99px;
}
.price-card h3{ font-size:19px; margin-bottom:4px; }
.price-card .desc{ font-size:13.5px; color:var(--ink-soft); margin-bottom:18px; }
.price-card .amount{ font-family:var(--font-display); font-size:28px; font-weight:700; margin-bottom:2px; }
.price-card .amount span{ font-family:var(--font-body); font-size:13px; font-weight:500; color:var(--ink-soft); }
.price-card ul{ margin:18px 0 24px; display:flex; flex-direction:column; gap:10px; flex:1; }
.price-card li{ font-size:14px; display:flex; gap:8px; align-items:flex-start; }
.price-card li::before{ content:'✓'; color:var(--wire); font-weight:700; }
.bonus-note{ background:var(--craft-soft); color:var(--craft-dark); font-size:12.5px; font-weight:600; padding:9px 12px; border-radius:var(--radius-s); margin-bottom:16px; line-height:1.4; }

/* =========================== testimonial =========================== */
.testi-card{
  background:var(--paper); border:1px solid var(--line); border-radius:var(--radius-m);
  padding:32px 26px 28px; position:relative; transition:box-shadow .3s var(--ease), transform .3s var(--ease);
}
.testi-card:hover{ box-shadow:var(--shadow-md); transform:translateY(-3px); }
.testi-card::before{
  content:'"'; position:absolute; top:6px; left:24px;
  font-family:var(--font-display); font-size:52px; color:var(--wire-soft);
  line-height:1; z-index:0;
}
.testi-card p.quote{ font-size:15.5px; margin-bottom:18px; position:relative; z-index:1; }
.testi-who{ display:flex; align-items:center; gap:12px; }
.testi-avatar{
  width:38px; height:38px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-family:var(--font-display); font-weight:600; color:#fff; font-size:14px;
}
.testi-who .name{ font-weight:600; font-size:14px; }
.testi-who .role{ font-size:12.5px; color:var(--ink-soft); }

/* =========================== CTA band =========================== */
.cta-band{
  border-radius:var(--radius-l);
  padding:56px 48px;
  display:flex; align-items:center; justify-content:space-between; gap:32px;
  flex-wrap:wrap;
  position:relative; overflow:hidden;
  box-shadow:var(--shadow-lg);
}
.cta-band::after{
  content:''; position:absolute; inset:0; pointer-events:none;
  background:radial-gradient(circle at 88% -10%, rgba(255,255,255,.22), transparent 55%);
}
.cta-band h2{ font-size:clamp(24px,3vw,32px); margin-bottom:8px; color:#fff; }
.cta-band p{ color:rgba(255,255,255,.82); margin-bottom:0; }
.cta-band.tech{ background:linear-gradient(135deg,var(--tech-dark),var(--tech)); }
.cta-band.craft{ background:linear-gradient(135deg,var(--craft-dark),var(--craft)); }
.cta-band .btn{ background:#fff; color:var(--ink); flex:none; position:relative; z-index:1; }
.cta-band .btn:hover{ transform:translateY(-2px); box-shadow:0 12px 26px rgba(0,0,0,.22); }
@media (max-width:600px){
  .cta-band{ padding:40px 26px; text-align:center; justify-content:center; }
  .cta-band > div{ width:100%; }
  .cta-band .btn{ width:100%; justify-content:center; }
}

/* =========================== contact page =========================== */
.contact-grid{ display:grid; grid-template-columns:1.1fr .9fr; gap:44px; }
@media (max-width:820px){ .contact-grid{ grid-template-columns:1fr; } }
.contact-channel{
  display:flex; gap:16px; align-items:flex-start; padding:18px 0;
  border-bottom:1px solid var(--line);
}
.contact-channel:first-child{ padding-top:0; }
.contact-channel .ic{
  width:40px; height:40px; border-radius:11px; flex:none;
  background:var(--wire-soft); color:var(--wire);
  display:flex; align-items:center; justify-content:center; font-size:17px;
}
.contact-channel h4{ font-size:15.5px; margin-bottom:2px; }
.contact-channel p{ font-size:14px; color:var(--ink-soft); margin-bottom:0; }

.form-field{ margin-bottom:18px; }
.form-field label{ display:block; font-size:13.5px; font-weight:600; margin-bottom:6px; }
.form-field input, .form-field select, .form-field textarea{
  width:100%; padding:13px 14px; border-radius:12px;
  border:1px solid var(--line); background:var(--paper);
  font-family:var(--font-body); font-size:14.5px; color:var(--ink);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus{
  outline:2px solid var(--wire); outline-offset:1px; border-color:transparent;
}
.form-field textarea{ resize:vertical; min-height:110px; }

/* =========================== footer =========================== */
.site-footer{ background:var(--ink); color:#e9e4d8; padding:64px 0 28px; }
.footer-grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:36px; padding-bottom:40px; border-bottom:1px solid rgba(255,255,255,.12); }
@media (max-width:760px){ .footer-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:480px){ .footer-grid{ grid-template-columns:1fr; } }
.footer-grid h5{ font-family:var(--font-mono); font-size:11.5px; text-transform:uppercase; letter-spacing:.07em; color:#a49d8c; margin-bottom:14px; }
.footer-grid a{ display:block; font-size:14px; color:#d9d3c4; padding:6px 0; transition:color .2s ease, transform .2s var(--ease); }
.footer-grid a:hover{ color:#fff; transform:translateX(3px); }
.footer-brand .brand{ color:#fff; }
.footer-brand p{ color:#a49d8c; font-size:14px; max-width:34ch; margin-top:12px; }
.footer-bottom{ display:flex; justify-content:space-between; align-items:center; padding-top:22px; flex-wrap:wrap; gap:10px; }
.footer-bottom p{ font-size:12.5px; color:#8a8373; margin:0; }
.footer-bottom .legal-links{ display:flex; gap:18px; }
.footer-bottom .legal-links a{ font-size:12.5px; color:#8a8373; }
.footer-bottom .legal-links a:hover{ color:#fff; }

/* =========================== fade-in on scroll =========================== */
.reveal{ opacity:0; transform:translateY(18px); transition:opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in{ opacity:1; transform:translateY(0); }

/* When a grid/group itself carries .reveal, let the group appear instantly
   and cascade its children in one by one instead — reads calmer than the
   whole block sliding up as a single slab. */
.product-grid.reveal, .pricing-grid.reveal, .steps.reveal, .value-list.reveal,
.stats.reveal, .split.reveal, .grid-2.reveal, .grid-3.reveal, .grid-4.reveal{
  opacity:1; transform:none;
}
.product-grid.reveal > *, .pricing-grid.reveal > *, .steps.reveal > *, .value-list.reveal > *,
.stats.reveal > *, .split.reveal > *, .grid-2.reveal > *, .grid-3.reveal > *, .grid-4.reveal > *{
  opacity:0; transform:translateY(16px);
  transition:opacity .55s var(--ease), transform .55s var(--ease);
}
.product-grid.reveal.in > *, .pricing-grid.reveal.in > *, .steps.reveal.in > *, .value-list.reveal.in > *,
.stats.reveal.in > *, .split.reveal.in > *, .grid-2.reveal.in > *, .grid-3.reveal.in > *, .grid-4.reveal.in > *{
  opacity:1; transform:translateY(0);
}

/* Staggered timing — covers both patterns above (group animates its
   children) and pages where each card carries its own .reveal directly. */
.product-grid > :nth-child(2), .pricing-grid > :nth-child(2), .steps > :nth-child(2), .value-list > :nth-child(2),
.stats > :nth-child(2), .split > :nth-child(2), .grid-2 > :nth-child(2), .grid-3 > :nth-child(2), .grid-4 > :nth-child(2){ transition-delay:.08s; }
.product-grid > :nth-child(3), .pricing-grid > :nth-child(3), .steps > :nth-child(3), .value-list > :nth-child(3),
.stats > :nth-child(3), .split > :nth-child(3), .grid-2 > :nth-child(3), .grid-3 > :nth-child(3), .grid-4 > :nth-child(3){ transition-delay:.16s; }
.product-grid > :nth-child(4), .pricing-grid > :nth-child(4), .steps > :nth-child(4), .value-list > :nth-child(4),
.stats > :nth-child(4), .split > :nth-child(4), .grid-2 > :nth-child(4), .grid-3 > :nth-child(4), .grid-4 > :nth-child(4){ transition-delay:.24s; }
.product-grid > :nth-child(5), .pricing-grid > :nth-child(5), .steps > :nth-child(5){ transition-delay:.32s; }
.product-grid > :nth-child(6), .pricing-grid > :nth-child(6), .steps > :nth-child(6){ transition-delay:.40s; }

/* =========================== page hero (inner pages) =========================== */
.page-hero{ padding:56px 0 20px; }
.page-hero .eyebrow{ margin-bottom:16px; }
.page-hero h1{ font-size:clamp(30px,4.6vw,48px); max-width:760px; }
.page-hero .lede{ font-size:17px; color:var(--ink-soft); max-width:600px; }
.breadcrumb{ font-family:var(--font-mono); font-size:12.5px; color:var(--ink-soft); margin-bottom:18px; }
.breadcrumb a:hover{ color:var(--ink); }

/* =========================== utility =========================== */
.mt-0{ margin-top:0; } .mb-0{ margin-bottom:0; }
.text-center{ text-align:center; }
.flex{ display:flex; } .items-center{ align-items:center; } .gap-12{ gap:12px; } .gap-16{ gap:16px; }
.flex-wrap{ flex-wrap:wrap; }
.hidden-mobile{ display:block; }
@media (max-width:600px){ .hidden-mobile{ display:none; } }