*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --bg:        #0a0c0f;
      --bg2:       #0f1215;
      --bg3:       #141719;
      --card:      #181b1f;
      --card2:     #1d2025;
      --border:    rgba(255,255,255,0.07);
      --border2:   rgba(255,255,255,0.04);
      --txt:       #edf0f3;
      --txt2:      #7f8a96;
      --txt3:      #4a535c;
      --green:     #4ade80;
      --green2:    #86efac;
      --green-dim: rgba(74,222,128,0.08);
      --green-glow:rgba(74,222,128,0.15);
      --r-sm: 8px; --r-md: 14px; --r-lg: 20px; --r-xl: 28px;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--bg);
      color: var(--txt);
      font-size: 16px;
      line-height: 1.6;
      overflow-x: hidden;
    }

    /* ─── SCROLLBAR ─── */
    ::-webkit-scrollbar { width: 4px; }
    ::-webkit-scrollbar-track { background: var(--bg); }
    ::-webkit-scrollbar-thumb { background: var(--green); border-radius: 2px; }

    /* ─── NAV ─── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 200;
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 3rem;
      height: 72px;
      background: rgba(10,12,15,0.85);
      backdrop-filter: blur(20px) saturate(1.4);
      border-bottom: 1px solid var(--border);
      transition: all 0.3s;
    }
    .nav-logo {
      display: flex; align-items: center;
    }
    .nav-logo img {
      height: 52px;
      width: auto;
      filter: drop-shadow(0 0 12px rgba(74,222,128,0.3));
      transition: filter 0.3s;
    }
    .nav-logo img:hover {
      filter: drop-shadow(0 0 18px rgba(74,222,128,0.5));
    }

    .title-logo {
      font-family: 'Syne', sans-serif;
      font-size: 18px; font-weight: 700;
      letter-spacing: 3px; color: var(--accent-bright);
      color: #4ade80;
    }

    .nav-links {
      display: flex; gap: 2rem; align-items: center;
    }
    .nav-links a {
      font-size: 13.5px; font-weight: 400;
      color: var(--txt2); text-decoration: none;
      letter-spacing: 0.2px;
      transition: color 0.2s;
      position: relative;
    }
    .nav-links a::after {
      content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
      height: 1px; background: var(--green);
      transform: scaleX(0); transition: transform 0.2s;
    }
    .nav-links a:hover { color: var(--txt); }
    .nav-links a:hover::after { transform: scaleX(1); }
    .nav-cta {
      font-size: 13px; font-weight: 500;
      padding: 9px 22px;
      background: var(--green);
      color: #0a0c0f;
      border: none; border-radius: var(--r-sm);
      cursor: pointer;
      font-family: 'DM Sans', sans-serif;
      letter-spacing: 0.2px;
      transition: all 0.2s;
      box-shadow: 0 0 20px rgba(74,222,128,0.25);
    }
    .nav-cta:hover {
      background: var(--green2);
      box-shadow: 0 0 30px rgba(74,222,128,0.4);
      transform: translateY(-1px);
    }

    /* ─── HERO ─── */
    .hero {
      padding: 140px 3rem 100px;
      text-align: center;
      position: relative;
      overflow: hidden;
      background: var(--bg);
    }
    .hero::before {
      content: '';
      position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
      width: 900px; height: 900px;
      background: radial-gradient(circle, rgba(74,222,128,0.06) 0%, transparent 65%);
      pointer-events: none;
    }
    .hero::after {
      content: '';
      position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
      background: linear-gradient(90deg, transparent, var(--green), transparent);
      opacity: 0.3;
    }

    /* Grid lines decoration */
    .hero-grid {
      position: absolute; inset: 0; pointer-events: none;
      background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
      background-size: 60px 60px;
      mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black, transparent);
    }

    .hero-logo-wrap {
      position: relative;
      display: inline-block;
      margin-bottom: 0.5rem;
      animation: logoReveal 1s cubic-bezier(0.16,1,0.3,1) both;
    }
    .hero-logo-wrap::before {
      content: '';
      position: absolute; inset: -20px;
      background: radial-gradient(circle, rgba(74,222,128,0.12) 0%, transparent 50%);
      border-radius: 50%;
      animation: pulse 3s ease-in-out infinite;
    }
    .hero-logo {
      height: 180px;
      width: auto;
      position: relative; z-index: 1;
      filter:
        drop-shadow(0 0 20px rgba(74,222,128,0.4))
        drop-shadow(0 0 60px rgba(74,222,128,0.15));
    }

    @keyframes logoReveal {
      from { opacity: 0; transform: translateY(30px) scale(0.95); }
      to   { opacity: 1; transform: translateY(0) scale(1); }
    }
    @keyframes pulse {
      0%, 100% { opacity: 0.6; transform: scale(1); }
      50%       { opacity: 1;   transform: scale(1.05); }
    }

    .hero-badge {
      display: inline-flex; align-items: center; gap: 7px;
      font-size: 11px; font-weight: 500;
      letter-spacing: 2px; text-transform: uppercase;
      color: var(--green);
      background: var(--green-dim);
      padding: 6px 18px;
      border-radius: 99px;
      margin-bottom: 1.8rem;
      border: 1px solid rgba(74,222,128,0.2);
      animation: fadeUp 0.8s 0.3s cubic-bezier(0.16,1,0.3,1) both;
    }
    .hero-badge-dot {
      width: 6px; height: 6px; border-radius: 50%;
      background: var(--green);
      animation: blink 1.4s ease-in-out infinite;
    }
    @keyframes blink {
      0%,100% { opacity: 1; }
      50% { opacity: 0.3; }
    }

    .hero h1 {
      font-family: 'Outfit', sans-serif;
      font-size: clamp(42px, 6vw, 68px);
      font-weight: 800; line-height: 1.08;
      letter-spacing: -2px;
      color: #fff; max-width: 780px; margin: 0 auto 1.5rem;
      animation: fadeUp 0.8s 0.5s cubic-bezier(0.16,1,0.3,1) both;
    }
    .hero h1 em {
      font-style: normal;
      background: linear-gradient(135deg, var(--green) 0%, var(--green2) 100%);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .hero p {
      font-size: 18px; color: var(--txt2);
      max-width: 500px; margin: 0 auto 3rem;
      line-height: 1.8; font-weight: 300;
      animation: fadeUp 0.8s 0.65s cubic-bezier(0.16,1,0.3,1) both;
    }
    .hero-btns {
      display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
      animation: fadeUp 0.8s 0.8s cubic-bezier(0.16,1,0.3,1) both;
    }
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(20px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .btn-primary {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 15px 34px;
      background: var(--green); color: #0a0c0f;
      border: none; border-radius: var(--r-md);
      font-size: 15px; font-weight: 600;
      cursor: pointer; font-family: 'DM Sans', sans-serif;
      box-shadow: 0 0 30px rgba(74,222,128,0.3);
      transition: all 0.25s;
    }
    .btn-primary:hover {
      background: var(--green2);
      box-shadow: 0 0 45px rgba(74,222,128,0.5);
      transform: translateY(-2px);
    }
    .btn-outline {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 15px 34px;
      background: transparent; color: var(--txt2);
      border: 1px solid var(--border);
      border-radius: var(--r-md);
      font-size: 15px; font-weight: 400;
      cursor: pointer; font-family: 'DM Sans', sans-serif;
      transition: all 0.25s;
    }
    .btn-outline:hover {
      border-color: rgba(255,255,255,0.2);
      color: var(--txt);
      background: rgba(255,255,255,0.04);
    }

    /* ─── STATS STRIP ─── */
    .stats-strip {
      background: var(--bg2);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      display: flex; justify-content: center;
    }
    .stat {
      flex: 1; max-width: 240px;
      text-align: center; padding: 2.2rem 2rem;
      border-right: 1px solid var(--border);
      position: relative;
      transition: background 0.2s;
    }
    .stat:last-child { border-right: none; }
    .stat:hover { background: var(--bg3); }
    .stat-num {
      font-family: 'Outfit', sans-serif;
      font-size: 34px; font-weight: 800;
      color: var(--green);
      line-height: 1;
      letter-spacing: -1px;
    }
    .stat-label {
      font-size: 12px; color: var(--txt3);
      margin-top: 6px; letter-spacing: 0.3px;
    }

    /* ─── SECTION SHELL ─── */
    .section { padding: 7rem 3rem; }
    .section-inner { max-width: 1080px; margin: 0 auto; }
    .section-tag {
      display: inline-block;
      font-size: 10.5px; font-weight: 600;
      letter-spacing: 2.5px; text-transform: uppercase;
      color: var(--green);
      margin-bottom: 1rem;
    }
    h2.section-title {
      font-family: 'Outfit', sans-serif;
      font-size: clamp(28px, 4vw, 40px); font-weight: 700;
      color: #fff; line-height: 1.15;
      letter-spacing: -1px;
      margin-bottom: 0.75rem;
    }
    .section-sub {
      font-size: 16px; color: var(--txt2);
      max-width: 480px; line-height: 1.8;
      margin-bottom: 3.5rem; font-weight: 300;
    }

    /* ─── SERVICES ─── */
    .services-section { background: var(--bg); border-bottom: 1px solid var(--border); }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: var(--border);
      border: 1px solid var(--border);
      border-radius: var(--r-xl);
      overflow: hidden;
    }
    .svc-card {
      background: var(--card);
      padding: 2rem;
      transition: background 0.25s;
      position: relative;
      overflow: hidden;
    }
    .svc-card::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0; height: 1px;
      background: linear-gradient(90deg, transparent, var(--green), transparent);
      opacity: 0; transition: opacity 0.3s;
    }
    .svc-card:hover { background: var(--card2); }
    .svc-card:hover::before { opacity: 1; }
    .svc-icon {
      width: 48px; height: 48px;
      border-radius: var(--r-md);
      background: var(--green-dim);
      border: 1px solid rgba(74,222,128,0.15);
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 1.3rem;
      transition: all 0.25s;
    }
    .svc-card:hover .svc-icon {
      background: rgba(74,222,128,0.14);
      box-shadow: 0 0 16px rgba(74,222,128,0.2);
    }
    .svc-icon svg { width: 22px; height: 22px; stroke: var(--green); fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
    .svc-card h3 {
      font-family: 'Outfit', sans-serif;
      font-size: 15px; font-weight: 600;
      color: var(--txt); margin-bottom: 9px;
      letter-spacing: -0.3px;
    }
    .svc-card p {
      font-size: 13.5px; color: var(--txt2); line-height: 1.7; font-weight: 300;
    }

    /* ─── ABOUT ─── */
    .about-section { background: var(--bg2); border-bottom: 1px solid var(--border); }
    .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
    .about-visual {
      position: relative;
    }
    .about-logo-display {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: var(--r-xl);
      padding: 3.5rem;
      display: flex; align-items: center; justify-content: center;
      position: relative; overflow: hidden;
    }
    .about-logo-display::before {
      content: '';
      position: absolute; inset: 0;
      background: radial-gradient(circle at 50% 50%, rgba(74,222,128,0.06) 0%, transparent 70%);
    }
    .about-logo-display img {
      width: 100%;
      max-width: 340px;
      height: auto;
      filter: drop-shadow(0 0 40px rgba(74,222,128,0.3));
    }
    .about-decor {
      position: absolute; top: -1px; left: 20px; right: 20px; height: 1px;
      background: linear-gradient(90deg, transparent, var(--green), transparent);
      opacity: 0.5;
    }
    .about-text p {
      font-size: 15px; color: var(--txt2); line-height: 1.85;
      margin-bottom: 1rem; font-weight: 300;
    }
    .check-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-top: 2rem; }
    .check-list li {
      display: flex; align-items: flex-start; gap: 12px;
      font-size: 14px; color: var(--txt2); line-height: 1.5;
    }
    .check-dot {
      width: 18px; height: 18px; border-radius: 50%;
      background: var(--green-dim);
      border: 1px solid rgba(74,222,128,0.25);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0; margin-top: 1px;
    }
    .check-dot::after {
      content: '✓';
      font-size: 9px; color: var(--green); font-weight: 700;
    }

    /* ─── CONTACT ─── */
    .contact-section { background: var(--bg); }
    .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; }
    .contact-info h2 { margin-bottom: 0.75rem; }
    .contact-info p { font-size: 15px; color: var(--txt2); line-height: 1.85; margin-bottom: 2.5rem; font-weight: 300; }
    .contact-detail {
      display: flex; align-items: center; gap: 14px;
      margin-bottom: 16px;
      padding: 14px 18px;
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: var(--r-md);
      font-size: 14px; color: var(--txt2);
      transition: border-color 0.2s;
    }
    .contact-detail:hover { border-color: rgba(74,222,128,0.2); }
    .contact-detail svg { width: 16px; height: 16px; stroke: var(--green); flex-shrink: 0; }
    .contact-form {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: var(--r-xl);
      padding: 2.5rem;
    }
    .form-group { margin-bottom: 1.25rem; }
    .form-group label {
      display: block; font-size: 12px; font-weight: 500;
      letter-spacing: 0.5px; color: var(--txt3);
      margin-bottom: 6px; text-transform: uppercase;
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      background: var(--bg2);
      border: 1px solid var(--border);
      border-radius: var(--r-md);
      padding: 12px 16px;
      font-size: 14px; color: var(--txt);
      font-family: 'DM Sans', sans-serif;
      transition: border-color 0.2s;
      outline: none;
    }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: rgba(74,222,128,0.35);
      box-shadow: 0 0 0 3px rgba(74,222,128,0.07);
    }
    .form-group select { appearance: none; cursor: pointer; }
    .form-group textarea { resize: vertical; min-height: 110px; line-height: 1.6; }
    .form-group input::placeholder,
    .form-group textarea::placeholder { color: var(--txt3); }
    .form-submit {
      width: 100%; padding: 14px;
      background: var(--green); color: #0a0c0f;
      border: none; border-radius: var(--r-md);
      font-size: 15px; font-weight: 600;
      cursor: pointer; font-family: 'DM Sans', sans-serif;
      box-shadow: 0 0 20px rgba(74,222,128,0.25);
      transition: all 0.25s; margin-top: 0.5rem;
    }
    .form-submit:hover {
      background: var(--green2);
      box-shadow: 0 0 35px rgba(74,222,128,0.45);
      transform: translateY(-1px);
    }

    /* ─── FOOTER ─── */
    footer {
      background: var(--bg2);
      border-top: 1px solid var(--border);
      padding: 3rem;
      display: flex; align-items: center; justify-content: space-between;
      flex-wrap: wrap; gap: 1.5rem;
    }
    .footer-logo img {
      height: 40px; width: auto;
      filter: drop-shadow(0 0 8px rgba(74,222,128,0.2));
      opacity: 0.85;
    }


    .team {
      font-weight: bold;
    }

    .footer-copy {
      font-size: 13px; color: var(--txt3);
    }
    .footer-links {
      display: flex; gap: 1.5rem;
    }
    .footer-links a {
      font-size: 13px; color: var(--txt3);
      text-decoration: none; transition: color 0.2s;
    }
    .footer-links a:hover { color: var(--green); }

    /* ─── KOINSEP BADGE ─── */
    .koin-badge {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
      color: var(--txt3);
      background: var(--card);
      border: 1px solid var(--border);
      padding: 7px 16px; border-radius: 99px;
      margin-top: 1.5rem;
    }
    .koin-badge span { color: var(--green); }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 900px) {
      nav { padding: 0 1.5rem; }
      .nav-links { display: none; }
      .hero { padding: 120px 1.5rem 70px; }
      .hero-logo { height: 120px; }
      .services-grid { grid-template-columns: 1fr 1fr; }
      .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
      .section { padding: 5rem 1.5rem; }
      footer { padding: 2rem 1.5rem; flex-direction: column; align-items: flex-start; }
    }
    @media (max-width: 600px) {
      .services-grid { grid-template-columns: 1fr; }
      .stats-strip { flex-wrap: wrap; }
    .stat { min-width: 50%; border-right: none; border-bottom: 1px solid var(--border); }
  }