  :root{
    --red:#E8432E;
    --red-dark:#D4331E;
    --pink:#EC2D7E;
    --blue:#1E88E5;
    --yellow:#FFC107;
    --green:#7CB342;
    --dark:#101B33;
    --ink:#181B2E;
    --slate:#6B7280;
    --slate-light:#9AA1AE;
    --bg:#FFFFFF;
    --bg-soft:#F6F7FB;
    --line:#ECEDF2;
  }
  *{ margin:0; padding:0; box-sizing:border-box; }
  html{ scroll-behavior:smooth; }
  body{
    font-family:'Inter', sans-serif;
    color:var(--ink);
    background:var(--bg);
    -webkit-font-smoothing:antialiased;
    overflow-x:hidden;
  }
  h1,h2,h3,.font-display{ font-family:'Poppins', sans-serif; }
  a{ text-decoration:none; color:inherit; }
  ul{ list-style:none; }
  .wrap{ max-width:1180px; margin:0 auto; padding:0 32px; }
  .btn{
    display:inline-flex; align-items:center; gap:8px;
    font-family:'Poppins',sans-serif; font-weight:600; font-size:14.5px;
    padding:13px 22px; border-radius:10px;
    transition:transform .18s ease, box-shadow .18s ease, background .18s ease;
    border:none; cursor:pointer;
  }
  .btn svg{ width:15px; height:15px; transition:transform .18s ease; }
  .btn:hover svg{ transform:translateX(3px); }
  .btn-red{ background:var(--red); color:#fff; box-shadow:0 8px 20px -6px rgba(232,67,46,.55); }
  .btn-red:hover{ background:var(--red-dark); transform:translateY(-2px); }
  .btn-pink{ background:var(--pink); color:#fff; box-shadow:0 8px 18px -6px rgba(236,45,126,.5); }
  .btn-blue{ background:var(--blue); color:#fff; box-shadow:0 8px 18px -6px rgba(30,136,229,.5); }
  .btn-yellow{ background:var(--yellow); color:#3A2A00; box-shadow:0 8px 18px -6px rgba(255,193,7,.55); }
  .btn-pink:hover,.btn-blue:hover,.btn-yellow:hover{ transform:translateY(-2px); filter:brightness(1.05); }
  .btn-outline{
    background:#fff; color:var(--ink); border:1.5px solid var(--line);
  }
  .btn-outline:hover{ border-color:var(--ink); }

  /* ---------- header ---------- */
  header{
    position:sticky; top:0; z-index:50;
    background:rgba(255,255,255,.92);
    backdrop-filter:blur(8px);
    border-bottom:1px solid var(--line);
  }
  header .wrap{
    display:flex; align-items:center; justify-content:space-between;
    padding-top:16px; padding-bottom:16px;
  }
  .brand{ display:flex; align-items:center; gap:12px; }
  .brand-mark{
    width:46px; height:46px; border-radius:50%;
    display:flex; align-items:center; justify-content:center;
    flex-shrink:0;
  }
  .brand-mark span{
    width:37px; height:37px; border-radius:50%; background:#fff;
    display:flex; align-items:center; justify-content:center;
    font-family:'Poppins',sans-serif; font-weight:800; font-size:14px;
    background: radial-gradient(circle at 35% 30%, #fff 55%, #f2f2f2 100%);
  }
  .brand-mark span b{ color:var(--red); }
  .brand-mark span i{ font-style:normal; color:var(--blue); }
  .brand-text .name{ font-family:'Poppins',sans-serif; font-weight:700; font-size:17.5px; }
  .brand-text .name em{ font-style:normal; color:var(--red); }
  .brand-text .tag{ font-size:11.5px; color:var(--slate); letter-spacing:.02em; margin-top:1px; }

  nav.main-nav{ display:flex; align-items:center; gap:34px; }
  nav.main-nav a{
    font-size:14.5px; font-weight:500; color:var(--slate);
    position:relative; padding-bottom:6px;
  }
  nav.main-nav a.active{ color:var(--ink); font-weight:600; }
  nav.main-nav a.active::after{
    content:""; position:absolute; left:0; right:0; bottom:0; height:2px; background:var(--red); border-radius:2px;
  }
  nav.main-nav a:hover{ color:var(--ink); }
  .nav-right{ display:flex; align-items:center; gap:30px; }
  .burger{
    display:none; background:none; border:none; cursor:pointer;
    color:var(--ink); padding:6px;
  }
  .burger svg{ width:24px; height:24px; }

  .mobile-nav{
    display:none; flex-direction:column; gap:2px;
    padding:8px 32px 18px; border-top:1px solid var(--line);
  }
  .mobile-nav.open{ display:flex; }
  .mobile-nav a{
    padding:12px 0; font-size:15px; font-weight:500; color:var(--slate);
    border-bottom:1px solid var(--line);
  }
  .mobile-nav a:last-child{ border-bottom:none; }
  .mobile-nav a:hover{ color:var(--ink); }

  @media (max-width:900px){
    nav.main-nav{ display:none; }
    .burger{ display:block; }
  }

  /* ---------- hero ---------- */
  .hero{
    position:relative; overflow:hidden;
    padding-top:64px; padding-bottom:0;
    background:var(--bg-soft);
  }
  .hero-grid{
    display:grid; grid-template-columns:1fr 1fr; gap:40px; align-items:center;
    position:relative; z-index:2;
  }
  .pill{
    display:inline-block; background:#FDECC8; color:#9A6B00;
    font-size:12.5px; font-weight:600; padding:8px 16px; border-radius:999px;
    margin-bottom:22px;
  }
  .hero h1{
    font-size:clamp(32px,4vw,44px); font-weight:700; line-height:1.18; letter-spacing:-.01em;
    margin-bottom:20px;
  }
  .hero h1 .hl{ color:var(--red); }
  .hero p.lead{ font-size:16px; color:var(--slate); max-width:460px; line-height:1.65; margin-bottom:30px; }
  .dot-row{ display:flex; gap:9px; margin-top:34px; }
  .dot-row span{ width:11px; height:11px; border-radius:50%; display:block; }

  .hero-visual{ position:relative; height:420px; }
  .blob-yellow{
    position:absolute; width:230px; height:230px; border-radius:50%;
    background:var(--yellow); top:-10px; left:20px; opacity:.9;
  }
  .blob-pink{
    position:absolute; width:340px; height:280px;
    background:var(--pink);
    border-radius:60% 40% 55% 45% / 55% 50% 50% 45%;
    right:-40px; bottom:-40px; opacity:.95;
  }
  .dots-pattern{
    position:absolute; top:10px; right:0; width:70px; height:70px;
    background-image:radial-gradient(var(--red) 1.6px, transparent 1.6px);
    background-size:11px 11px; opacity:.55;
  }
  .monitor{
    position:absolute; inset:38px 10px 60px 10px;
    background:#12172B; border-radius:16px; padding:14px;
    box-shadow:0 30px 60px -20px rgba(16,27,51,.35);
    z-index:3;
  }
  .monitor-screen{
    background:#fff; border-radius:8px; height:100%; padding:22px;
    display:flex; flex-direction:column; gap:14px;
    overflow:hidden;
  }
  .monitor-topbar{ display:flex; align-items:center; gap:12px; }
  .monitor-topbar .mm{ width:22px; height:22px; border-radius:50%; background:conic-gradient(from 200deg, var(--red), var(--yellow), var(--blue), var(--pink)); flex-shrink:0; }
  .monitor-topbar .mtitle{ font-family:'Poppins',sans-serif; font-size:11px; font-weight:700; }
  .monitor-topbar .mtitle em{ font-style:normal; color:var(--red); }
  .monitor-topbar .mdots{ margin-left:auto; display:flex; gap:5px; }
  .monitor-topbar .mdots span{ width:8px; height:8px; border-radius:50%; }
  .monitor-headline{ font-family:'Poppins',sans-serif; font-weight:700; font-size:15px; line-height:1.35; }
  .monitor-headline em{ font-style:normal; color:var(--red); }
  .monitor-headline i{ font-style:normal; color:var(--yellow); }
  .monitor-sub{ font-size:10.5px; color:var(--slate); line-height:1.5; max-width:220px; }
  .monitor-icons{ display:flex; gap:8px; margin-top:2px; }
  .monitor-icons .ic{ width:26px; height:26px; border-radius:7px; background:var(--bg-soft); display:flex; align-items:center; justify-content:center; }
  .monitor-icons .ic svg{ width:13px; height:13px; }
  .monitor-cards{ display:flex; gap:8px; margin-top:auto; }
  .mcard{ flex:1; background:var(--bg-soft); border-radius:9px; padding:9px; }
  .mcard .mi{ width:22px; height:22px; border-radius:50%; display:flex; align-items:center; justify-content:center; margin-bottom:6px; }
  .mcard .mi svg{ width:11px; height:11px; color:#fff; }
  .mcard .mt{ font-size:8.5px; font-weight:700; font-family:'Poppins',sans-serif; margin-bottom:2px; }
  .mcard .md{ font-size:7px; color:var(--slate-light); line-height:1.4; }
  .monitor-stand{ width:14px; height:34px; background:#20263c; margin:0 auto; }
  .monitor-base{ width:120px; height:9px; background:#d9dade; border-radius:5px; margin:0 auto; box-shadow:0 4px 10px rgba(0,0,0,.12); }
  .monitor-wrap{ position:relative; height:100%; display:flex; flex-direction:column; }

  /* ---------- layanan section ---------- */
  .section{ padding:96px 0; }
  .section-head{ text-align:center; max-width:560px; margin:0 auto 52px; position:relative; }
  .eyebrow{ font-size:12.5px; font-weight:700; color:var(--red); letter-spacing:.08em; text-transform:uppercase; margin-bottom:10px; }
  .section-head h2{ font-size:clamp(26px,3vw,34px); font-weight:700; margin-bottom:12px; }
  .section-head p{ color:var(--slate); font-size:15px; }

  .services{ position:relative; }
  .services-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:26px; }
  .card{
    background:#fff; border:1px solid var(--line); border-radius:16px; padding:32px 28px;
    transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  }
  .card:hover{ transform:translateY(-6px); box-shadow:0 22px 40px -18px rgba(16,27,51,.18); border-color:transparent; }
  .card-icon{
    width:56px; height:56px; border-radius:50%; display:flex; align-items:center; justify-content:center; margin-bottom:22px;
  }
  .card-icon svg{ width:24px; height:24px; color:#fff; }
  .card h3{ font-size:19px; font-weight:600; margin-bottom:10px; }
  .card p{ font-size:14px; color:var(--slate); line-height:1.65; margin-bottom:22px; min-height:66px; }
  .icon-pink{ background:var(--pink); }
  .icon-blue{ background:var(--blue); }
  .icon-yellow{ background:var(--yellow); }
  .card-url{ font-size:11px; color:var(--slate-light); font-family:monospace; margin-top:14px; display:block; }

  .services-more{ text-align:center; margin-top:40px; }

  /* ---------- about section ---------- */
  .about{ background:var(--bg-soft); }
  .about-grid{ display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:center; }
  .about-art{
    position:relative; border-radius:20px; overflow:hidden; height:380px;
    background:linear-gradient(160deg,#2a3352,#12172b);
  }
  .about-art svg{ width:100%; height:100%; }
  .about-blob{
    position:absolute; width:110px; height:110px; border-radius:50%;
    background:var(--red); top:-30px; left:-30px; z-index:0;
  }
  .about-blob2{
    position:absolute; width:70px; height:70px; border-radius:50%;
    background:var(--blue); bottom:-20px; right:-20px; z-index:0;
    border:6px solid #fff;
    background:transparent;
  }
  .about-text .eyebrow{ margin-bottom:12px; }
  .about-text h2{ font-size:clamp(24px,3vw,32px); font-weight:700; margin-bottom:18px; line-height:1.25; }
  .about-text h2 .hl{ color:var(--red); }
  .about-text h2 .hl2{ color:var(--yellow); }
  .about-text p{ color:var(--slate); font-size:15px; line-height:1.75; margin-bottom:28px; max-width:480px; }

  /* ---------- stats ---------- */
  .stats{ padding-top:0; padding-bottom:96px; }
  .stats-box{
    display:grid; grid-template-columns:repeat(4,1fr); gap:0;
    background:#fff; border:1px solid var(--line); border-radius:18px;
    box-shadow:0 20px 50px -30px rgba(16,27,51,.25);
    margin-top:-30px; position:relative; z-index:5;
  }
  .stat{ padding:32px 22px; display:flex; align-items:center; gap:14px; border-right:1px solid var(--line); }
  .stat:last-child{ border-right:none; }
  .stat-icon{ width:44px; height:44px; border-radius:50%; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
  .stat-icon svg{ width:19px; height:19px; color:#fff; }
  .stat-num{ font-family:'Poppins',sans-serif; font-weight:700; font-size:21px; line-height:1; }
  .stat-label{ font-size:12px; color:var(--slate); margin-top:4px; }

  @media (max-width:900px){
    .stats-box{ grid-template-columns:repeat(2,1fr); }
    .stat{ border-bottom:1px solid var(--line); }
  }

  /* ---------- footer ---------- */
  footer{ background:var(--dark); color:#C7CBDA; padding-top:70px; }
  .footer-grid{ display:grid; grid-template-columns:1.6fr 1fr 1fr 1.2fr; gap:36px; padding-bottom:50px; border-bottom:1px solid rgba(255,255,255,.08); }
  .footer-brand .brand-text .name{ color:#fff; }
  .footer-brand .brand-text .tag{ color:#8891A6; }
  .footer-brand p{ font-size:13.5px; color:#8891A6; margin-top:16px; line-height:1.7; max-width:260px; }
  .footer-social{ display:flex; gap:10px; margin-top:20px; }
  .footer-social a{
    width:34px; height:34px; border-radius:50%; background:rgba(255,255,255,.06);
    display:flex; align-items:center; justify-content:center; transition:background .2s ease;
  }
  .footer-social a:hover{ background:var(--red); }
  .footer-social svg{ width:15px; height:15px; }
  .footer-col h4{ font-family:'Poppins',sans-serif; font-size:14px; color:#fff; margin-bottom:18px; font-weight:600; }
  .footer-col ul li{ margin-bottom:12px; }
  .footer-col ul li a{ font-size:13.5px; color:#9AA1B8; }
  .footer-col ul li a:hover{ color:#fff; }
  .footer-contact li{ display:flex; gap:10px; font-size:13.5px; color:#9AA1B8; align-items:flex-start; }
  .footer-contact svg{ width:15px; height:15px; flex-shrink:0; margin-top:2px; color:var(--red); }
  .footer-bottom{ padding:22px 0; text-align:center; font-size:12.5px; color:#7A8299; }
  .stripe{ height:5px; display:flex; }
  .stripe div{ flex:1; }

  @media (max-width:900px){
    .hero-grid{ grid-template-columns:1fr; }
    .hero-visual{ height:320px; order:-1; }
    .services-grid{ grid-template-columns:1fr; }
    .about-grid{ grid-template-columns:1fr; }
    .footer-grid{ grid-template-columns:1fr 1fr; }
  }

  :focus-visible{ outline:2px solid var(--red); outline-offset:2px; }
  @media (prefers-reduced-motion:reduce){ *{ transition:none !important; scroll-behavior:auto !important; } }
