/* ==========================================================================
   PT Cikloin Trisatya Mavendra — Corporate Website
   Industrial-corporate design system
   ========================================================================== */

/* ----- Design tokens ----------------------------------------------------- */
:root {
  /* Brand palette */
  --navy:        #1B4F9C;
  --navy-deep:   #143a73;
  --navy-darker: #0e2a55;
  --red:         #E1342B;
  --yellow:      #F5B400;

  /* Neutrals */
  --ink:        #0f1b2d;
  --body:       #33445c;
  --muted:      #6b7a90;
  --line:       #e4e9f1;
  --bg:         #ffffff;
  --bg-soft:    #f4f7fb;
  --bg-navy:    #0e2a55;

  /* Type */
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Rhythm */
  --container: 1200px;
  --gutter: clamp(1.25rem, 5vw, 4rem);
  --section-y: clamp(4.5rem, 9vw, 8.5rem);
  --radius: 14px;
  --radius-lg: 22px;

  --shadow-sm: 0 2px 8px rgba(15, 27, 45, .06);
  --shadow-md: 0 14px 40px rgba(15, 27, 45, .10);
  --shadow-lg: 0 30px 70px rgba(14, 42, 85, .18);

  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ----- Reset ------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  font-family: var(--font);
  color: var(--body);
  background: var(--bg);
  line-height: 1.65;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, iframe { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }

/* ----- Typography -------------------------------------------------------- */
h1, h2, h3, h4 { color: var(--ink); line-height: 1.08; font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4.4vw, 3.25rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); letter-spacing: -0.01em; }
p { text-wrap: pretty; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: .8rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--navy);
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; background: var(--red); border-radius: 2px;
}
.eyebrow--light { color: rgba(255,255,255,.85); }

.lead { font-size: clamp(1.1rem, 1.6vw, 1.3rem); color: var(--body); }

/* ----- Layout helpers ---------------------------------------------------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); }
.section--soft { background: var(--bg-soft); }
.section--navy { background: var(--bg-navy); color: rgba(255,255,255,.82); }
.section--navy h2, .section--navy h3 { color: #fff; }

.section-head { max-width: 720px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head .lead { margin-top: 1.1rem; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }

/* Animated heading underline — draws in when the heading scrolls into view */
.section-head h2 { position: relative; }
.section-head h2::after {
  content: ""; display: block; width: 56px; height: 3px; margin-top: .9rem;
  background: var(--red); border-radius: 3px;
  transform: scaleX(0); transform-origin: left center;
  transition: transform .7s var(--ease) .15s;
}
.section-head--center h2::after { margin-inline: auto; transform-origin: center; }
.section-head.is-uline h2::after { transform: scaleX(1); }
@media (prefers-reduced-motion: reduce) {
  .section-head h2::after { transform: scaleX(1); transition: none; }
}

/* ----- Buttons ----------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .95rem 1.6rem; border-radius: 100px;
  font-weight: 700; font-size: .98rem; letter-spacing: .01em;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
  will-change: transform;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--red); color: #fff; box-shadow: 0 10px 26px rgba(225,52,43,.32); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(225,52,43,.42); }
.btn--navy { background: var(--navy); color: #fff; box-shadow: 0 10px 26px rgba(27,79,156,.30); }
.btn--navy:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(27,79,156,.40); }
.btn--ghost { background: rgba(255,255,255,.10); color: #fff; border: 1.5px solid rgba(255,255,255,.4); }
.btn--ghost:hover { background: rgba(255,255,255,.18); transform: translateY(-2px); }
.btn--outline { background: transparent; color: var(--navy); border: 1.5px solid var(--line); }
.btn--outline:hover { border-color: var(--navy); transform: translateY(-2px); }
.btn--block { width: 100%; }

/* ----- Header / Nav ------------------------------------------------------ */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .35s var(--ease), box-shadow .35s var(--ease), padding .35s var(--ease);
  padding-block: 1.1rem;
}
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.header.is-scrolled { background: rgba(255,255,255,.92); backdrop-filter: saturate(160%) blur(12px); box-shadow: var(--shadow-sm); padding-block: .7rem; }

.brand { display: flex; align-items: center; gap: .7rem; color: #fff; transition: color .35s var(--ease); }
.header.is-scrolled .brand { color: var(--ink); }
.brand__mark {
  flex: none; width: 44px; height: 44px; box-sizing: border-box;
  background: #fff; border-radius: 11px; padding: 5px; object-fit: contain;
  box-shadow: 0 2px 8px rgba(0,0,0,.12);
}
.brand__name { font-weight: 800; font-size: 1.18rem; letter-spacing: -0.02em; line-height: 1; }
.brand__sub { display: block; font-size: .62rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; opacity: .7; margin-top: 3px; }

.nav { display: none; align-items: center; gap: .35rem; }
.nav a {
  padding: .55rem .9rem; border-radius: 100px; font-weight: 600; font-size: .95rem;
  color: rgba(255,255,255,.9); transition: color .25s, background .25s;
}
.header.is-scrolled .nav a { color: var(--body); }
.nav a:hover { color: #fff; background: rgba(255,255,255,.15); }
.header.is-scrolled .nav a:hover { color: var(--navy); background: var(--bg-soft); }

.header__cta { display: none; }

/* mobile toggle */
.nav-toggle { display: inline-flex; flex-direction: column; gap: 5px; padding: 10px; z-index: 110; }
.nav-toggle span { width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: transform .3s var(--ease), opacity .3s; }
.header.is-scrolled .nav-toggle span { background: var(--ink); }
body.menu-open .nav-toggle span { background: #fff; }
body.menu-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile drawer */
.mobile-menu {
  position: fixed; inset: 0; z-index: 105;
  background: var(--bg-navy);
  display: flex; flex-direction: column; justify-content: center; gap: .4rem;
  padding: var(--gutter);
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity .35s var(--ease), transform .35s var(--ease), visibility .35s;
}
body.menu-open .mobile-menu { opacity: 1; visibility: visible; transform: none; }
.mobile-menu a { color: #fff; font-size: 1.6rem; font-weight: 700; padding: .5rem 0; letter-spacing: -.01em; }
.mobile-menu a:last-child { margin-top: 1.5rem; }

/* ----- Hero -------------------------------------------------------------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; color: #fff; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(14,42,85,.95) 0%, rgba(20,58,115,.82) 45%, rgba(14,42,85,.45) 100%),
    linear-gradient(to top, rgba(14,42,85,.7), transparent 40%);
}
.hero__content { padding-block: 8rem 5rem; max-width: 860px; }
.hero h1 {
  color: #fff; font-size: clamp(2.8rem, 8vw, 6rem); line-height: .98; margin: 1.3rem 0 0;
  letter-spacing: -0.03em;
}
.hero h1 .accent { color: var(--yellow); }
.hero__statement { margin-top: 1.6rem; font-size: clamp(1.05rem, 1.8vw, 1.3rem); color: rgba(255,255,255,.9); max-width: 620px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2.4rem; }

.hero__stats {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem 2rem;
  margin-top: 3.5rem; padding-top: 2.2rem; border-top: 1px solid rgba(255,255,255,.18);
  max-width: 640px;
}
.stat__num { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800; color: #fff; letter-spacing: -0.02em; line-height: 1; }
.stat__num .unit { color: var(--yellow); }
.stat__label { font-size: .82rem; color: rgba(255,255,255,.72); margin-top: .45rem; letter-spacing: .02em; }

.scroll-cue {
  position: absolute; bottom: .7rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.6);
}
/* Hide on small/short screens where stacked hero stats reach the bottom */
@media (max-width: 900px), (max-height: 760px) { .scroll-cue { display: none; } }
.scroll-cue__line { width: 1px; height: 42px; background: linear-gradient(rgba(255,255,255,.7), transparent); position: relative; overflow: hidden; }
.scroll-cue__line::after { content:""; position:absolute; top:-50%; left:0; width:100%; height:50%; background:var(--yellow); animation: cue 1.8s var(--ease) infinite; }
@keyframes cue { to { top: 100%; } }

/* ----- Trust bar --------------------------------------------------------- */
.trustbar { background: var(--navy-darker); color: rgba(255,255,255,.7); }
.trustbar__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1rem 2.4rem; padding-block: 1.4rem; }
.trustbar span { font-weight: 600; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; opacity: .85; display: inline-flex; align-items: center; gap: .5rem; }
.trustbar span::before { content:""; width:6px; height:6px; border-radius:50%; background:var(--yellow); }

/* ----- Overview / Story -------------------------------------------------- */
.split { display: grid; gap: clamp(2.5rem, 5vw, 4.5rem); align-items: center; }
.split__media { position: relative; }
.split__media img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); object-fit: cover; }
.split__badge {
  position: absolute; bottom: -22px; left: -10px; background: #fff; border-radius: var(--radius);
  padding: 1.1rem 1.4rem; box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: .9rem;
  border-left: 4px solid var(--red);
}
.split__badge strong { display: block; font-size: 1.7rem; color: var(--ink); line-height: 1; font-weight: 800; }
.split__badge span { font-size: .8rem; color: var(--muted); }

/* Overview: factory photo as a section background with a white gradient veil */
.overview--bg { position: relative; overflow: hidden; }
.overview__bg { position: absolute; inset: 0; z-index: 0; }
.overview__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.overview__bg::after {
  content: ""; position: absolute; inset: 0;
  /* mobile-first: strong white veil so dark text reads over the photo */
  background:
    linear-gradient(to bottom, rgba(255,255,255,.97) 0%, rgba(255,255,255,.9) 45%, rgba(255,255,255,.93) 100%);
}
.overview--bg .container { position: relative; z-index: 1; }
.overview__layout { position: relative; display: grid; gap: clamp(2.5rem, 5vw, 4rem); }
.overview__media { position: relative; }

.video-block__head { margin-bottom: 1.2rem; }
.video-block__head .eyebrow { margin-bottom: .4rem; }
.video-block__head h3 { font-size: clamp(1.4rem, 3vw, 2rem); color: var(--ink); letter-spacing: -.01em; }
.video-embed {
  position: relative; width: 100%; aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-md); background: var(--navy-darker);
}
.video-embed iframe,
.video-embed video { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; object-fit: cover; background: var(--navy-darker); }

.video-block__note { margin-top: .8rem; font-size: .82rem; }
.video-block__note a { color: var(--navy); font-weight: 600; text-decoration: none; }
.video-block__note a:hover { text-decoration: underline; }

.prose p + p { margin-top: 1.1rem; }
.prose strong { color: var(--ink); font-weight: 700; }

/* Timeline */
.timeline { margin-top: 2.5rem; display: grid; gap: 0; }
.tl {
  display: grid; grid-template-columns: 72px 1fr; gap: 1.3rem; padding-bottom: 1.8rem; position: relative;
}
.tl:not(:last-child)::before {
  content: ""; position: absolute; left: 35px; top: 34px; bottom: 0; width: 2px; background: var(--line);
}
.tl__year {
  font-weight: 800; font-size: 1.05rem; color: #fff; background: var(--navy);
  width: 72px; height: 34px; border-radius: 100px; display: grid; place-items: center; letter-spacing: -.01em;
}
.tl:first-child .tl__year { background: var(--red); }
.tl h4 { font-size: 1.05rem; color: var(--ink); margin-bottom: .25rem; }
.tl p { font-size: .96rem; color: var(--body); }

/* ----- Capabilities ------------------------------------------------------ */
.cap-grid { display: grid; gap: 1.2rem; grid-template-columns: 1fr; margin-top: .5rem; }
.cap {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.cap:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.cap__ic { width: 48px; height: 48px; border-radius: 12px; background: var(--bg-soft); color: var(--navy); display: grid; place-items: center; margin-bottom: 1rem; }
.cap__ic svg { width: 24px; height: 24px; }
.cap h3 { font-size: 1.12rem; margin-bottom: .4rem; }
.cap p { font-size: .94rem; color: var(--body); }

/* Facilities spec band */
.facilities { margin-top: clamp(3rem, 5vw, 4.5rem); }
.spec-grid { display: grid; gap: 1.2rem; grid-template-columns: 1fr; margin-top: 2rem; }
.spec {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: #fff; border-radius: var(--radius); padding: 1.6rem;
}
.spec__num { font-size: 2.4rem; font-weight: 800; letter-spacing: -.02em; line-height: 1; }
.spec__num .unit { color: var(--yellow); font-size: 1.1rem; }
.spec h4 { color: #fff; font-size: 1rem; margin: .7rem 0 .3rem; }
.spec p { font-size: .9rem; color: rgba(255,255,255,.75); }
.spec--list { background: #fff; color: var(--body); border: 1px solid var(--line); }
.spec--list h4 { color: var(--ink); margin-top: 0; }
.spec--list ul { display: grid; gap: .55rem; margin-top: .9rem; }
.spec--list li { font-size: .92rem; padding-left: 1.5rem; position: relative; }
.spec--list li::before { content:""; position:absolute; left:0; top:.55em; width:8px; height:8px; background:var(--yellow); border-radius:2px; transform: rotate(45deg); }

/* ----- Products ---------------------------------------------------------- */
.products-grid { display: grid; gap: 1.3rem; grid-template-columns: 1fr; }
.product {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; background: var(--ink);
  min-height: 320px; display: flex; align-items: flex-end; isolation: isolate;
  box-shadow: var(--shadow-sm); transition: box-shadow .35s var(--ease), transform .35s var(--ease);
}
.product:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.product__img { position: absolute; inset: 0; z-index: -2; }
.product__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.product:hover .product__img img { transform: scale(1.06); }
.product::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to top, rgba(10,22,40,.92) 8%, rgba(10,22,40,.45) 45%, rgba(10,22,40,.05) 75%);
}
.product__body { padding: clamp(1.4rem, 3vw, 2rem); color: #fff; width: 100%; }
.product__tag { display: inline-block; font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--ink); background: var(--yellow); padding: .3rem .7rem; border-radius: 100px; margin-bottom: .9rem; }
.product h3 { color: #fff; font-size: clamp(1.3rem, 2.4vw, 1.7rem); margin-bottom: .5rem; }
.product__desc { color: rgba(255,255,255,.82); font-size: .96rem; max-height: 0; opacity: 0; overflow: hidden; transition: max-height .45s var(--ease), opacity .45s var(--ease), margin .45s var(--ease); }
.product:hover .product__desc, .product:focus-within .product__desc { max-height: 200px; opacity: 1; margin-top: .2rem; }
.product__meta { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1rem; }
.product__meta span { font-size: .76rem; color: rgba(255,255,255,.9); border: 1px solid rgba(255,255,255,.3); border-radius: 100px; padding: .25rem .7rem; }
.product--feature { min-height: 420px; }

/* ----- Clients ----------------------------------------------------------- */
.clients-band { position: relative; overflow: hidden; }
.clients-band__bg { position: absolute; inset: 0; z-index: -2; }
.clients-band__bg img { width: 100%; height: 100%; object-fit: cover; }
.clients-band__bg::after { content:""; position:absolute; inset:0; background: linear-gradient(120deg, rgba(14,42,85,.96), rgba(20,58,115,.88)); }

.clients-grid { display: grid; gap: 1rem; grid-template-columns: repeat(2, 1fr); margin-top: 2.5rem; }
.client {
  background: #fff; border: 1px solid rgba(255,255,255,.6); border-radius: var(--radius);
  padding: 1.5rem 1.3rem 1.2rem; text-align: center; min-height: 158px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .9rem;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.client:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.client__logo { height: 60px; width: 100%; display: grid; place-items: center; }
.client__logo img { max-height: 60px; max-width: 100%; width: auto; object-fit: contain; }
.client__wordmark { font-weight: 800; font-size: 2rem; letter-spacing: -.02em; color: var(--navy); line-height: 1; }
.client__role { font-size: .92rem; font-weight: 700; color: var(--body); letter-spacing: .01em; }

.badges { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.5rem; }
.badge {
  display: flex; align-items: center; gap: .85rem; background: rgba(255,255,255,.08);
  border: 1px solid rgba(245,180,0,.35); border-radius: 100px; padding: .7rem 1.3rem .7rem .8rem;
}
.badge__ic { width: 38px; height: 38px; border-radius: 50%; background: var(--yellow); color: var(--navy-darker); display: grid; place-items: center; flex: none; }
.badge__ic svg { width: 20px; height: 20px; }
.badge strong { color: #fff; font-size: .95rem; display: block; line-height: 1.2; }
.badge span { color: rgba(255,255,255,.65); font-size: .78rem; }

/* ----- Why us ------------------------------------------------------------ */
.why-grid { display: grid; gap: 1.2rem; grid-template-columns: 1fr; }
.why {
  display: flex; gap: 1.1rem; padding: 1.5rem; border-radius: var(--radius);
  background: #fff; border: 1px solid var(--line); transition: transform .3s var(--ease), box-shadow .3s;
}
.why:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.why__ic { flex: none; width: 50px; height: 50px; border-radius: 14px; background: var(--navy); color: #fff; display: grid; place-items: center; }
.why__ic svg { width: 24px; height: 24px; }
.why h3 { font-size: 1.1rem; margin-bottom: .35rem; }
.why p { font-size: .95rem; color: var(--body); }

/* ----- Product showcase: poster carousel + safety features --------------- */
.showcase { margin-top: clamp(3.5rem, 7vw, 6rem); }
.showcase__head { margin-bottom: clamp(2rem, 4vw, 3rem); }
.showcase__grid { display: grid; gap: clamp(2rem, 5vw, 3.5rem); align-items: center; }

/* Carousel */
.carousel { position: relative; max-width: 460px; margin-inline: auto; justify-self: center; width: 100%; }
.carousel__viewport { overflow: hidden; border-radius: var(--radius-lg); }
.carousel__track {
  display: flex; gap: 0; scroll-snap-type: x mandatory;
  overflow-x: auto; scroll-behavior: smooth;
  -ms-overflow-style: none; scrollbar-width: none;
}
.carousel__track::-webkit-scrollbar { display: none; }
.carousel__slide {
  flex: 0 0 100%; scroll-snap-align: center; margin: 0;
  background: var(--navy-darker);
}
.carousel__slide img { display: block; width: 100%; height: auto; }
.carousel__btn {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  width: 44px; height: 44px; border-radius: 50%; border: 0; cursor: pointer;
  background: #fff; color: var(--navy); box-shadow: var(--shadow-md);
  display: grid; place-items: center;
  transition: background .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
}
.carousel__btn:hover { background: var(--navy); color: #fff; }
.carousel__btn:active { transform: translateY(-50%) scale(.94); }
.carousel__btn svg { width: 22px; height: 22px; }
.carousel__btn--prev { left: 12px; }
.carousel__btn--next { right: 12px; }
.carousel__btn:focus-visible { outline: 3px solid var(--yellow); outline-offset: 2px; }
.carousel__dots { display: flex; justify-content: center; gap: .5rem; margin-top: 1.1rem; }
.carousel__dot {
  width: 9px; height: 9px; border-radius: 50%; border: 0; padding: 0; cursor: pointer;
  background: var(--line); transition: background .25s var(--ease), transform .25s var(--ease);
}
.carousel__dot.is-active { background: var(--red); transform: scale(1.25); }

/* Features list */
.features__title { font-size: clamp(1.2rem, 2.4vw, 1.5rem); color: var(--ink); margin-bottom: 1.3rem; }
.features__list { list-style: none; display: grid; gap: .85rem; }
.feature { display: flex; align-items: center; gap: 1rem; }
.feature__ic {
  flex: none; width: 50px; height: 50px; border-radius: 14px;
  background: var(--navy); color: #fff; display: grid; place-items: center;
}
.feature__ic svg { width: 24px; height: 24px; }
.feature__txt { font-size: 1rem; color: var(--body); line-height: 1.35; }
.feature__txt strong { color: var(--ink); font-weight: 700; }
.feature__txt em { font-style: normal; color: var(--muted); font-size: .85em; }

/* Tablet+: carousel and features side by side */
@media (min-width: 700px) {
  .showcase__grid { grid-template-columns: minmax(0, .95fr) 1.05fr; align-items: center; gap: clamp(2rem, 4vw, 3.5rem); }
  .carousel { max-width: 420px; }
}

/* ----- Contact ----------------------------------------------------------- */
.contact-grid { display: grid; gap: clamp(2rem, 4vw, 3.5rem); grid-template-columns: 1fr; }
.contact-info { display: grid; gap: 1.2rem; align-content: start; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-item__ic { flex: none; width: 44px; height: 44px; border-radius: 12px; background: var(--bg-soft); color: var(--navy); display: grid; place-items: center; }
.contact-item__ic svg { width: 22px; height: 22px; }
.contact-item h4 { font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin-bottom: .25rem; font-weight: 700; }
.contact-item p, .contact-item a { font-size: 1.02rem; color: var(--ink); font-weight: 500; }
.contact-item a:hover { color: var(--navy); }

.map { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--line); min-height: 280px; }
.map iframe { width: 100%; height: 100%; min-height: 280px; border: 0; }

.form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.5rem, 3vw, 2.2rem); box-shadow: var(--shadow-sm); }
.form h3 { margin-bottom: 1.4rem; }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-size: .82rem; font-weight: 600; color: var(--ink); margin-bottom: .45rem; }
.field input, .field textarea, .field select {
  width: 100%; padding: .85rem 1rem; border: 1.5px solid var(--line); border-radius: 10px;
  background: var(--bg-soft); transition: border-color .25s, background .25s, box-shadow .25s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--navy); background: #fff; box-shadow: 0 0 0 4px rgba(27,79,156,.10);
}
.field textarea { resize: vertical; min-height: 120px; }
.form__row { display: grid; gap: 0 1rem; grid-template-columns: 1fr; }
.form__note { font-size: .82rem; color: var(--muted); margin-top: .9rem; text-align: center; }
.form__ok { display: none; margin-top: 1rem; padding: .9rem 1rem; border-radius: 10px; background: rgba(39,174,96,.1); color: #1e7e45; font-size: .92rem; font-weight: 600; }
.form.is-sent .form__ok { display: block; }

/* ----- Footer ------------------------------------------------------------ */
.footer { background: var(--bg-navy); color: rgba(255,255,255,.65); padding-block: clamp(3rem, 5vw, 4.5rem) 2rem; }
.footer__grid { display: grid; gap: 2.5rem; grid-template-columns: 1fr; }
.footer__brand .brand { color: #fff; margin-bottom: 1.1rem; }
.footer__brand p { font-size: .92rem; max-width: 320px; }
.footer__tag { color: var(--yellow); font-weight: 800; letter-spacing: -.01em; margin-top: 1.2rem; font-size: 1.05rem; }
.footer h4 { color: #fff; font-size: .82rem; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 1.1rem; }
.footer__links { display: grid; gap: .65rem; }
.footer__links a { font-size: .94rem; transition: color .25s; }
.footer__links a:hover { color: var(--yellow); }
.footer__contact { display: grid; gap: .7rem; font-size: .94rem; }
.footer__contact a:hover { color: #fff; }
.footer__bottom {
  margin-top: 3rem; padding-top: 1.6rem; border-top: 1px solid rgba(255,255,255,.12);
  display: flex; flex-wrap: wrap; gap: .8rem 1.5rem; justify-content: space-between; align-items: center;
  font-size: .82rem; color: rgba(255,255,255,.5);
}

/* ----- Scroll reveal ----------------------------------------------------- */
.js .reveal { opacity: 0; transform: translateY(28px); }
.js .reveal-img { clip-path: inset(0 0 100% 0); }

@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1 !important; transform: none !important; }
  .js .reveal-img { clip-path: none !important; }
  html { scroll-behavior: auto; }
  .scroll-cue__line::after { animation: none; }
}

/* ----- Responsive -------------------------------------------------------- */
@media (min-width: 600px) {
  .form__row { grid-template-columns: 1fr 1fr; }
  .cap-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .spec-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .nav { display: flex; }
  .header__cta { display: inline-flex; }
  .nav-toggle, .mobile-menu { display: none; }
  .hero__stats { grid-template-columns: repeat(4, 1fr); }
  .split { grid-template-columns: 1fr 1fr; }
  .split--reverse .split__media { order: 2; }
  /* Overview: two columns — text/timeline left, video right */
  .overview__layout { grid-template-columns: 1.05fr .95fr; align-items: start; gap: clamp(2.5rem, 4vw, 4rem); }
  .overview__media { position: sticky; top: 100px; }
  /* Desktop: fade white from the left so the photo backdrop shows on the right */
  .overview__bg::after {
    background:
      linear-gradient(to right, #ffffff 0%, rgba(255,255,255,.96) 38%, rgba(255,255,255,.82) 60%, rgba(255,255,255,.55) 80%, rgba(255,255,255,.35) 100%),
      linear-gradient(to bottom, rgba(255,255,255,.6), rgba(255,255,255,0) 22%, rgba(255,255,255,0) 78%, rgba(255,255,255,.6));
  }
  .cap-grid { grid-template-columns: repeat(3, 1fr); }
  .spec-grid { grid-template-columns: repeat(4, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  /* Showcase: carousel left, features right */
  .showcase__grid { grid-template-columns: minmax(0, .9fr) 1.1fr; gap: clamp(2.5rem, 5vw, 4.5rem); }
  .carousel { max-width: 480px; }
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .product--feature { grid-column: span 2; grid-row: span 2; }
  .clients-grid { grid-template-columns: repeat(4, 1fr); }
  .contact-grid { grid-template-columns: 1.05fr 1fr; }
  .footer__grid { grid-template-columns: 1.4fr 1fr 1.2fr; }
}

@media (min-width: 1100px) {
  .why-grid { grid-template-columns: repeat(4, 1fr); }
}
