/* ============================================================
   Jakarta Web Solutions — modern site stylesheet (2026)
   Light theme · purple + green palette · single lightweight file
   ============================================================ */
:root {
  --green: #89c53f;
  --green-dark: #6ea52e;
  --green-soft: #eaf6db;
  --purple: #322b7c;
  --purple-dark: #262058;
  --purple-soft: #edeafb;
  --ink: #332f5e;
  --muted: #5f6b7a;
  --line: #e8ebf1;
  --bg: #ffffff;
  --bg-soft: #f6f7fa;
  --white: #ffffff;
  --radius: 16px;
  --shadow: 0 8px 28px rgba(50, 43, 124, .08);
  --shadow-lg: 0 20px 56px rgba(50, 43, 124, .16);
  --font: 'Poppins', 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--muted);
  background: var(--bg);
  line-height: 1.75;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; }
a { color: var(--green-dark); text-decoration: none; }
a:hover { color: var(--green); }
.container { width: min(1180px, 92%); margin-inline: auto; }

h1, h2, h3, h4 { line-height: 1.22; font-weight: 700; color: var(--purple); }
h1 { font-size: clamp(2.2rem, 4.8vw, 3.6rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); }
h3 { font-size: 1.18rem; }
h1 .accent, h2 .accent { color: var(--green); }

.eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green-dark);
  background: var(--green-soft);
  border: 1px solid rgba(137, 197, 63, .35);
  padding: .3rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.1rem;
}
.lead { font-size: 1.12rem; color: var(--muted); max-width: 46rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; height: 82px; gap: 1rem; }
.brand { display: flex; align-items: center; gap: .65rem; font-weight: 800; color: var(--purple); font-size: 1.12rem; line-height: 1.15; }
.brand img { height: 46px; width: auto; }
.brand .brand-jw { color: var(--purple); }
.brand .brand-sub { color: var(--green); }
.main-nav ul { display: flex; align-items: center; gap: 1.5rem; list-style: none; }
.main-nav a { color: var(--ink); font-weight: 600; font-size: .95rem; padding: .5rem 0; border-bottom: 3px solid transparent; }
.main-nav a:hover, .main-nav a[aria-current="page"] { color: var(--purple); border-bottom-color: var(--green); }
.nav-cta { background: var(--purple); color: #fff !important; font-weight: 600; padding: .7rem 1.5rem !important; border-radius: 10px; border-bottom: none !important; box-shadow: var(--shadow); }
.nav-cta:hover { background: var(--purple-dark); color: #fff !important; transform: translateY(-1px); }
.lang-switch { display: flex; gap: .35rem; align-items: center; font-size: .82rem; font-weight: 700; }
.lang-switch a, .lang-switch span { padding: .22rem .55rem; border-radius: 8px; }
.lang-switch .active { background: var(--green); color: #fff; }
.lang-switch a { color: var(--muted); border: 1px solid var(--line); }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: .5rem; }
.nav-toggle span { display: block; width: 24px; height: 2.5px; background: var(--purple); margin: 5px 0; border-radius: 2px; transition: .25s; }

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(700px 380px at 88% 18%, rgba(137, 197, 63, .13), transparent 65%),
    radial-gradient(600px 340px at 8% 90%, rgba(50, 43, 124, .06), transparent 60%),
    linear-gradient(180deg, #fbfcfd 0%, #f4f6f9 100%);
  padding: 5rem 0 5.5rem;
  position: relative;
  overflow: hidden;
}
.hero h1 { color: var(--purple); margin-bottom: 1.2rem; }
.hero .lead { color: var(--muted); }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 3.5rem; align-items: center; }
.hero-badges { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.7rem; }
.hero-badges span {
  font-size: .82rem; font-weight: 600;
  border: 1px solid var(--line);
  background: var(--white);
  padding: .38rem .9rem; border-radius: 999px; color: var(--ink);
  box-shadow: var(--shadow);
}
.trust-line { display: flex; align-items: center; gap: .6rem; margin-top: 1.9rem; color: var(--muted); font-size: .95rem; }
.trust-line .icon { color: var(--green); display: grid; place-items: center; }

/* Hero visual composition */
.hero-visual { position: relative; min-height: 420px; }
.hero-visual .dots {
  position: absolute; top: 0; right: 0; width: 150px; height: 150px;
  background-image: radial-gradient(var(--green) 2.2px, transparent 2.2px);
  background-size: 18px 18px; opacity: .55;
}
.logo-circle {
  position: absolute; top: 6px; right: -8px;
  width: 170px; height: 170px; border-radius: 50%;
  display: grid; place-items: center; z-index: 2;
  box-shadow: 0 20px 48px rgba(137, 197, 63, .45);
}
.logo-circle img { width: 100%; height: auto; }
.hero-laptop { position: relative; z-index: 1; display: block; width: 100%; max-width: 580px; margin: 2.2rem auto 0; mix-blend-mode: multiply; }
.blob {
  position: absolute; left: 8%; bottom: -8%;
  width: 340px; height: 340px; border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, #ffffff, #eef1f6 70%);
  box-shadow: inset 0 0 0 1px var(--line);
}
.float-card {
  position: absolute;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  padding: 1rem 1.2rem; max-width: 270px;
  display: flex; gap: .85rem; align-items: flex-start;
  z-index: 2;
}
.float-card .chip { flex: 0 0 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; }
.float-card b { display: block; color: var(--purple); font-size: .95rem; line-height: 1.3; margin-bottom: .15rem; }
.float-card p { font-size: .82rem; color: var(--muted); line-height: 1.5; }
.float-card.fc-1 { top: 30px; left: -14px; }
.float-card.fc-2 { bottom: 6px; left: 4%; }
.float-card.fc-3 { bottom: 90px; right: -14px; }
.chip-green { background: var(--green); color: #fff; }
.chip-purple { background: var(--purple-soft); color: var(--purple); }
.chip-soft-green { background: var(--green-soft); color: var(--green-dark); }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@media (prefers-reduced-motion: no-preference) {
  .float-card.fc-1 { animation: floaty 5.5s ease-in-out infinite; }
  .float-card.fc-2 { animation: floaty 6.5s ease-in-out 1s infinite; }
  .float-card.fc-3 { animation: floaty 6s ease-in-out .5s infinite; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  font-weight: 600; font-size: .96rem; font-family: var(--font);
  padding: .85rem 1.8rem; border-radius: 12px; transition: .2s;
  border: 2px solid transparent; cursor: pointer;
}
.btn-primary { background: var(--purple); color: #fff; box-shadow: var(--shadow); }
.btn-primary:hover { background: var(--purple-dark); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-ghost { border-color: var(--purple); color: var(--purple); background: var(--white); }
.btn-ghost:hover { background: var(--purple-soft); color: var(--purple); }
.btn-outline { border-color: var(--green); color: var(--green-dark); }
.btn-outline:hover { background: var(--green); color: #fff; }
.btn-row { display: flex; gap: .9rem; flex-wrap: wrap; margin-top: 1.9rem; }

/* ---------- Sections ---------- */
.section { padding: 4.5rem 0; }
.section.alt { background: var(--bg-soft); border-block: 1px solid var(--line); }
.section-head { max-width: 46rem; margin-bottom: 2.6rem; }
.section-head p { color: var(--muted); margin-top: .6rem; }

/* ---------- Cards ---------- */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.card-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.9rem 1.7rem;
  box-shadow: var(--shadow); transition: .25s;
  display: flex; flex-direction: column; gap: .75rem;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: rgba(137, 197, 63, .5); }
.card .icon {
  width: 64px; height: 64px; border-radius: 50%;
  display: grid; place-items: center; font-size: 1.5rem;
  background: var(--purple-soft); color: var(--purple);
}
.card:nth-child(even) .icon { background: var(--green-soft); color: var(--green-dark); }
.card h3 { color: var(--purple); }
.card p { color: var(--muted); font-size: .94rem; }
.card .card-link { margin-top: auto; font-weight: 700; font-size: .95rem; align-self: flex-end; color: var(--green-dark); }
.card .card-link:hover { color: var(--green); }

/* ---------- Steps / process ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.3rem; counter-reset: step; }
.step { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem; box-shadow: var(--shadow); }
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  font-size: 1.9rem; font-weight: 800; color: var(--green);
  display: block; margin-bottom: .4rem;
}
.step h3 { font-size: 1.02rem; margin-bottom: .3rem; }
.step p { font-size: .88rem; color: var(--muted); }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; text-align: center; }
.stat { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.7rem; box-shadow: var(--shadow); }
.stat b { display: block; font-size: 2rem; color: var(--purple); }
.stat span { color: var(--muted); font-size: .92rem; }

/* ---------- Logo strip ---------- */
.logo-strip { display: flex; flex-wrap: wrap; gap: 2.8rem; align-items: center; justify-content: center; padding: 1rem 0; }
.logo-strip img { max-height: 52px; width: auto; filter: grayscale(35%); opacity: .85; transition: .2s; }
.logo-strip img:hover { filter: none; opacity: 1; }

/* ---------- Prose (about) ---------- */
.prose { max-width: 48rem; }
.prose p { margin-bottom: 1.1rem; color: var(--muted); }
.prose strong { color: var(--purple); }
.split { display: grid; grid-template-columns: 1.1fr .9fr; gap: 3rem; align-items: center; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--purple), #4a3f9e);
  border-radius: var(--radius); color: #fff;
  padding: 2.7rem 2.5rem; display: flex; flex-wrap: wrap;
  align-items: center; justify-content: space-between; gap: 1.4rem;
  box-shadow: var(--shadow-lg);
}
.cta-band h2 { color: #fff; font-size: 1.5rem; }
.cta-band p { color: #cfc9f2; }
.cta-band .btn-primary { background: var(--green); }
.cta-band .btn-primary:hover { background: var(--green-dark); }

/* ---------- Contact ---------- */
.contact-list { display: grid; gap: 1rem; margin-top: 1.6rem; }
.contact-item {
  display: flex; gap: 1rem; align-items: flex-start;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.15rem 1.35rem; box-shadow: var(--shadow);
}
.contact-item .icon { flex: 0 0 48px; height: 48px; border-radius: 50%; display: grid; place-items: center; background: var(--green-soft); color: var(--green-dark); font-size: 1.2rem; }
.contact-item:nth-child(even) .icon { background: var(--purple-soft); color: var(--purple); }
.contact-item b { color: var(--purple); display: block; font-size: .93rem; }
.contact-item p, .contact-item a { color: var(--muted); font-size: .95rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--purple-dark); color: #c3bfe4; padding: 3.5rem 0 2rem; margin-top: 4rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; padding-bottom: 2.2rem; border-bottom: 1px solid rgba(255, 255, 255, .14); }
.site-footer h4 { color: #fff; font-size: 1rem; margin-bottom: .9rem; }
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: .5rem; }
.site-footer a { color: #c3bfe4; }
.site-footer a:hover { color: var(--green); }
.footer-brand { display: flex; align-items: center; gap: .6rem; color: #fff; font-weight: 800; margin-bottom: .8rem; }
.footer-brand img { height: 36px; }
.footer-bottom { padding-top: 1.4rem; font-size: .85rem; display: flex; flex-wrap: wrap; justify-content: space-between; gap: .8rem; }
.site-footer li, .contact-item p, .contact-item a { overflow-wrap: anywhere; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  /* Collapse nav to hamburger before links overflow */
  .nav-toggle { display: block; }
  .main-nav {
    display: none; position: absolute; top: 82px; left: 0; right: 0;
    background: var(--white); border-bottom: 1px solid var(--line); box-shadow: var(--shadow-lg);
  }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; align-items: flex-start; gap: 0; padding: .8rem 1.4rem; }
  .main-nav li { width: 100%; }
  .main-nav a { display: block; padding: .8rem 0; border-bottom: 1px solid var(--line); }
  .main-nav .nav-cta { display: inline-block; margin: .8rem 0; padding: .7rem 1.5rem !important; border-radius: 10px; border-bottom: none !important; }
  .lang-switch { margin: .8rem 0; }
}
@media (max-width: 1024px) {
  .card-grid.cols-4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .hero-grid, .split { grid-template-columns: 1fr; }
  .hero-visual { min-height: 380px; margin-top: 1rem; }
  .logo-circle { right: 0; width: 150px; height: 150px; }
  .card-grid, .card-grid.cols-2, .steps, .stats { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .card-grid, .card-grid.cols-2, .card-grid.cols-4, .steps, .stats { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: unset; display: flex; flex-direction: column; gap: 1rem; }
  .hero-laptop { margin-top: 0; order: -1; }
  .float-card, .float-card.fc-1, .float-card.fc-2, .float-card.fc-3 { position: relative; top: auto; right: auto; bottom: auto; left: auto; max-width: 100%; }
  .logo-circle, .blob, .dots { display: none; }
}

/* ---------- Job cards (careers) ---------- */
.job-meta { display: flex; flex-wrap: wrap; gap: .4rem; }
.job-meta span { background: var(--purple-soft); color: var(--purple); font-size: .78rem; font-weight: 600; padding: .25rem .6rem; border-radius: 999px; }
.job-details { margin-top: .35rem; border-top: 1px solid var(--line); }
.job-details summary { cursor: pointer; list-style: none; padding: .85rem 0 .2rem; font-weight: 700; font-size: .95rem; color: var(--purple); display: flex; align-items: center; }
.job-details summary::-webkit-details-marker { display: none; }
.job-details summary::after { content: "+"; margin-left: auto; font-size: 1.25rem; line-height: 1; color: var(--green-dark); transition: .2s; }
.job-details[open] summary::after { content: "\2013"; }
.job-body h4 { color: var(--purple); font-size: .85rem; text-transform: uppercase; letter-spacing: .05em; margin: 1.05rem 0 .4rem; }
.job-body p { font-size: .9rem; line-height: 1.6; }
.job-body ul { margin: 0; padding-left: 1.15rem; }
.job-body li { color: var(--muted); font-size: .9rem; line-height: 1.55; margin-bottom: .3rem; }
.job-tags { display: flex; flex-wrap: wrap; gap: .4rem; }
.job-tags span { background: var(--green-soft); color: var(--green-dark); font-size: .78rem; font-weight: 600; padding: .25rem .6rem; border-radius: 999px; }
.job-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; margin-top: 1.15rem; }
.job-actions .btn { padding: .55rem 1.2rem; font-size: .9rem; }

/* ---------- Company legal name ---------- */
.apb, .prose strong.apb { color: #a41e22; font-weight: 700; }
.site-footer .apb { color: inherit; font-weight: inherit; }

/* ---------- Contact page ---------- */
.hero-contact { display: grid; grid-template-columns: 1.05fr .95fr; gap: 3rem; align-items: center; }
.hero-contact img { width: 100%; max-width: 460px; justify-self: end; }
.contact-split { align-items: start; }
.maps-btn { display: inline-flex; align-items: center; gap: .45rem; margin-top: .7rem; padding: .5rem 1rem; border: 1px solid var(--line); border-radius: 10px; color: var(--purple); font-weight: 600; font-size: .9rem; background: var(--white); transition: .2s; }
.maps-btn:hover { border-color: var(--green); color: var(--green-dark); }
.contact-form label { display: block; font-weight: 600; color: var(--purple); font-size: .92rem; margin: 1.05rem 0 .4rem; }
.contact-form input, .contact-form textarea { width: 100%; padding: .8rem 1rem; border: 1px solid var(--line); border-radius: 10px; font: inherit; color: inherit; background: var(--white); }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(137, 197, 63, .18); }
.contact-form textarea { min-height: 150px; resize: vertical; }
.contact-form .btn { width: 100%; margin-top: 1.4rem; display: inline-flex; align-items: center; justify-content: center; gap: .55rem; }
.form-note { display: flex; align-items: center; gap: .5rem; color: var(--muted); font-size: .85rem; margin-top: .9rem; }
.response-band { display: flex; align-items: center; gap: 1.4rem; background: #f4f6fa; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem 2.2rem; }
.response-band .icon { flex: 0 0 56px; height: 56px; border-radius: 50%; background: var(--green); color: #fff; display: grid; place-items: center; }
.response-band b { color: var(--purple); display: block; font-size: 1.05rem; margin-bottom: .15rem; }
.response-band p { color: var(--muted); font-size: .95rem; }
@media (max-width: 900px) {
  .hero-contact { grid-template-columns: 1fr; }
  .hero-contact img { justify-self: start; max-width: 380px; }
}
