/* =========================================================
   YCK Consulting — Design System
   Direction B: KPMG-inspired, SME-warm
   Brand navy #1C2751 (extracted from logo)
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@500;600;700;800&family=Public+Sans:wght@400;500;600;700&display=swap');

:root {
  /* Brand */
  --navy:        #1C2751;   /* logo navy — dominant */
  --navy-900:    #141B3A;   /* deeper, for CTA/footer depth */
  --navy-700:    #2C396B;   /* lighter navy, secondary */
  --navy-tint:   #EEF0F6;   /* faint navy wash for panels */

  /* Neutrals */
  --paper:       #FFFFFF;
  --mist:        #F5F6F8;   /* section background */
  --line:        #E3E6ED;   /* hairline borders */
  --slate:       #565E72;   /* body text */
  --slate-light: #8A91A3;   /* muted captions */

  /* Warm accent — muted, used sparingly */
  --amber:       #CE8A3D;
  --amber-dark:  #B5762C;
  --amber-tint:  #F7EFE3;

  /* Type */
  --display: 'Archivo', system-ui, sans-serif;
  --body:    'Public Sans', system-ui, sans-serif;

  /* Rhythm */
  --wrap: 1200px;
  --gutter: clamp(20px, 5vw, 48px);
  --radius: 4px;         /* restrained, near-square */
  --radius-lg: 8px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
body {
  margin: 0;
  font-family: var(--body);
  color: var(--navy);
  background: var(--paper);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1,h2,h3,h4 { font-family: var(--display); font-weight: 700; line-height: 1.12; letter-spacing: -.01em; margin: 0; color: var(--navy); }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

/* ---------- Layout helpers ---------- */
.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(64px, 9vw, 120px); }
.section--mist { background: var(--mist); }
.section--tight { padding-block: clamp(48px, 6vw, 72px); }

/* Eyebrow — signature: layered offset square echoing the logo mark */
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--body); font-weight: 700; font-size: .74rem;
  letter-spacing: .18em; text-transform: uppercase; color: var(--amber-dark);
  margin: 0 0 22px;
}
.eyebrow::before {
  content: ""; width: 16px; height: 16px; flex: none;
  background: var(--navy);
  box-shadow: 5px 5px 0 0 var(--amber);
}
.eyebrow--light { color: #E7C79B; }
.eyebrow--light::before { background: #fff; box-shadow: 5px 5px 0 0 var(--amber); }

.section-title { font-size: clamp(1.9rem, 3.6vw, 2.9rem); font-weight: 800; max-width: 20ch; }
.section-intro { color: var(--slate); font-size: 1.06rem; max-width: 58ch; margin-top: 18px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--body); font-weight: 600; font-size: .95rem;
  padding: 14px 26px; border-radius: var(--radius);
  border: 1.5px solid transparent; cursor: pointer;
  transition: transform .2s var(--ease), background .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
}
.btn svg { width: 17px; height: 17px; }
.btn--primary { background: var(--amber); color: #fff; }
.btn--primary:hover { background: var(--amber-dark); transform: translateY(-2px); }
.btn--navy { background: var(--navy); color: #fff; }
.btn--navy:hover { background: var(--navy-900); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--navy); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--navy); transform: translateY(-2px); }
.btn--ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.35); }
.btn--ghost-light:hover { border-color: #fff; background: rgba(255,255,255,.08); }

/* text link with arrow */
.tlink {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: .95rem; color: var(--navy);
  border-bottom: 2px solid transparent; padding-bottom: 2px; width: fit-content;
  transition: gap .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
}
.tlink svg { width: 16px; height: 16px; transition: transform .2s var(--ease); }
.tlink:hover { color: var(--amber-dark); border-color: var(--amber); }
.tlink:hover svg { transform: translateX(4px); }

/* =========================================================
   HEADER / NAV
   ========================================================= */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.9); backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid transparent; transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.site-header.is-stuck { border-color: var(--line); box-shadow: 0 1px 20px rgba(20,27,58,.05); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 78px; }
.nav__logo img { height: 40px; width: auto; }
.nav__menu { display: flex; align-items: center; gap: 4px; }
.nav__link {
  position: relative; font-weight: 500; font-size: .96rem; color: var(--navy);
  padding: 8px 16px; border-radius: var(--radius); transition: color .2s var(--ease);
}
.nav__link:hover { color: var(--amber-dark); }
.nav__link.is-active { color: var(--amber-dark); }
.nav__actions { display: flex; align-items: center; gap: 14px; }

/* dropdown */
.nav__item { position: relative; }
.nav__item--has-menu > .nav__link { display: inline-flex; align-items: center; gap: 6px; }
.nav__item--has-menu > .nav__link::after {
  content: ""; width: 7px; height: 7px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px); transition: transform .2s var(--ease);
}
.nav__dropdown {
  position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%) translateY(6px);
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(20,27,58,.14); padding: 8px; min-width: 250px;
  opacity: 0; visibility: hidden; transition: opacity .2s var(--ease), transform .2s var(--ease);
}
/* invisible bridge fills the gap between the link and the menu so hover isn't lost */
.nav__dropdown::before { content: ""; position: absolute; top: -14px; left: -8px; right: -8px; height: 16px; }
.nav__item--has-menu:hover .nav__dropdown,
.nav__item--has-menu:focus-within .nav__dropdown,
.nav__item--has-menu.open .nav__dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav__item--has-menu:hover > .nav__link::after,
.nav__item--has-menu.open > .nav__link::after { transform: rotate(225deg) translateY(2px); }
.nav__dropdown a {
  display: flex; flex-direction: column; gap: 2px; padding: 11px 14px; border-radius: var(--radius); transition: background .18s var(--ease);
}
.nav__dropdown a:hover { background: var(--mist); }
.nav__dropdown strong { font-family: var(--body); font-weight: 600; font-size: .95rem; }
.nav__dropdown small { color: var(--slate-light); font-size: .8rem; }

/* burger */
.nav__burger { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; cursor: pointer; position: relative; }
.nav__burger span, .nav__burger span::before, .nav__burger span::after {
  content: ""; position: absolute; left: 50%; top: 50%; width: 20px; height: 2px; background: var(--navy); transform: translate(-50%,-50%); transition: transform .25s var(--ease), opacity .2s var(--ease);
}
.nav__burger span::before { top: -6px; }
.nav__burger span::after { top: 6px; }

/* =========================================================
   HERO
   ========================================================= */
.hero { position: relative; background: var(--paper); overflow: hidden; }
.hero__grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 72px);
  align-items: center; padding-block: clamp(56px, 7vw, 96px);
}
.hero__eyebrow { margin-bottom: 24px; }
.hero h1 {
  font-size: clamp(2.3rem, 5vw, 4rem); font-weight: 800; letter-spacing: -.025em;
  line-height: 1.05;
}
.hero h1 em { font-style: normal; color: var(--amber-dark); }
.hero__lead { margin-top: 24px; color: var(--slate); font-size: 1.15rem; max-width: 46ch; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero__trust { display: flex; gap: 32px; margin-top: 44px; padding-top: 32px; border-top: 1px solid var(--line); flex-wrap: wrap; }
.hero__trust div { display: flex; flex-direction: column; }
.hero__trust b { font-family: var(--display); font-weight: 800; font-size: 1.7rem; color: var(--navy); line-height: 1; }
.hero__trust span { font-size: .84rem; color: var(--slate-light); margin-top: 6px; letter-spacing: .02em; }

/* hero art panel */
.hero__art { position: relative; aspect-ratio: 4 / 3; }
.hero__art svg { width: 100%; height: 100%; }

/* =========================================================
   VALUE / TRUST STRIP
   ========================================================= */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: #fff; }
.pillar { padding: clamp(28px, 3.5vw, 44px); border-right: 1px solid var(--line); }
.pillar:last-child { border-right: none; }
.pillar__icon { width: 46px; height: 46px; color: var(--navy); margin-bottom: 20px; }
.pillar h3 { font-size: 1.2rem; font-weight: 700; }
.pillar p { margin-top: 10px; color: var(--slate); font-size: .98rem; }

/* =========================================================
   SERVICES
   ========================================================= */
.svc-head { display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: end; margin-bottom: 48px; }
@media (max-width: 720px){ .svc-head { grid-template-columns: 1fr; } }
.svc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.svc-card {
  position: relative; display: flex; flex-direction: column;
  padding: clamp(28px, 3vw, 40px); background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: transform .28s var(--ease), border-color .28s var(--ease), box-shadow .28s var(--ease);
}
.svc-card::before {
  content: ""; position: absolute; left: 0; top: 0; width: 3px; height: 0; background: var(--amber);
  transition: height .3s var(--ease);
}
.svc-card:hover { transform: translateY(-4px); border-color: #cfd5e2; box-shadow: 0 24px 50px -22px rgba(20,27,58,.28); }
.svc-card:hover::before { height: 100%; }
.svc-card__no { font-family: var(--display); font-weight: 700; font-size: .8rem; letter-spacing: .12em; color: var(--slate-light); }
.svc-card__icon { width: 40px; height: 40px; color: var(--navy); margin: 18px 0 22px; }
.svc-card h3 { font-size: 1.4rem; font-weight: 700; }
.svc-card p { margin-top: 12px; color: var(--slate); font-size: 1rem; flex: 1; }
.svc-card .tlink { margin-top: 24px; }

/* =========================================================
   FEATURE ROWS (alternating)
   ========================================================= */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 80px); align-items: center; }
.feature + .feature { margin-top: clamp(56px, 7vw, 100px); }
.feature--flip .feature__media { order: 2; }
.feature__media { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3.2; border: 1px solid var(--line); }
.feature__media svg { width: 100%; height: 100%; }
.feature h3 { font-size: clamp(1.5rem, 2.6vw, 2rem); font-weight: 800; }
.feature__list { margin-top: 22px; display: grid; gap: 14px; }
.feature__list li { display: flex; gap: 12px; color: var(--slate); font-size: 1rem; align-items: flex-start; }
.feature__list svg { width: 20px; height: 20px; color: var(--amber); flex: none; margin-top: 3px; }
.feature .tlink { margin-top: 28px; }

/* =========================================================
   STORIES / TESTIMONIALS
   ========================================================= */
.stories { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.story {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(26px, 3vw, 36px); display: flex; flex-direction: column;
}
.story__stars { display: flex; gap: 3px; color: var(--amber); margin-bottom: 18px; }
.story__stars svg { width: 18px; height: 18px; }
.story p { color: var(--slate); font-size: .97rem; }
.story__tag {
  margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line);
  font-weight: 600; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--navy);
}

/* =========================================================
   CTA BAND
   ========================================================= */
.cta-band { position: relative; background: var(--navy); color: #fff; border-radius: var(--radius-lg); overflow: hidden; padding: clamp(48px, 6vw, 84px) clamp(28px, 5vw, 80px); }
.cta-band__inner { position: relative; z-index: 2; max-width: 640px; }
.cta-band h2 { color: #fff; font-size: clamp(1.8rem, 3.4vw, 2.7rem); font-weight: 800; }
.cta-band p { color: rgba(255,255,255,.75); margin-top: 16px; font-size: 1.08rem; }
.cta-band .hero__cta { margin-top: 32px; }
.cta-band__deco { position: absolute; right: -60px; top: -60px; width: 420px; height: 420px; opacity: .5; z-index: 1; pointer-events: none; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { background: var(--navy-900); color: rgba(255,255,255,.72); padding-block: clamp(56px, 7vw, 84px) 0; }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 40px; padding-bottom: 52px; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer__logo { display: inline-block; background: #fff; padding: 12px 16px; border-radius: 8px; margin-bottom: 20px; }
.footer__brand img { height: 38px; width: auto; display: block; }
.footer__brand p { font-size: .95rem; max-width: 34ch; }
.footer__socials { display: flex; gap: 10px; margin-top: 22px; }
.footer__socials a { width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.18); border-radius: var(--radius); transition: background .2s var(--ease), border-color .2s var(--ease); }
.footer__socials a:hover { background: var(--amber); border-color: var(--amber); }
.footer__socials svg { width: 18px; height: 18px; color: #fff; }
.footer__col h4 { color: #fff; font-family: var(--body); font-weight: 700; font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 20px; }
.footer__col ul { display: grid; gap: 12px; }
.footer__col a { font-size: .95rem; transition: color .2s var(--ease); }
.footer__col a:hover { color: #fff; }
.footer__col li.child a { padding-left: 16px; color: rgba(255,255,255,.55); }
.footer__contact li { font-size: .95rem; margin-bottom: 14px; display: flex; gap: 10px; align-items: flex-start; }
.footer__contact svg { width: 17px; height: 17px; color: var(--amber); flex: none; margin-top: 3px; }
.footer__bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-block: 26px; font-size: .84rem; color: rgba(255,255,255,.5); }

/* =========================================================
   REVEAL ANIMATION
   ========================================================= */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1000px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__art { max-width: 460px; margin-top: 12px; }
  .pillars { grid-template-columns: 1fr; }
  .pillar { border-right: none; border-bottom: 1px solid var(--line); }
  .pillar:last-child { border-bottom: none; }
  .svc-grid { grid-template-columns: 1fr; }
  .feature { grid-template-columns: 1fr; }
  .feature--flip .feature__media { order: 0; }
  .stories { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .nav__menu, .nav__actions .btn { display: none; }
  .nav__burger { display: block; }
  .nav.is-open .nav__menu {
    display: flex; flex-direction: column; align-items: stretch; gap: 2px;
    position: absolute; top: 78px; left: 0; right: 0; background: #fff;
    border-bottom: 1px solid var(--line); padding: 16px var(--gutter) 24px; box-shadow: 0 20px 40px rgba(20,27,58,.1);
  }
  .nav.is-open .nav__link { padding: 12px 8px; border-bottom: 1px solid var(--line); }
  .nav__item--has-menu .nav__dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; padding: 4px 0 4px 16px; min-width: 0; }
  .nav.is-open .nav__actions .btn { display: inline-flex; margin-top: 12px; }
}
@media (max-width: 560px) {
  .footer__top { grid-template-columns: 1fr; }
  .hero__trust { gap: 22px; }
}

/* =========================================================
   INNER PAGE HERO (service / about / contact / placeholder)
   ========================================================= */
.page-hero { background: var(--navy-tint); border-bottom: 1px solid var(--line); }
.page-hero__inner { padding-block: clamp(52px, 7vw, 88px); text-align: center; max-width: 760px; margin-inline: auto; }
.page-hero .eyebrow { justify-content: center; }
.page-hero h1 { font-size: clamp(2rem, 4.4vw, 3.2rem); font-weight: 800; letter-spacing: -.02em; }
.page-hero p { color: var(--slate); margin-top: 20px; font-size: 1.1rem; }
.breadcrumb { display: flex; gap: 8px; justify-content: center; align-items: center; margin-bottom: 22px; font-size: .82rem; color: var(--slate-light); letter-spacing: .04em; }
.breadcrumb a:hover { color: var(--amber-dark); }
.breadcrumb span { opacity: .5; }

/* =========================================================
   SERVICE DETAIL — process + why-choose
   ========================================================= */
.svc-detail { display: grid; grid-template-columns: 1.25fr 1fr; gap: clamp(36px, 5vw, 72px); align-items: start; }
.proc__title, .why__title { font-size: 1.5rem; font-weight: 800; margin-bottom: 28px; }
.proc__list { display: grid; gap: 22px; }
.proc__item { display: grid; grid-template-columns: auto 1fr; gap: 18px; align-items: start; }
.proc__num {
  font-family: var(--display); font-weight: 700; font-size: .9rem; color: #fff;
  width: 34px; height: 34px; flex: none; display: grid; place-items: center;
  background: var(--navy); border-radius: var(--radius);
  box-shadow: 4px 4px 0 0 var(--navy-tint);
}
.proc__item h3 { font-family: var(--body); font-weight: 700; font-size: 1.05rem; color: var(--navy); }
.proc__item p { color: var(--slate); font-size: .98rem; margin-top: 4px; }

.why {
  background: var(--navy); color: #fff; border-radius: var(--radius-lg);
  padding: clamp(30px, 4vw, 44px); position: sticky; top: 100px;
}
.why__title { color: #fff; }
.why__list { display: grid; gap: 16px; margin-bottom: 30px; }
.why__list li { display: flex; gap: 13px; align-items: flex-start; color: rgba(255,255,255,.88); font-size: 1rem; }
.why__list svg { width: 22px; height: 22px; flex: none; color: var(--amber); margin-top: 2px; }
.why .btn { width: 100%; justify-content: center; }

/* =========================================================
   FAQ ACCORDION
   ========================================================= */
.faq { max-width: 860px; margin-inline: auto; }
.faq__head { text-align: center; margin-bottom: 44px; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  font-family: var(--display); font-weight: 700; font-size: clamp(1.05rem, 2vw, 1.25rem); color: var(--navy);
  padding: 26px 48px 26px 0; position: relative; display: block;
}
.faq__q::after {
  content: ""; position: absolute; right: 6px; top: 50%; width: 12px; height: 12px;
  border-right: 2px solid var(--amber-dark); border-bottom: 2px solid var(--amber-dark);
  transform: translateY(-70%) rotate(45deg); transition: transform .3s var(--ease);
}
.faq__item.open .faq__q::after { transform: translateY(-30%) rotate(-135deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq__a p { color: var(--slate); padding-bottom: 26px; padding-right: 40px; font-size: 1rem; }

/* =========================================================
   ABOUT PAGE
   ========================================================= */
.about-lead { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.about-lead__media { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); aspect-ratio: 4/3; background: var(--navy-tint); position: relative; }
.about-lead__media img { width: 100%; height: 100%; object-fit: cover; }
.photo-slot { position: absolute; inset: 0; display: grid; place-content: center; text-align: center; gap: 10px; color: var(--slate-light); }
.photo-slot svg { width: 46px; height: 46px; margin-inline: auto; opacity: .5; }
.photo-slot span { font-size: .84rem; letter-spacing: .04em; max-width: 26ch; }
.vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.vm-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(28px, 3.5vw, 40px); }
.vm-card__icon { width: 46px; height: 46px; color: var(--amber-dark); margin-bottom: 18px; }
.vm-card h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 12px; }
.vm-card p { color: var(--slate); }

/* =========================================================
   CONTACT PAGE
   ========================================================= */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(36px, 5vw, 72px); align-items: start; }
.contact-info h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 800; }
.contact-info__list { margin-top: 34px; display: grid; gap: 22px; }
.contact-info__list li { display: grid; grid-template-columns: auto 1fr; gap: 16px; align-items: start; }
.contact-info__ico { width: 46px; height: 46px; flex: none; display: grid; place-items: center; background: var(--navy-tint); border-radius: var(--radius); color: var(--navy); }
.contact-info__ico svg { width: 21px; height: 21px; }
.contact-info__list dt { font-weight: 700; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--slate-light); margin-bottom: 3px; }
.contact-info__list dd { margin: 0; color: var(--navy); font-weight: 500; }
.contact-info__list a:hover { color: var(--amber-dark); }

.contact-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(28px, 4vw, 44px); box-shadow: 0 30px 60px -40px rgba(20,27,58,.4); }
.form-row { margin-bottom: 18px; }
.form-row label { display: block; font-weight: 600; font-size: .86rem; color: var(--navy); margin-bottom: 8px; }
.form-row input, .form-row textarea {
  width: 100%; font-family: var(--body); font-size: 1rem; color: var(--navy);
  padding: 14px 16px; border: 1.5px solid var(--line); border-radius: var(--radius); background: var(--mist);
  transition: border-color .2s var(--ease), background .2s var(--ease); resize: vertical;
}
.form-row input:focus, .form-row textarea:focus { outline: none; border-color: var(--navy); background: #fff; }
.form-row textarea { min-height: 130px; }
.form-note { font-size: .84rem; color: var(--slate-light); margin-top: 6px; }
.form-status { display: none; padding: 14px 16px; border-radius: var(--radius); font-size: .95rem; margin-bottom: 18px; }
.form-status.show { display: block; }
.form-status.ok { background: #E9F5EC; color: #1E6B36; border: 1px solid #BFE3C8; }
.form-status.err { background: #FBECEC; color: #A32626; border: 1px solid #F0C9C9; }
.contact-card .btn { width: 100%; justify-content: center; margin-top: 6px; }

/* map */
.map-wrap { margin-top: 0; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); }
.map-wrap iframe { display: block; width: 100%; height: 380px; border: 0; }

/* =========================================================
   PLACEHOLDER PAGE
   ========================================================= */
.placeholder { text-align: center; max-width: 620px; margin-inline: auto; padding-block: clamp(60px, 10vw, 130px); }
.placeholder__mark { width: 84px; height: 84px; margin: 0 auto 30px; position: relative; }
.placeholder__mark::before { content: ""; position: absolute; inset: 14px 0 0 14px; background: var(--navy-tint); border-radius: 6px; }
.placeholder__mark::after { content: ""; position: absolute; inset: 0 14px 14px 0; background: var(--navy); border-radius: 6px; }
.placeholder h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; margin-bottom: 16px; }
.placeholder p { color: var(--slate); font-size: 1.08rem; margin-bottom: 32px; }

/* section header centered helper */
.center-head { text-align: center; max-width: 62ch; margin-inline: auto 44px; margin-inline: auto; margin-bottom: 48px; }
.center-head .eyebrow { justify-content: center; }
.center-head .section-title { margin-inline: auto; }

@media (max-width: 1000px) {
  .svc-detail { grid-template-columns: 1fr; }
  .why { position: static; }
  .about-lead { grid-template-columns: 1fr; }
  .vm-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   ANCHOR SCROLL OFFSET (for sticky header)
   ========================================================= */
section[id], [id].page-hero { scroll-margin-top: 96px; }

/* =========================================================
   ABOUT TEAM ILLUSTRATION
   ========================================================= */
.about-lead__media { padding: 0; }
.about-illus { width: 100%; height: 100%; display: block; }

/* =========================================================
   WHATSAPP FLOATING WIDGET  (sits above the back-to-top button)
   ========================================================= */
.wa-widget { position: fixed; right: 22px; bottom: 22px; z-index: 60; transition: bottom .3s var(--ease); }
.wa-widget.raised { bottom: 84px; }
.wa-fab {
  width: 60px; height: 60px; border-radius: 50%; border: none; cursor: pointer;
  background: #25D366; color: #fff; display: grid; place-items: center;
  box-shadow: 0 12px 30px rgba(37,211,102,.45); transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.wa-fab svg { width: 34px; height: 34px; }
.wa-fab:hover { transform: scale(1.06); box-shadow: 0 16px 36px rgba(37,211,102,.55); }
.wa-fab::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(37,211,102,.5); animation: waPulse 2.4s infinite;
}
@keyframes waPulse { 0%{box-shadow:0 0 0 0 rgba(37,211,102,.45)} 70%{box-shadow:0 0 0 16px rgba(37,211,102,0)} 100%{box-shadow:0 0 0 0 rgba(37,211,102,0)} }
@media (prefers-reduced-motion: reduce){ .wa-fab::after{ animation: none; } }

.wa-panel {
  position: absolute; right: 0; bottom: 74px; width: 320px; max-width: calc(100vw - 44px);
  background: #fff; border-radius: 14px; overflow: hidden; border: 1px solid var(--line);
  box-shadow: 0 24px 60px rgba(20,27,58,.28); transform-origin: bottom right;
  animation: waIn .22s var(--ease);
}
.wa-panel[hidden] { display: none; }
@keyframes waIn { from{ opacity:0; transform: translateY(10px) scale(.96);} to{opacity:1; transform:none;} }
.wa-panel__head { background: #075E54; color: #fff; padding: 16px 16px; display: flex; align-items: center; gap: 12px; }
.wa-panel__avatar { width: 42px; height: 42px; flex: none; border-radius: 50%; background: #128C7E; display: grid; place-items: center; font-family: var(--display); font-weight: 800; font-size: .82rem; letter-spacing: .04em; }
.wa-panel__meta { display: flex; flex-direction: column; line-height: 1.3; }
.wa-panel__meta strong { font-family: var(--body); font-weight: 700; font-size: .98rem; }
.wa-panel__meta small { font-size: .78rem; opacity: .85; }
.wa-panel__close { margin-left: auto; background: none; border: none; color: #fff; font-size: 1.5rem; line-height: 1; cursor: pointer; opacity: .85; padding: 0 4px; }
.wa-panel__close:hover { opacity: 1; }
.wa-panel__body { padding: 16px; background: #E5DDD5; }
.wa-bubble { background: #fff; border-radius: 4px 12px 12px 12px; padding: 12px 14px; font-size: .92rem; color: var(--navy); box-shadow: 0 1px 3px rgba(0,0,0,.08); margin-bottom: 14px; }
.wa-form { display: grid; gap: 10px; }
.wa-form input, .wa-form textarea {
  width: 100%; font-family: var(--body); font-size: .95rem; color: var(--navy);
  padding: 11px 13px; border: 1px solid #CBD2DE; border-radius: 8px; background: #fff; resize: vertical;
}
.wa-form input:focus, .wa-form textarea:focus { outline: none; border-color: #128C7E; }
.wa-send {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: #25D366; color: #fff; border: none; border-radius: 8px; cursor: pointer;
  font-family: var(--body); font-weight: 600; font-size: .95rem; padding: 12px 16px;
  transition: background .2s var(--ease);
}
.wa-send:hover { background: #1EBE5A; }
.wa-send svg { width: 16px; height: 16px; }

/* =========================================================
   BACK TO TOP
   ========================================================= */
.to-top {
  position: fixed; right: 22px; bottom: 22px; z-index: 61;
  width: 52px; height: 52px; border-radius: 50%; cursor: pointer;
  background: var(--navy); color: #fff; border: none; display: grid; place-items: center;
  box-shadow: 0 10px 26px rgba(20,27,58,.3);
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: opacity .3s var(--ease), transform .3s var(--ease), background .2s var(--ease);
}
.to-top.show { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--amber); }
.to-top svg { width: 22px; height: 22px; }

@media (max-width: 560px) {
  .to-top { width: 46px; height: 46px; right: 16px; bottom: 16px; }
  .wa-widget { right: 16px; bottom: 16px; }
  .wa-widget.raised { bottom: 74px; }
}

/* About: real photo (with illustration fallback) */
.about-photo { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-illus-wrap { width: 100%; height: 100%; }
.about-illus-wrap[hidden] { display: none; }

/* Feature media: real photo with illustration fallback */
.feature__photo { width: 100%; height: 100%; object-fit: cover; display: block; }
.feature__illus { width: 100%; height: 100%; }
.feature__illus[hidden] { display: none; }

/* Hero banner image (with illustration fallback) */
.hero__banner { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-lg); display: block; }
.hero__art-illus { width: 100%; height: 100%; }
.hero__art-illus[hidden] { display: none; }
