/* ============================================================
   PT Siburian Jaya Utama — Studio Perangkat Lunak, Bogor
   Design system: "SpaceX Dark Aerospace" (light remap)
   astra blue #1870f0 · white surfaces · gray #616366
   D-DIN (Barlow Condensed) + Roboto Mono · wide tracking
   flat, shadow-free · minimal radii · v42
   ============================================================ */

:root{
  /* colors (SpaceX tokens) */
  --surface-black:  #ffffff;
  --surface-raised: #ffffff;
  --surface-2:      #f4f6f8;
  --off-white:      #101214;
  --pure-white:     #ffffff;
  --mid-gray:       #6a6e73;
  --text-dim:       #5c6065;
  --line:           #e5e7eb;
  --line-strong:    #c9ced4;

  /* shape tokens */
  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-pill: 32px;

  --sans: 'Barlow Condensed', 'Helvetica Neue', Arial, sans-serif;
  --mono: 'Roboto Mono', 'SFMono-Regular', Consolas, monospace;

  --max: 1180px;
  --pad: clamp(20px, 5vw, 56px);
}

*{box-sizing:border-box; margin:0; padding:0;}
html{scroll-behavior:smooth;}
body{
  font-family: var(--sans);
  color: var(--off-white);
  background: var(--surface-black);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img{max-width:100%; display:block;}
a{color:inherit; text-decoration:none;}

::selection{ background: #1870f0; color: #fff; }

:focus-visible{ outline:3px solid #1870f0; outline-offset:2px; }

@media (prefers-reduced-motion: reduce){
  *, *::before, *::after{
    animation-duration:.01ms !important;
    animation-iteration-count:1 !important;
    transition-duration:.01ms !important;
    scroll-behavior:auto !important;
  }
  .reveal{ opacity:1 !important; transform:none !important; }
}

.wrap{
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

/* ---------- label (wide-tracked uppercase) ---------- */
.label{
  font-family: var(--sans);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #1073f0;
}

/* ---------- header (transparent overlay) ---------- */
.site-header{
  position: sticky;
  top: 0;
  z-index: 60;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease;
}
.site-header.scrolled{
  background: rgba(255,255,255,.86);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-bottom-color: var(--line);
}
.header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 20px;
}
.brand{ display: block; min-width: 0; }
.brand-text{
  font-size: 17px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--off-white);
  line-height: 1.15;
  white-space: nowrap;
}
.brand-text small{
  display: block;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: .18em;
  color: #5f6368;
  text-transform: uppercase;
  margin-top: 3px;
}

.nav{
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.6vw, 30px);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.nav a{
  position: relative;
  padding: 6px 0;
  color: var(--off-white);
  transition: color .15s ease;
}
.nav a:hover{ color: #1870f0; }
.nav a[aria-current="page"]{ color: #1870f0; }
.nav a:not(.nav-cta)::after{
  content:'';
  position: absolute;
  left: 0; bottom: 2px;
  width: 100%; height: 1px;
  background: #1870f0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s ease;
}
.nav a:not(.nav-cta):hover::after,
.nav a[aria-current="page"]:not(.nav-cta)::after{ transform: scaleX(1); }
.nav .nav-cta{
  border: 1.5px solid #1870f0;
  color: #1870f0 !important;
  padding: 9px 20px;
  border-radius: var(--radius-pill);
  transition: background .15s ease, color .15s ease, transform .15s ease;
}
.nav .nav-cta:hover{ background: #1870f0; color: #fff !important; transform: translateY(-1px); }
.nav-clock{
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .06em;
  color: var(--off-white);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-pill);
  padding: 7px 14px;
  white-space: nowrap;
}

.nav-toggle{
  display: none;
  background: none;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-pill);
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  color: var(--off-white);
  cursor: pointer;
}

@media (max-width: 880px){
  .nav{
    position: fixed;
    top: 76px; left: 0; right: 0;
    z-index: 55;
    flex-direction: column;
    align-items: flex-start;
    padding: 16px var(--pad) calc(24px + env(safe-area-inset-bottom));
    gap: 0;
    font-size: 19px;
    font-weight: 600;
    background: #ffffff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 40px -20px rgba(0,0,0,.25);
    max-height: calc(100vh - 76px);
    max-height: calc(100dvh - 76px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity .22s ease, transform .22s ease, visibility 0s linear .24s;
  }
  .nav.open{
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    transition: opacity .22s ease, transform .22s ease;
  }
  .nav a{
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    color: var(--off-white);
  }
  .nav .nav-cta{
    margin-top: 16px;
    border-bottom: none;
    width: auto;
    padding: 12px 26px;
    font-size: 15px;
    border-radius: var(--radius-pill);
  }
  .nav-clock{ display: none; }
  .nav a:not(.nav-cta)::after{ display: none; }
  .nav-toggle{ display: flex; }
}

@media (max-width: 440px){
  .header-inner{ gap: 10px; }
  .brand-text{ font-size: 13.5px; }
  .brand-text small{ font-size: 8px; letter-spacing: .12em; }
  .nav-toggle{ width: 42px; height: 42px; }
}

/* ---------- buttons (mission-control) ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 15px 30px;
  border: 1.5px solid transparent;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: background .15s ease, color .15s ease, border-color .15s ease, transform .15s ease;
  white-space: nowrap;
}
.btn:active{ transform: translateY(1px); }
.btn .arr{ transition: transform .2s ease; }
.btn:hover .arr{ transform: translateX(4px); }

.btn-primary, .btn-primary:visited{ background: #1870f0; color: #fff !important; }
.btn-primary:hover{ background: #1073f0; }

.btn-ghost, .btn-ghost:visited{ border-color: #101214; color: #101214 !important; }
.btn-ghost:hover{ border-color: #1870f0; color: #1870f0 !important; }

.btn-accent, .btn-accent:visited{ background: #1870f0; color: #fff !important; }
.btn-accent:hover{ background: #1073f0; }

.btn-paper, .btn-paper:visited{ background: #ffffff; color: #1870f0 !important; }
.btn-paper:hover{ background: #eff6ff; }

/* ---------- hero (full-bleed image, cinematic) ---------- */
.hero{
  position: relative;
  background: var(--surface-black);
  overflow: hidden;
  padding: clamp(120px, 18vh, 200px) 0 clamp(80px, 10vw, 120px);
}
.hero-bg{ position: absolute; inset: 0; }
.hero-bg img{ width: 100%; height: 100%; object-fit: cover; opacity: .45; }
.hero-shade {
  display: none !important;
}
.hero .wrap{ position: relative; z-index: 1; }
.hero-content{ max-width: 740px; }
.hero-content .label{ display: block; margin-bottom: 24px; }
.hero-content h1{
  font-family: var(--sans);
  font-size: clamp(44px, 7vw, 80px);
  font-weight: 700;
  letter-spacing: .04em;
  line-height: .95;
  text-transform: uppercase;
  color: var(--off-white);
  max-width: 14ch;
}
.hero-content h1 .hl{ color: #1870f0; }
.hero-content .lede{
  font-size: clamp(17.5px, 1.9vw, 20px);
  font-weight: 500;
  color: #4b4f54;
  max-width: 48ch;
  margin: 28px 0 36px;
}
.hero-actions{ display: flex; gap: 16px; flex-wrap: wrap; }

/* ---------- facts strip ---------- */
.facts{ border-bottom: 1px solid var(--line); }
.facts .wrap{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.fact{
  padding: 30px 22px 28px 0;
  border-top: 1px solid #1870f0;
}
.fact:nth-child(even){ border-top-color: #9ec5ff; }
.fact .num{
  font-family: var(--sans);
  font-size: 34px;
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: #1870f0;
}
.fact:nth-child(even) .num{ color: #1073f0; }
.fact .lbl{
  font-family: var(--sans);
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #6a6e73;
  margin-top: 6px;
}
@media (max-width: 760px){
  .facts .wrap{ grid-template-columns: repeat(2, 1fr); gap: 0 24px; }
}

/* ---------- sections ---------- */
section{ padding: clamp(72px, 10vw, 120px) 0; position: relative; }
.section-border{ border-bottom: 1px solid var(--line); }
.tint-blue{ background: #eff6ff; }
.tint-gray{ background: #f4f6f8; }
.section-head{ margin-bottom: clamp(40px, 5vw, 60px); max-width: 680px; }
.section-head h2{
  font-family: var(--sans);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  letter-spacing: .03em;
  line-height: 1;
  text-transform: uppercase;
  color: var(--off-white);
}
.section-head .sub{
  color: #4b4f54;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.7;
  margin-top: 18px;
  max-width: 58ch;
}

/* ---------- reveal ---------- */
.js .reveal{
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .7s ease, transform .7s ease;
  transition-delay: var(--d, 0s);
}
.js .reveal.in, .reveal.in{ opacity: 1; transform: translateY(0); }

/* ---------- service blocks ---------- */
.service-blocks{ display: grid; gap: 20px; }
.service-block{
  background: var(--surface-raised);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: clamp(32px, 4.5vw, 56px);
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 18px 56px;
  transition: border-color .2s ease, transform .2s ease;
}
.service-block:hover{ border-color: var(--line-strong); transform: translateY(-2px); }
.service-block .sb-head{
  grid-column: 1 / -1;
  display: flex;
  align-items: baseline;
  gap: 20px;
}
.service-block .sb-no{
  font-family: var(--sans);
  font-size: clamp(24px, 2.4vw, 30px);
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--text-dim);
}
.service-block h3{
  font-family: var(--sans);
  font-size: clamp(28px, 3.6vw, 42px);
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--off-white);
}
.service-block .sb-desc{ color: #4b4f54; font-size: 18px; font-weight: 500; line-height: 1.7; max-width: 48ch; }
.service-block .sb-list{ list-style: none; margin-top: 20px; }
.service-block .sb-list li{
  padding: 13px 0;
  border-top: 1px solid var(--line);
  font-size: 15.5px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--off-white);
  display: flex;
  gap: 14px;
  align-items: center;
}
.service-block .sb-list li::before{
  content:'';
  flex: 0 0 auto;
  width: 5px; height: 5px;
  background: #1870f0;
}
.service-block .sb-link{
  grid-column: 1 / -1;
  margin-top: 8px;
}
.row-link{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--off-white);
}
.row-link .arr{ transition: transform .2s ease; }
.row-link:hover .arr{ transform: translateX(5px); }
@media (max-width: 820px){
  .service-block{ grid-template-columns: 1fr; }
}

/* ---------- service list rows (portfolio, mission numbers) ---------- */
.service-list{ border-top: 1px solid #1870f0; }
.service-row{
  display: grid;
  grid-template-columns: 120px 1fr 1.15fr;
  gap: 28px;
  align-items: start;
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left .25s ease;
}
.service-row:hover{ padding-left: 14px; }
.service-row .no{
  font-family: var(--sans);
  font-size: clamp(48px, 5.5vw, 68px);
  font-weight: 700;
  line-height: .85;
  letter-spacing: .05em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(24,112,240,.45);
  transition: color .25s ease, -webkit-text-stroke .25s ease;
}
.service-row:hover .no{
  color: #1870f0;
  -webkit-text-stroke: 1px transparent;
}
.service-row h3{
  font-family: var(--sans);
  font-size: clamp(24px, 2.8vw, 32px);
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--off-white);
  transition: color .15s ease;
}
.service-row:hover h3{ color: #1073f0; }
.service-row p{ color: #4b4f54; font-size: 17px; font-weight: 500; line-height: 1.7; max-width: 44ch; }
@media (max-width: 820px){
  .service-row{ grid-template-columns: 84px 1fr; gap: 6px 16px; }
  .service-row .no{ font-size: 44px; }
  .service-row p{ grid-column: 2; }
}

/* ---------- Play Store callout (monochrome) ---------- */
.play-note{
  grid-column: 1 / -1;
  margin-top: 8px;
  position: relative;
  overflow: hidden;
  background: #1870f0;
  border: 1px solid #1870f0;
  border-radius: var(--radius-md);
  padding: 28px 32px;
}
.play-note::after{
  content:'';
  position: absolute;
  right: -40px; bottom: -40px;
  width: 140px; height: 140px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.3);
  pointer-events: none;
}
.play-note .pn-tag{
  font-family: var(--sans);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #dbeafe;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.play-note .gp-logo{
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  background: #fff;
  padding: 3px;
  box-sizing: border-box;
}
.play-note p{
  color: #fff;
  font-size: 17.5px;
  font-weight: 500;
  line-height: 1.7;
  max-width: 62ch;
  position: relative;
  z-index: 1;
}
.detail-copy .play-note{ grid-column: auto; margin-top: 24px; }
.detail-copy .play-note p{
  color: #fff;
  font-size: 17.5px;
  font-weight: 500;
  line-height: 1.7;
}

/* ---------- exhibit ---------- */
.exhibit{
  background: var(--surface-raised);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: clamp(28px, 5vw, 56px);
}
.exhibit .label{ display: block; margin-bottom: 18px; }
.exhibit h2{
  font-family: var(--sans);
  font-size: clamp(32px, 4.2vw, 48px);
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1.05;
  text-transform: uppercase;
  max-width: 24ch;
  color: var(--off-white);
  margin-bottom: 18px;
}
.exhibit .lede{
  color: #4b4f54;
  max-width: 58ch;
  font-size: 17.5px;
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 32px;
}
.photo-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.photo-grid figure{
  background: var(--surface-black);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.photo-grid img{
  aspect-ratio: 9/11.5;
  object-fit: cover;
  width: 100%;
  transition: transform .5s ease;
}
.photo-grid figure:hover img{ transform: scale(1.02); }
.photo-grid figcaption{
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #5f6368;
  padding: 11px 12px;
  border-top: 1px solid var(--line);
}
@media (max-width: 860px){ .photo-grid{ grid-template-columns: repeat(2, 1fr); } }

/* ---------- process strip ---------- */
.process-strip{
  margin-top: 22px;
  background: #f6f8fb;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 18px;
}
.ps-step{ position: static; }
.ps-arrow{
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  margin: 0 12px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background-color: #ffffff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231870f0' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 12h15'/%3E%3Cpath d='m13 5 7 7-7 7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 15px 15px;
}
@media (max-width: 860px){
  .ps-arrow{ display: none; }
}
.ps-step .ps-no{
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .2em;
  color: #6a6e73;
  display: block;
  margin-bottom: 6px;
}
.ps-step b{ display: block; font-size: 16.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--off-white); }
.ps-step small{ color: #5f6368; font-size: 14px; }

/* ---------- steps ---------- */
.steps{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.step{
  background: var(--surface-raised);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px 26px;
  transition: border-color .2s ease, transform .2s ease;
}
.step:hover{ border-color: var(--line-strong); transform: translateY(-2px); }
.step .no{
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .18em;
  color: #6a6e73;
  display: block;
  margin-bottom: 14px;
}
.step h3{
  font-family: var(--sans);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--off-white);
  margin-bottom: 8px;
}
.step p{ color: #4b4f54; font-size: 16px; font-weight: 500; line-height: 1.7; }
@media (max-width: 960px){
  .steps{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px){ .steps{ grid-template-columns: 1fr; } }

/* ---------- clients ---------- */
.clients{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.client{
  background: var(--surface-raised);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 34px 30px;
  transition: border-color .2s ease, transform .2s ease;
}
.client:hover{ border-color: var(--line-strong); transform: translateY(-2px); }
.client .c-idx{
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .2em;
  color: #6a6e73;
  display: block;
  margin-bottom: 14px;
}
.client h3{
  font-family: var(--sans);
  font-size: clamp(26px, 2.6vw, 32px);
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--off-white);
  transition: color .15s ease;
}
.client:hover h3{ color: #1073f0; }
.client .c-role{
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #5f6368;
  margin-top: 10px;
}
@media (max-width: 820px){
  .clients{ grid-template-columns: 1fr; }
}

/* ---------- block2 / quote ---------- */
.block2{
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(30px, 6vw, 80px);
  align-items: start;
  border-top: 1px solid #1870f0;
  padding-top: clamp(32px, 4vw, 48px);
}
.block2 h2{
  font-family: var(--sans);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--off-white);
  margin-bottom: 18px;
}
.block2 p{ color: #4b4f54; font-size: 17px; font-weight: 500; line-height: 1.7; max-width: 50ch; }
.block2 p + p{ margin-top: 14px; }
.block2 .side{ border-left: 1px solid var(--line-strong); padding-left: clamp(20px, 3vw, 40px); }
.block2 .side .meta{
  font-size: 14.5px;
  color: #5f6368;
  line-height: 2.1;
}
.block2 .side .meta b{ color: var(--off-white); font-weight: 700; }
@media (max-width: 820px){
  .block2{ grid-template-columns: 1fr; }
  .block2 .side{ border-left: none; padding-left: 0; border-top: 1px solid var(--line); padding-top: 20px; }
}

.quote-block{
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(30px, 6vw, 80px);
  align-items: center;
}
.quote-block figure{
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--line);
}
.quote-block img{
  aspect-ratio: 3/4;
  object-fit: cover;
  width: 100%;
  transition: transform .5s ease;
}
.quote-block figure:hover img{ transform: scale(1.02); }
.quote-block blockquote{
  font-family: var(--sans);
  font-size: clamp(28px, 3.6vw, 40px);
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1.15;
  text-transform: uppercase;
  color: var(--off-white);
}
.quote-block blockquote .hl{ color: #1870f0; }
.quote-block .desc{
  color: #4b4f54;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.7;
  margin-top: 20px;
  max-width: 48ch;
}
@media (max-width: 860px){
  .quote-block{ grid-template-columns: 1fr; }
  .quote-block figure{ max-width: 340px; }
}

/* ---------- detail rows ---------- */
.detail-row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
  padding: clamp(40px, 5vw, 64px) 0;
  border-bottom: 1px solid var(--line);
}
.detail-row:last-of-type{ border-bottom: none; }
.detail-row.reverse .detail-copy{ order: 2; }
.detail-row.reverse .detail-media{ order: 1; }
@media (max-width: 860px){
  .detail-row, .detail-row.reverse{ grid-template-columns: 1fr; }
  .detail-row.reverse .detail-copy{ order: 1; }
  .detail-row.reverse .detail-media{ order: 2; }
}
.detail-copy .label{ display: block; margin-bottom: 14px; }
.detail-copy h2{
  font-family: var(--sans);
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--off-white);
  margin-bottom: 14px;
}
.detail-copy p{ color: #4b4f54; font-size: 17px; font-weight: 500; line-height: 1.7; }
.detail-list{ list-style: none; margin-top: 18px; }
.detail-list li{
  padding: 12px 0;
  border-top: 1px solid var(--line);
  color: var(--off-white);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.detail-list li:first-child{ border-top: 1px solid #1870f0; }
.detail-media{
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--line);
}
.detail-media img{
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
  transition: transform .5s ease;
}
.detail-media:hover img{ transform: scale(1.02); }
.detail-media figcaption{
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #5f6368;
  padding: 11px 14px;
  border-top: 1px solid var(--line);
}

/* ---------- CTA band (astra blue) ---------- */
.cta-band{
  background: #1870f0;
  border-top: 1px solid #1870f0;
  border-bottom: 1px solid #1870f0;
  padding: clamp(72px, 10vw, 120px) 0;
}
.cta-band .wrap{ max-width: 900px; }
.cta-band h2{
  font-family: var(--sans);
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: .03em;
  line-height: 1;
  text-transform: uppercase;
  color: #fff;
  max-width: 20ch;
}
.cta-band p{
  color: rgba(255,255,255,.88);
  max-width: 46ch;
  margin: 20px 0 32px;
  font-size: 17.5px;
  font-weight: 500;
}
.cta-band .hero-actions{ gap: 16px; }
.cta-band .btn-ghost{ border-color: #fff; color: #fff !important; }
.cta-band .btn-ghost:hover{ background: #fff; border-color: #fff; color: #1870f0 !important; }

/* ---------- page hero (inner pages) ---------- */
.page-hero{
  padding: clamp(110px, 16vh, 160px) 0 clamp(60px, 7vw, 84px);
  border-bottom: 1px solid var(--line);
}
.page-hero .label{ display: block; margin-bottom: 20px; }
.page-hero h1{
  font-family: var(--sans);
  font-size: clamp(40px, 5.6vw, 64px);
  font-weight: 700;
  letter-spacing: .03em;
  line-height: 1;
  text-transform: uppercase;
  max-width: 18ch;
  color: var(--off-white);
  margin-bottom: 22px;
}
.page-hero h1 .hl{ color: #1870f0; }
.page-hero .lede{
  color: #4b4f54;
  font-size: 18px;
  font-weight: 500;
  max-width: 52ch;
}

/* ---------- contact ---------- */
.contact-grid{
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
}
@media (max-width: 860px){ .contact-grid{ grid-template-columns: 1fr; } }
.form-block{
  border: 1px solid #c8cdd4;
  border-radius: var(--radius-md);
  padding: clamp(28px, 3.6vw, 48px);
  background: var(--surface-raised);
}
.field{ margin-bottom: 22px; }
.field label{
  display: block;
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #4b4f54;
  margin-bottom: 9px;
}
.field input, .field textarea{
  width: 100%;
  border: 1.5px solid #c8cdd4;
  background: #f6f8fb;
  border-radius: var(--radius-sm);
  padding: 15px 18px;
  font-family: var(--sans);
  font-size: 17px;
  color: var(--off-white);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:hover, .field textarea:hover{ border-color: #b0b6bd; }
.field input::placeholder, .field textarea::placeholder{ color: #757a80; }
.field input:focus, .field textarea:focus{
  outline: none;
  border-color: #1870f0;
  box-shadow: 0 0 0 3px rgba(24,112,240,.14);
}
.field textarea{ min-height: 150px; resize: vertical; }
.form-status{
  margin-top: 14px;
  font-weight: 600;
  font-size: 13px;
  display: none;
}
.form-status.show{ display: block; }
.form-status.ok{ color: #1a7f37; }
.form-status.err{ color: #c62828; }

.contact-side h2{
  font-family: var(--sans);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--off-white);
  margin-bottom: 14px;
}
.contact-side p{ color: #4b4f54; font-size: 16.5px; font-weight: 500; line-height: 1.7; margin-bottom: 26px; }
.contact-fact{
  border-top: 1px solid var(--line);
  padding: 18px 0 16px;
}
.contact-fact .cf-label{
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #6a6e73;
  margin-bottom: 6px;
}
.contact-fact .cf-value{ font-size: 17px; font-weight: 500; color: var(--off-white); }
.contact-fact a.cf-value{ color: #1870f0; }
.contact-fact a.cf-value:hover{ text-decoration: underline; }

/* ---------- footer ---------- */
.site-footer{
  background: #ffffff;
  border-top: 1px solid var(--line);
  padding: 56px 0 30px;
  font-size: 15px;
  color: #5f6368;
}
.footer-grid{
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 22px;
}
@media (max-width: 760px){ .footer-grid{ grid-template-columns: 1fr; gap: 26px; } }
.footer-brand{
  font-size: 17px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--off-white);
  margin-bottom: 10px;
}
.footer-col .col-label{
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #1073f0;
  margin-bottom: 14px;
}
.footer-col a, .footer-col div{ display: block; margin-bottom: 8px; }
.footer-col a:hover{ color: #1073f0; }
.footer-bottom{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: .05em;
  color: rgba(16,18,20,.5);
}

/* ---------- floating whatsapp (monochrome) ---------- */
.wa-float{
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 50;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  border: 1px solid rgba(0,0,0,.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .18s ease, border-color .18s ease, transform .18s ease;
}
.wa-float:hover{ background: #1fb958; border-color: rgba(0,0,0,.06); transform: translateY(-3px); }
.wa-float:active{ transform: translateY(0) scale(.96); }
.wa-float svg{ width: 28px; height: 28px; }


.hero-banner {
    background-image: url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.hero-banner h1 {
    font-size: 4rem;
    font-weight: 900;
    color: #00d2ff;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.hero-banner p {
    font-size: 1.3rem;
    color: #ffffff;
    max-width: 800px;
    line-height: 1.6;
}

.hero-bg img {
  opacity: 1 !important;
}

.wa-text {
  background-color: white;
  color: #25d366;
  padding: 8px 16px;
  border-radius: 25px;
  margin-right: 12px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
}

a[href*="wa.me"] {
  display: flex !important;
  align-items: center;
  text-decoration: none;
}

.hero-content h1,
.hero-content .lede,
.hero-content .label {
  color: #1870f0 !important;
}

.hero-actions .btn-ghost {
  color: #1870f0 !important;
  border-color: #1870f0 !important;
  background-color: rgba(255, 255, 255, 0.85) !important;
}

.wa-float {
  width: max-content !important;
  height: auto !important;
  background-color: transparent !important;
  overflow: visible !important;
}

.wa-text {
  white-space: nowrap !important;
}

.wa-float svg {
  flex-shrink: 0 !important;
  width: 50px !important;
  height: 50px !important;
}

.wa-float svg {
  background-color: #25d366 !important;
  border-radius: 50% !important;
  padding: 12px !important;
  fill: white !important;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2) !important;
  box-sizing: border-box !important;
}

.wa-text {
  font-size: 20px !important;
  padding: 16px 28px !important;
}

.hero-content .lede {
  background-color: rgba(255, 255, 255, 0.8) !important;
  padding: 15px !important;
  border-radius: 10px !important;
  display: inline-block !important;
}