/* =========================================================
   PT. Antika Saputra Jaya — Company Profile Website
   Tokens
   Navy ink   : #14213B  (base dark)
   Brand navy : #1D3B70  (primary brand)
   Steel sky  : #E7EEF7  (alt section bg)
   Signal amber: #C4863A (warm accent, used sparingly)
   Paper      : #FBFAF7
   Ink        : #1B2130
   ========================================================= */

:root{
  --navy-ink: #12203c;
  --brand-navy: #1d3b70;
  --brand-navy-light: #2c4f8c;
  --steel-sky: #e7eef7;
  --amber: #c4863a;
  --paper: #fbfaf7;
  --ink: #1b2130;
  --ink-soft: #4c5567;
  --line: rgba(18,32,60,0.12);
  --radius-s: 4px;
  --radius-m: 10px;
  --shadow-soft: 0 18px 40px rgba(18,32,60,0.14);
  --font-head: "Oswald", sans-serif;
  --font-body: "Plus Jakarta Sans", sans-serif;
  --wrap: 1120px;
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }

body{
  margin:0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img{ max-width:100%; display:block; }

a{ color: inherit; text-decoration:none; }

.wrap{
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 28px;
}

h1,h2,h3{
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.12;
  margin: 0 0 .5em;
  color: var(--navy-ink);
  letter-spacing: .2px;
}

p{ margin: 0 0 1em; color: var(--ink-soft); max-width: 62ch; }

.section-kicker{
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: .06em;
  color: var(--amber);
  margin: 0 0 .6em;
  position: relative;
  padding-left: 22px;
}
.section-kicker::before{
  content:"";
  position:absolute;
  left:0; top:50%;
  width: 14px; height: 2px;
  background: var(--amber);
  transform: translateY(-50%);
}
.section-kicker--light{ color: #9fc0ec; }
.section-kicker--light::before{ background:#9fc0ec; }

.section-title{
  font-size: clamp(1.7rem, 2.6vw, 2.5rem);
  max-width: 18ch;
}

.section-lead{
  font-size: 1.08rem;
  max-width: 60ch;
}

/* ---------- buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 13px 26px;
  border-radius: var(--radius-s);
  font-family: var(--font-head);
  font-weight: 500;
  font-size: .98rem;
  letter-spacing:.02em;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease;
  border: 1.5px solid transparent;
}
.btn-primary{
  background: var(--amber);
  color: #fff;
}
.btn-primary:hover{ background:#ad7431; transform: translateY(-2px); box-shadow: 0 10px 22px rgba(196,134,58,0.32); }
.btn-ghost{
  border-color: currentColor;
  color: inherit;
}
.btn-ghost:hover{ background: rgba(255,255,255,0.12); transform: translateY(-2px); }
.btn:active{ transform: translateY(0); }

/* =========================================================
   HEADER / NAV
   ========================================================= */
.site-header{
  position: sticky;
  top:0;
  z-index: 50;
  background: rgba(251,250,247,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s ease;
}
.site-header.scrolled{
  box-shadow: 0 10px 30px rgba(18,32,60,0.10);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  height: 76px;
  transition: height .3s ease;
}
.site-header.scrolled .header-inner{ height: 64px; }
.brand{
  display:flex;
  align-items:center;
  gap: 10px;
}
.brand-mark{ height: 34px; width:auto; transition: height .3s ease; }
.site-header.scrolled .brand-mark{ height: 28px; }
.brand-name{
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--navy-ink);
  letter-spacing: .01em;
}
.site-nav{
  display:flex;
  align-items:center;
  gap: 30px;
  font-size: .96rem;
  font-weight: 500;
}
.site-nav a{
  color: var(--ink-soft);
  transition: color .15s ease;
  position: relative;
}
.site-nav a:not(.nav-cta)::after{
  content:"";
  position:absolute;
  left:0; right:0; bottom:-5px;
  height: 2px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.site-nav a:hover{ color: var(--brand-navy); }
.site-nav a:not(.nav-cta):hover::after{ transform: scaleX(1); }
.nav-cta{
  padding: 9px 18px;
  background: var(--brand-navy);
  color: #fff !important;
  border-radius: var(--radius-s);
  transition: background .2s ease, transform .2s ease;
}
.nav-cta:hover{ background: var(--brand-navy-light); transform: translateY(-1px); }

.nav-toggle{
  display:none;
  flex-direction: column;
  justify-content:center;
  gap:5px;
  width:36px; height:36px;
  background:none; border:none; cursor:pointer;
  position: relative;
  z-index: 60;
}
.nav-toggle span{
  display:block; height:2px; width:100%;
  background: var(--navy-ink);
  transition: transform .28s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1){
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2){
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3){
  transform: translateY(-7px) rotate(-45deg);
}

/* =========================================================
   HERO
   ========================================================= */
.hero{
  position: relative;
  min-height: 92vh;
  display:flex;
  align-items:flex-end;
  color:#fff;
  overflow:hidden;
}
.hero-media{
  position:absolute; inset:0;
}
.hero-media img{
  width:100%; height:100%; object-fit:cover;
}
.hero-scrim{
  position:absolute; inset:0;
  background:
    linear-gradient(180deg, rgba(18,32,60,0.55) 0%, rgba(18,32,60,0.35) 35%, rgba(15,25,46,0.92) 100%);
}
.hero-content{
  position:relative;
  padding-top: 120px;
  padding-bottom: 76px;
}
.hero-eyebrow{
  font-family: var(--font-head);
  letter-spacing:.08em;
  color: #b8cdec;
  margin-bottom: .8em;
  font-size: .95rem;
}
.hero-title{
  color:#fff;
  font-size: clamp(2.1rem, 4.6vw, 3.6rem);
  max-width: 15ch;
  margin-bottom: .45em;
}
.hero-sub{
  color: #d7e2f2;
  font-size: 1.1rem;
  max-width: 52ch;
  margin-bottom: 1.6em;
}
.hero-actions{
  display:flex; gap:14px; flex-wrap:wrap;
  margin-bottom: 2.2em;
}
.hero-contact{
  display:flex; gap: 34px; flex-wrap:wrap;
  border-top: 1px solid rgba(255,255,255,0.22);
  padding-top: 1.4em;
}
.hero-contact a{
  display:flex; align-items:center; gap:9px;
  color:#eaf0fa; font-size:.96rem; font-weight:500;
}
.hero-contact svg{ width:18px; height:18px; color:#9fc0ec; }

/* hero entrance — one orchestrated staggered reveal on load */
@keyframes heroUp{
  from{ opacity:0; transform: translateY(24px); }
  to{ opacity:1; transform: translateY(0); }
}
.hero-eyebrow, .hero-title, .hero-sub, .hero-actions, .hero-contact{
  opacity:0;
  animation: heroUp .85s cubic-bezier(.16,.8,.24,1) forwards;
}
.hero-eyebrow{ animation-delay: .05s; }
.hero-title{ animation-delay: .16s; }
.hero-sub{ animation-delay: .38s; }
.hero-actions{ animation-delay: .54s; }
.hero-contact{ animation-delay: .68s; }

/* =========================================================
   SCROLL REVEAL SYSTEM
   Applied via .reveal in HTML; JS toggles .in-view when the
   element enters the viewport. Stagger comes from sibling
   position, so groups of 2–5 cascade automatically.
   ========================================================= */
.reveal{
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.16,.8,.24,1), transform .7s cubic-bezier(.16,.8,.24,1);
  transition-delay: var(--reveal-delay, 0s);
}
.reveal.in-view{
  opacity: 1;
  transform: translateY(0);
}
.reveal:nth-child(1){ --reveal-delay: 0s; }
.reveal:nth-child(2){ --reveal-delay: .1s; }
.reveal:nth-child(3){ --reveal-delay: .18s; }
.reveal:nth-child(4){ --reveal-delay: .26s; }
.reveal:nth-child(5){ --reveal-delay: .34s; }

/* Photos get an extra "settle into place" zoom, on top of the
   fade + rise every .reveal element already has. The container
   fades/rises as usual; the image inside scales down from a
   slight zoom to its normal size, slightly slower for weight.
   Once settled, the transition switches to a quick one so the
   same image can respond snappily to a mouse hover afterwards. */
.reveal-img img{
  transform: scale(1.09);
  transition: transform 1.1s cubic-bezier(.16,.8,.24,1), box-shadow .4s ease;
  transition-delay: var(--reveal-delay, 0s);
}
.reveal-img.in-view img{
  transform: scale(1);
  transition: transform .4s cubic-bezier(.16,.8,.24,1), box-shadow .4s ease;
}

/* =========================================================
   ABOUT
   ========================================================= */
.about{ padding: 120px 0 100px; }
.about-grid{
  display:grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 64px;
  align-items:center;
}
.about-media{
  position:relative;
}
.about-img-main{
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
}
.about-media:hover .about-img-main{
  transform: scale(1.02);
  box-shadow: 0 26px 54px rgba(18,32,60,0.24);
}
.about-img-accent{
  position:absolute;
  width: 46%;
  right: -8%;
  bottom: -12%;
  border: 6px solid var(--paper);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-soft);
}
.about-copy p{ font-size: 1.02rem; }
.about-stats{
  display:flex;
  gap: 40px;
  margin-top: 2em;
  padding-top: 1.6em;
  border-top: 1px solid var(--line);
}
.about-stats strong{
  display:block;
  font-family: var(--font-head);
  font-size: 1.8rem;
  color: var(--brand-navy);
}
.about-stats span{
  font-size: .88rem;
  color: var(--ink-soft);
}

/* =========================================================
   VISION & MISSION
   ========================================================= */
.vm{
  background: var(--navy-ink);
  color:#fff;
  padding: 100px 0;
  position: relative;
}
.vm::before{
  content:"";
  position:absolute; inset:0;
  background: radial-gradient(circle at 88% 12%, rgba(157,193,238,0.16), transparent 55%);
  pointer-events:none;
}
.vm-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  position:relative;
}
.vm-title{
  color:#fff;
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  max-width: 16ch;
}
.vm-text{ color:#c3d2ea; }
.vm-list{
  list-style:none;
  margin:0; padding:0;
  display:flex; flex-direction:column;
  gap: 22px;
}
.vm-list li{
  display:flex;
  gap: 16px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255,255,255,0.14);
}
.vm-list li:last-child{ border-bottom:none; padding-bottom:0; }
.vm-dot{
  flex: none;
  width: 9px; height:9px;
  border-radius: 50%;
  background: var(--amber);
  margin-top: 8px;
}
.vm-list p{ color:#dce6f4; margin:0; font-size: .98rem; }

/* =========================================================
   SYSTEMATIC WORK
   ========================================================= */
.work{ padding: 110px 0; }
.work > .wrap:first-child{ margin-bottom: 56px; }
.work-grid{
  display:grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
}
.work-media img{
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-soft);
  position: sticky;
  top: 110px;
  cursor: pointer;
}
.work-media:hover img{
  transform: scale(1.025);
  box-shadow: 0 26px 54px rgba(18,32,60,0.24);
}
.work-list{
  list-style:none;
  margin:0; padding:0;
  position: relative;
}
.work-list::before{
  content:"";
  position:absolute;
  left: 27px; top: 10px; bottom: 10px;
  width: 1px;
  background: var(--line);
}
.work-list::after{
  content:"";
  position:absolute;
  left: 27px; top: 10px;
  width: 1px;
  height: 0;
  background: var(--amber);
  transition: height 1.6s cubic-bezier(.16,.8,.24,1);
}
.work-list.line-fill::after{ height: calc(100% - 20px); }
.work-num{ transition: color .4s ease, border-color .4s ease; }
.reveal.in-view .work-num{ border-color: var(--amber); }
.work-list li{
  display:flex;
  gap: 22px;
  padding-bottom: 40px;
  position: relative;
}
.work-list li:last-child{ padding-bottom:0; }
.work-num{
  flex:none;
  width: 56px; height:56px;
  border-radius:50%;
  background: var(--paper);
  border: 1px solid var(--line);
  display:flex; align-items:center; justify-content:center;
  font-family: var(--font-head);
  font-size: .95rem;
  color: var(--brand-navy);
  position: relative;
  z-index: 1;
}
.work-list h3{ font-size: 1.15rem; margin-bottom:.3em; }
.work-list p{ font-size: .97rem; margin:0; }

/* =========================================================
   SERVICES INTRO + INDEX
   ========================================================= */
.services-intro{
  padding: 110px 0 60px;
  text-align:center;
}
.services-intro .wrap > *{ margin-left:auto; margin-right:auto; }
.services-intro .section-kicker{ display:inline-flex; }
.services-intro .section-title{ max-width: 22ch; }
.services-intro .section-lead{ margin: 0 auto; }

.services-index{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap: 12px;
  margin-top: 44px;
}
.services-index a{
  font-family: var(--font-head);
  font-size: .92rem;
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--brand-navy);
  transition: background .18s ease, border-color .18s ease;
}
.services-index a:hover{
  background: var(--steel-sky);
  border-color: var(--brand-navy-light);
}

/* ---------- individual service rows ---------- */
.service{ padding: 76px 0; }
.service.alt{ background: var(--steel-sky); }
.service-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items:center;
}
.service--reverse .service-media{ order: 2; }
.service--reverse .service-copy{ order: 1; }

.service-media img{
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4/3.1;
  object-fit: cover;
  width:100%;
  cursor: pointer;
}
.service-media:hover img{
  transform: scale(1.035);
  box-shadow: 0 26px 54px rgba(18,32,60,0.24);
}
.service-num{
  font-family: var(--font-head);
  color: var(--amber);
  font-size: .95rem;
  letter-spacing:.06em;
  margin-bottom:.4em;
}
.service-copy h3{
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  margin-bottom:.5em;
}
.service-copy p{ font-size: 1rem; }

.service-grid--text-only{
  grid-template-columns: 1fr;
}
.service-grid--text-only .service-copy{ max-width: 62ch; }

/* =========================================================
   GALLERY (circular motif — echoes the ASJ logo loop)
   ========================================================= */
.gallery{ padding: 110px 0; text-align:center; }
.gallery > .wrap:first-child > *{ margin-left:auto; margin-right:auto; }
.gallery .section-kicker{ display:inline-flex; }
.gallery-grid{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap: 26px;
  margin-top: 54px;
}
.gallery-item{
  margin:0;
  width: 220px; height: 220px;
  border-radius: 50%;
  overflow:hidden;
  border: 6px solid var(--paper);
  box-shadow: var(--shadow-soft);
  flex: none;
  transition: box-shadow .45s ease;
}
.gallery-item img{
  width:100%; height:100%; object-fit:cover;
  transition: transform .45s ease;
  cursor: pointer;
}
.gallery-item:hover{ box-shadow: 0 26px 54px rgba(18,32,60,0.28); }
.gallery-item:hover img{ transform: scale(1.08); }
.gallery-item:nth-child(2n){ margin-top: 34px; }

/* =========================================================
   CLIENTS
   ========================================================= */
.clients{ padding: 110px 0; background: var(--steel-sky); }
.clients-grid{
  display:grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 64px;
  align-items:center;
}
.clients-list{
  list-style:none;
  margin: 28px 0 0;
  padding:0;
  columns: 1;
  display:flex; flex-direction:column;
  gap:0;
}
.clients-list li{
  font-family: var(--font-head);
  font-size: 1.05rem;
  color: var(--navy-ink);
  padding: 15px 0 15px 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left .25s ease, color .25s ease;
  cursor: default;
}
.clients-list li:hover{
  padding-left: 12px;
  color: var(--brand-navy);
}
.clients-list li:first-child{ border-top: 1px solid var(--line); }
.clients-media img{
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-soft);
  aspect-ratio: 3/4;
  object-fit: cover;
  cursor: pointer;
}
.clients-media:hover img{
  transform: scale(1.03);
  box-shadow: 0 26px 54px rgba(18,32,60,0.24);
}

/* =========================================================
   CONTACT
   ========================================================= */
.contact{
  position: relative;
  padding: 130px 0 110px;
  color:#fff;
  overflow:hidden;
}
.contact-media{ position:absolute; inset:0; }
.contact-media img{ width:100%; height:100%; object-fit:cover; }
.contact-media::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(90deg, rgba(15,25,46,0.96) 0%, rgba(15,25,46,0.86) 46%, rgba(15,25,46,0.5) 100%);
}
.contact-inner{ position:relative; }
.contact-card{ max-width: 620px; }
.contact-title{
  color:#fff;
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  max-width: 16ch;
}
.contact-text{ color:#d7e2f2; }
.contact-details{
  display:flex; flex-direction:column; gap:20px;
  margin: 2em 0 2.2em;
}
.contact-row{
  display:flex; gap:14px; align-items:flex-start;
}
.contact-row svg{ width:20px; height:20px; flex:none; margin-top:2px; color:#9fc0ec; }
.contact-row div{ display:flex; flex-direction:column; gap:2px; }
.contact-row span{ color:#eaf0fa; font-size:.97rem; }
.contact-link{
  color:#eaf0fa;
  font-size:.97rem;
  text-decoration: underline;
  text-decoration-color: rgba(234,240,250,0.35);
  text-underline-offset: 3px;
  transition: color .2s ease, text-decoration-color .2s ease;
}
.contact-link:hover{ color:#fff; text-decoration-color: #9fc0ec; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer{
  background: var(--navy-ink);
  color:#93a4c4;
  padding: 34px 0;
}
.footer-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
  gap: 14px;
}
.footer-brand{
  display:flex; align-items:center; gap:10px;
  font-family: var(--font-head);
  color:#dbe4f2;
  font-size:.92rem;
}
.footer-brand img{
  height:26px;
  background:#fff;
  padding: 4px 6px;
  border-radius: 5px;
}
.footer-inner p{ margin:0; font-size:.85rem; color:#7c8db0; }
.footer-social{ display:flex; align-items:center; gap:12px; }
.footer-social a{
  display:flex; align-items:center; justify-content:center;
  width:36px; height:36px; border-radius:50%;
  background: rgba(255,255,255,0.06);
  color:#c3d1ea;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.footer-social a svg{ width:18px; height:18px; }
.footer-social a:hover{ background:#9fc0ec; color:#0c1830; transform: translateY(-2px); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 900px){
  .about-grid, .vm-grid, .work-grid, .service-grid, .clients-grid{
    grid-template-columns: 1fr;
  }
  .service--reverse .service-media,
  .service--reverse .service-copy{ order:0; }
  .about-img-accent{ display:none; }
  .work-media img{ position:static; }
  .clients-media{ order:-1; }
}

@media (max-width: 960px){
  .site-nav{
    position:absolute;
    top: 76px; left:0; right:0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    flex-direction:column;
    align-items:flex-start;
    padding: 18px 28px 28px;
    gap: 16px;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity .22s ease, transform .22s ease, visibility 0s linear .22s;
  }
  .site-nav.open{
    display:flex;
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    transition: opacity .22s ease, transform .22s ease;
  }
  .nav-toggle{ display:flex; }
  .nav-cta{ margin-top:6px; }
}

/* =========================================================
   ASISTEN TANYA JAWAB (floating FAQ widget)
   ========================================================= */
.asj-widget{
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 200;
}

.asj-fab{
  position: relative;
  width: 60px; height: 60px;
  border-radius: 50%;
  border: none;
  background: var(--brand-navy);
  color: #fff;
  display:flex; align-items:center; justify-content:center;
  cursor: pointer;
  box-shadow: 0 14px 32px rgba(18,32,60,0.32);
  transition: background .2s ease, transform .2s ease;
}
.asj-fab:hover{ background: var(--brand-navy-light); transform: translateY(-2px); }
.asj-fab svg{ width:26px; height:26px; position:absolute; transition: opacity .2s ease, transform .2s ease; }
.asj-fab-icon-close{ opacity:0; transform: rotate(-45deg) scale(.6); }
.asj-widget.is-open .asj-fab-icon-chat{ opacity:0; transform: rotate(45deg) scale(.6); }
.asj-widget.is-open .asj-fab-icon-close{ opacity:1; transform: rotate(0) scale(1); }

.asj-fab-ping{
  position:absolute; inset:-6px;
  border-radius:50%;
  border: 2px solid var(--amber);
  opacity: 0;
  animation: asjPing 2.8s ease-out infinite;
}
@keyframes asjPing{
  0%{ opacity:.55; transform: scale(.92); }
  70%{ opacity:0; transform: scale(1.22); }
  100%{ opacity:0; transform: scale(1.22); }
}
.asj-widget.is-open .asj-fab-ping{ animation: none; opacity:0; }

.asj-panel{
  position: absolute;
  right: 0;
  bottom: 76px;
  width: 372px;
  max-width: calc(100vw - 40px);
  max-height: min(560px, 74vh);
  background: var(--paper);
  border-radius: 16px;
  box-shadow: 0 30px 70px rgba(18,32,60,0.28);
  display:flex;
  flex-direction:column;
  overflow:hidden;
  opacity:0;
  transform: translateY(14px) scale(.98);
  pointer-events:none;
  transform-origin: bottom right;
  transition: opacity .22s ease, transform .22s ease;
}
.asj-widget.is-open .asj-panel{
  opacity:1;
  transform: translateY(0) scale(1);
  pointer-events:auto;
}

.asj-panel-header{
  background: var(--navy-ink);
  padding: 16px 18px;
  display:flex; align-items:center; gap:12px;
  flex: none;
}
.asj-panel-logo{
  width:34px; height:34px;
  object-fit:contain;
  background:#fff;
  border-radius: 8px;
  padding:4px;
  flex:none;
}
.asj-panel-title{ margin:0; color:#fff; font-family: var(--font-head); font-size:1rem; font-weight:600; }
.asj-panel-sub{ margin:0; color:#a9c0e0; font-size:.78rem; }

.asj-messages{
  flex: 1;
  overflow-y: auto;
  padding: 18px;
  display:flex;
  flex-direction:column;
  gap: 12px;
  scroll-behavior: smooth;
}
.asj-msg{
  max-width: 84%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: .92rem;
  line-height:1.5;
  animation: asjMsgIn .3s ease;
}
@keyframes asjMsgIn{
  from{ opacity:0; transform: translateY(6px); }
  to{ opacity:1; transform: translateY(0); }
}
.asj-msg--bot{
  align-self:flex-start;
  background: var(--steel-sky);
  color: var(--navy-ink);
  border-bottom-left-radius: 4px;
}
.asj-msg--user{
  align-self:flex-end;
  background: var(--brand-navy);
  color: #fff;
  border-bottom-right-radius: 4px;
}
.asj-msg a{ color: inherit; text-decoration: underline; }
.asj-msg--bot a{ color: var(--brand-navy); font-weight:600; }

.asj-msg-wa{
  align-self:flex-start;
  display:inline-flex;
  align-items:center;
  gap:7px;
  margin-top:2px;
  padding: 8px 14px;
  background: #fff;
  border: 1.5px solid var(--brand-navy);
  color: var(--brand-navy) !important;
  border-radius: 999px;
  font-family: var(--font-head);
  font-size:.85rem;
  font-weight:500;
  text-decoration:none !important;
  transition: background .2s ease, color .2s ease;
}
.asj-msg-wa:hover{ background: var(--brand-navy); color:#fff !important; }
.asj-msg-wa svg{ width:14px; height:14px; flex:none; }

.asj-chips{
  align-self: stretch;
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.asj-chip{
  border: 1px solid var(--line);
  background:#fff;
  color: var(--brand-navy);
  font-family: var(--font-body);
  font-size:.82rem;
  padding: 7px 13px;
  border-radius: 999px;
  cursor:pointer;
  transition: background .18s ease, border-color .18s ease;
}
.asj-chip:hover{ background: var(--steel-sky); border-color: var(--brand-navy-light); }

.asj-typing{
  align-self:flex-start;
  display:flex; gap:4px;
  padding: 12px 16px;
  background: var(--steel-sky);
  border-radius: 14px;
  border-bottom-left-radius: 4px;
}
.asj-typing span{
  width:6px; height:6px; border-radius:50%;
  background: var(--ink-soft);
  opacity:.6;
  animation: asjTypingBounce 1.1s ease-in-out infinite;
}
.asj-typing span:nth-child(2){ animation-delay:.15s; }
.asj-typing span:nth-child(3){ animation-delay:.3s; }
@keyframes asjTypingBounce{
  0%, 60%, 100%{ transform: translateY(0); opacity:.5; }
  30%{ transform: translateY(-4px); opacity:1; }
}

.asj-input-row{
  flex:none;
  display:flex;
  align-items:center;
  gap:8px;
  padding: 12px 14px;
  border-top: 1px solid var(--line);
  background:#fff;
}
.asj-input-row input{
  flex:1;
  border:none;
  outline:none;
  font-family: var(--font-body);
  font-size:.92rem;
  color: var(--ink);
  background:transparent;
  padding: 8px 4px;
}
.asj-input-row input::placeholder{ color:#98a2b8; }
.asj-send{
  flex:none;
  width:38px; height:38px;
  border-radius:50%;
  border:none;
  background: var(--amber);
  color:#fff;
  display:flex; align-items:center; justify-content:center;
  cursor:pointer;
  transition: background .2s ease, transform .15s ease;
}
.asj-send:hover{ background:#ad7431; transform: translateY(-1px); }
.asj-send svg{ width:17px; height:17px; }

.asj-disclaimer{
  flex:none;
  margin:0;
  text-align:center;
  font-size:.7rem;
  color:#9aa3b5;
  padding: 7px 0 10px;
  background:#fff;
}

@media (max-width: 480px){
  .asj-widget{ right:16px; bottom:16px; }
  .asj-panel{
    width: calc(100vw - 32px);
    bottom: 74px;
    max-height: 72vh;
  }
}

@media (max-width: 720px){
  .hero{ min-height: 100vh; }
  .hero-content{ padding-top: 90px; padding-bottom: 50px; }
  .hero-contact{ flex-direction:column; gap:12px; }

  .about, .work, .services-intro, .gallery, .clients{ padding-top:76px; padding-bottom:76px; }
  .vm{ padding: 76px 0; }
  .contact{ padding: 90px 0 76px; }

  .gallery-item{ width: 150px; height:150px; }
  .gallery-item:nth-child(2n){ margin-top:0; }

  .footer-inner{ flex-direction:column; align-items:flex-start; }
}

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  .gallery-item img{ transition:none; }
  .hero-eyebrow, .hero-title, .hero-sub, .hero-actions, .hero-contact{
    animation: none; opacity: 1;
  }
  .reveal{
    opacity: 1; transform: none; transition: none;
  }
  .reveal-img img{ transform: none; transition: none; }
  .work-list::after{ transition: none; }
  .btn-primary:hover, .btn-ghost:hover, .nav-cta:hover{ transform: none; }
  .service-media:hover img,
  .about-media:hover .about-img-main,
  .work-media:hover img,
  .clients-media:hover img,
  .gallery-item:hover img{ transform: none; }
  .clients-list li:hover{ padding-left: 0; }
  .asj-fab-ping{ display:none; }
  .asj-fab svg{ transition:none; }
  .asj-panel{ transition:none; }
  .asj-msg{ animation:none; }
  .asj-typing span{ animation:none; opacity:.8; }
}

/* focus visibility */
a:focus-visible, button:focus-visible{
  outline: 2px solid var(--amber);
  outline-offset: 2px;
}
