/* ==========================================================================
   Konsultan Pajak Sidoarjo - Premium Corporate
   ========================================================================== */

:root {
  --brand-900: #1e0f10;
  --brand-800: #330f13;
  --brand-700: #4a1417;
  --brand-600: #60191e;
  --brand: #e91f24;
  --brand-light: #f7961f;
  --brand-dark: #c7151b;
  --white: #ffffff;
  --offwhite: #fff5ef;
  --text: #2b1d1e;
  --muted: #6e5757;
  --line: #f0e2e0;
  --radius: 16px;
  --shadow: 0 10px 40px rgba(30, 15, 16, 0.08);
  --shadow-lg: 0 24px 60px rgba(30, 15, 16, 0.16);
  --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  border: none;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn--lg { padding: 16px 32px; font-size: 16px; }
.btn--block { width: 100%; }
.btn--primary {
  background: linear-gradient(135deg, var(--brand-light), var(--brand));
  color: var(--brand-900);
  box-shadow: 0 8px 24px rgba(233, 31, 36, 0.35);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(233, 31, 36, 0.45); }
.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
}
.btn--ghost:hover { background: rgba(255, 255, 255, 0.12); transform: translateY(-2px); }
.btn--light {
  background: var(--white);
  color: var(--brand-900);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}
.btn--light:hover { transform: translateY(-2px); }

/* --------------------------------------------------------------------------
   Navbar
   -------------------------------------------------------------------------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
}
.navbar.scrolled {
  background: var(--white);
  box-shadow: 0 4px 24px rgba(30, 15, 16, 0.08);
  padding: 10px 0;
}
.navbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.navbar__logo { display: inline-flex; align-items: center; gap: 12px; }
.navbar__logo-img {
  width: auto;
  height: 46px;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.25));
  transition: height .3s ease;
}
.navbar.scrolled .navbar__logo-img { height: 40px; }
.navbar__logo-mark {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--brand-light), var(--brand));
  color: var(--brand-900);
  font-weight: 800;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(233, 31, 36, 0.4);
}
.navbar__logo-text { font-weight: 800; font-size: 16px; line-height: 1.2; color: var(--white); transition: color .3s ease; }
.navbar__logo-text small { font-weight: 600; font-size: 12px; letter-spacing: 1px; text-transform: uppercase; opacity: .85; }
.navbar.scrolled .navbar__logo-text { color: var(--brand-900); }
.navbar__menu { display: flex; align-items: center; gap: 28px; }
.navbar__link {
  font-weight: 600;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.92);
  position: relative;
  padding: 4px 0;
  transition: color .2s ease;
}
.navbar.scrolled .navbar__link { color: var(--text); }
.navbar__link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background: var(--brand);
  transition: width .25s ease;
}
.navbar__link:hover::after { width: 100%; }
.navbar__link:hover { color: var(--brand-light); }
.navbar.scrolled .navbar__link:hover { color: var(--brand-dark); }
.navbar__cta { padding: 11px 22px; font-size: 14px; }
.nav-lang {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 100px;
  padding: 3px;
  transition: border-color 0.3s ease;
}
.nav-lang:hover { border-color: var(--brand-light); }
.nav-lang__btn {
  background: none;
  border: none;
  border-radius: 100px;
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--font);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 5px 13px;
  cursor: pointer;
  transition: color 0.3s ease, background 0.3s ease;
}
.nav-lang__btn:hover { color: var(--white); }
.nav-lang__btn.is-active { color: var(--white); background: var(--brand); }
.navbar.scrolled .nav-lang { border-color: var(--line); }
.navbar.scrolled .nav-lang__btn { color: var(--muted); }
.navbar.scrolled .nav-lang__btn:hover { color: var(--text); }
.navbar.scrolled .nav-lang__btn.is-active { color: var(--white); background: var(--brand); }
.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.navbar__toggle span {
  width: 26px;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease, background .3s ease;
}
.navbar.scrolled .navbar__toggle span { background: var(--brand-900); }
.navbar__toggle.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.navbar__toggle.active span:nth-child(2) { opacity: 0; }
.navbar__toggle.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(180deg, rgba(18, 8, 9, 0.62) 0%, rgba(30, 15, 16, 0.78) 60%, var(--brand-900) 100%),
    url('../assets/sidoarjo.jpg') center center / cover no-repeat;
  color: var(--white);
  overflow: hidden;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 400px at 85% 20%, rgba(247, 150, 31, 0.22), transparent 60%),
    radial-gradient(500px 380px at 10% 90%, rgba(255, 255, 255, 0.05), transparent 60%);
  pointer-events: none;
}
.hero__inner { position: relative; z-index: 2; max-width: 760px; padding: 120px 24px 80px; }
.hero__tagline {
  display: inline-block;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--brand-light);
  background: rgba(233, 31, 36, 0.12);
  border: 1px solid rgba(233, 31, 36, 0.35);
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero__title {
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
.hero__desc {
  font-size: clamp(16px, 2vw, 19px);
  color: rgba(255, 255, 255, 0.85);
  max-width: 620px;
  margin-bottom: 34px;
}
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero--page { min-height: 62vh; }
.hero--page .hero__inner { padding: 110px 24px 64px; }

/* --------------------------------------------------------------------------
   Intro (brand statement)
   -------------------------------------------------------------------------- */
.intro { padding: 84px 0 96px; }
.intro__grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 56px; align-items: center; }
.intro__title {
  font-size: clamp(32px, 4.4vw, 52px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.12;
  color: var(--brand-900);
  margin-bottom: 20px;
}
.intro__title .intro-title__brand {
  display: block;
  margin-top: 8px;
  font-size: 0.58em;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--brand);
}
.intro__content .section__desc { margin-bottom: 18px; }
.intro__media { position: relative; }
.intro__media::before {
  content: '';
  position: absolute;
  top: -16px;
  right: -16px;
  width: 160px;
  height: 160px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(233, 31, 36, 0.14), rgba(247, 150, 31, 0.18));
  z-index: -1;
}
.intro__media-img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-lg); display: block; }
.intro__badge {
  position: absolute;
  left: -18px;
  bottom: -22px;
  background: linear-gradient(135deg, var(--brand-light), #ee7d1c);
  color: var(--white);
  border-radius: var(--radius);
  padding: 16px 24px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.intro__badge-num { font-size: 32px; font-weight: 800; line-height: 1; }
.intro__badge-text { font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255, 255, 255, 0.92); }
@media (max-width: 992px) {
  .intro__grid { grid-template-columns: 1fr; gap: 48px; }
  .intro__badge { left: 10px; }
}

/* --------------------------------------------------------------------------
   Trust card (consultant intro)
   -------------------------------------------------------------------------- */
.trust__card {
  position: relative;
  background: linear-gradient(150deg, var(--brand-700), var(--brand-900));
  border-radius: var(--radius);
  padding: 40px 36px;
  color: var(--white);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.trust__card::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(247, 150, 31, 0.35), transparent);
}
.trust__card::after {
  content: '';
  position: absolute;
  bottom: -70px;
  left: -70px;
  width: 200px;
  height: 200px;
  border: 32px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}
.trust__label {
  position: relative;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--brand-light);
  margin-bottom: 26px;
}
.trust__stats { list-style: none; position: relative; display: grid; gap: 16px; }
.trust__stats li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transition: padding-left 0.3s ease;
}
.trust__stats li:last-child { border-bottom: none; padding-bottom: 0; }
.trust__stats li:hover { padding-left: 4px; }
.trust__num { font-size: 30px; font-weight: 800; color: var(--brand-light); min-width: 96px; line-height: 1; }
.trust__cap { font-size: 14px; color: rgba(255, 255, 255, 0.85); }
.trust__note { position: relative; margin-top: 22px; font-size: 13.5px; line-height: 1.65; color: rgba(255, 255, 255, 0.7); }

/* --------------------------------------------------------------------------
   Stats
   -------------------------------------------------------------------------- */
.stats {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 48px 24px;
  margin-top: -60px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 5;
}
.stat { text-align: center; position: relative; padding: 10px 0; }
.stat + .stat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: var(--line);
}
.stat__number {
  display: inline-block;
  font-size: 44px;
  font-weight: 800;
  color: var(--brand-900);
  line-height: 1;
}
.stat__plus { font-size: 30px; font-weight: 800; color: var(--brand); margin-left: 3px; }
.stat__label { margin-top: 8px; font-size: 14px; color: var(--muted); font-weight: 600; }

/* --------------------------------------------------------------------------
   Section scaffolding
   -------------------------------------------------------------------------- */
.section { padding: 96px 0; }
.section--alt { background: var(--offwhite); }
.section__tag {
  display: inline-block;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brand-dark);
  margin-bottom: 14px;
}
.section__head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section__title {
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--brand-900);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section__desc { color: var(--muted); font-size: 16px; }

/* --------------------------------------------------------------------------
   About
   -------------------------------------------------------------------------- */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about__media { position: relative; }
.about__img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.about__badge {
  position: absolute;
  right: -18px;
  bottom: -22px;
  background: linear-gradient(135deg, var(--brand-light), var(--brand));
  color: var(--brand-900);
  border-radius: var(--radius);
  padding: 18px 26px;
  text-align: center;
  box-shadow: 0 16px 34px rgba(233, 31, 36, 0.4);
}
.about__badge-num { display: block; font-size: 30px; font-weight: 800; line-height: 1; }
.about__badge-text { font-size: 13px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.about__content .section__title { margin-bottom: 20px; }
.about__content .section__desc { margin-bottom: 18px; }
.about__content .btn { margin-top: 12px; }

/* --------------------------------------------------------------------------
   Services
   -------------------------------------------------------------------------- */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 30px 36px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform .4s cubic-bezier(.2,.7,.3,1), box-shadow .4s ease, border-color .4s ease;
}
.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--brand-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s cubic-bezier(.2,.7,.3,1);
}
.card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 50%;
  height: 200%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transform: rotate(12deg) translateX(0);
  transition: left .7s cubic-bezier(.2,.7,.3,1);
  pointer-events: none;
}
.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 26px 60px rgba(30, 15, 16, 0.16), 0 0 0 1px rgba(233, 31, 36, 0.18), 0 18px 46px rgba(233, 31, 36, 0.12);
  border-color: rgba(233, 31, 36, 0.35);
}
.card:hover::before { transform: scaleX(1); }
.card:hover::after { left: 130%; }
.card__num {
  position: absolute;
  top: 14px;
  right: 22px;
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -1px;
  color: rgba(233, 31, 36, 0.10);
  font-style: italic;
  transition: color .4s ease, transform .4s ease;
  user-select: none;
}
.card:hover .card__num {
  color: rgba(233, 31, 36, 0.22);
  transform: scale(1.08);
}
.card__icon {
  position: relative;
  width: 66px;
  height: 66px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(247, 150, 31, 0.16), rgba(233, 31, 36, 0.16));
  border: 1px solid rgba(233, 31, 36, 0.18);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: transform .4s cubic-bezier(.2,.7,.3,1), box-shadow .4s ease, background .4s ease;
}
.card__icon::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 20px;
  border: 1px dashed rgba(233, 31, 36, 0.28);
  opacity: 0;
  transform: scale(0.85);
  transition: opacity .4s ease, transform .4s ease;
}
.card__icon svg { width: 30px; height: 30px; transition: transform .4s cubic-bezier(.2,.7,.3,1); }
.card:hover .card__icon {
  background: linear-gradient(135deg, var(--brand-light), var(--brand));
  color: var(--white);
  box-shadow: 0 14px 30px rgba(233, 31, 36, 0.4);
  transform: translateY(-4px) rotate(-4deg);
}
.card:hover .card__icon::before { opacity: 1; transform: scale(1); animation: spin 14s linear infinite; }
.card:hover .card__icon svg { transform: scale(1.12); }
.card__title {
  position: relative;
  display: inline-block;
  font-size: 20px;
  font-weight: 700;
  color: var(--brand-900);
  margin-bottom: 10px;
  transition: color .3s ease;
}
.card__title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--brand), var(--brand-light));
  transition: width .45s ease;
}
.card:hover .card__title { color: var(--brand); }
.card:hover .card__title::after { width: 100%; }
.card__desc { color: var(--muted); font-size: 15px; }
@keyframes spin { to { transform: rotate(360deg); } }

/* --------------------------------------------------------------------------
   Why
   -------------------------------------------------------------------------- */
.why__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}
.why__item {
  position: relative;
  display: flex;
  gap: 18px;
  width: calc((100% - 48px) / 3);
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 28px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform .4s cubic-bezier(.2,.7,.3,1), box-shadow .4s ease, border-color .4s ease;
}
.why__item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--brand-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s cubic-bezier(.2,.7,.3,1);
}
.why__item::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 50%;
  height: 200%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  transform: rotate(12deg);
  transition: left .7s cubic-bezier(.2,.7,.3,1);
  pointer-events: none;
}
.why__item:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 54px rgba(30, 15, 16, 0.15), 0 0 0 1px rgba(233, 31, 36, 0.16), 0 16px 40px rgba(233, 31, 36, 0.10);
  border-color: rgba(233, 31, 36, 0.35);
}
.why__item:hover::before { transform: scaleX(1); }
.why__item:hover::after { left: 130%; }
.why__num {
  position: absolute;
  top: 12px;
  right: 20px;
  font-size: 40px;
  font-weight: 800;
  line-height: 1;
  font-style: italic;
  letter-spacing: -1px;
  color: rgba(233, 31, 36, 0.09);
  transition: color .4s ease, transform .4s ease;
  user-select: none;
}
.why__item:hover .why__num {
  color: rgba(233, 31, 36, 0.20);
  transform: scale(1.08);
}
.why__icon {
  position: relative;
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(247, 150, 31, 0.16), rgba(233, 31, 36, 0.16));
  border: 1px solid rgba(233, 31, 36, 0.18);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .4s cubic-bezier(.2,.7,.3,1), box-shadow .4s ease, background .4s ease;
}
.why__icon::before {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 18px;
  border: 1px dashed rgba(233, 31, 36, 0.3);
  opacity: 0;
  transform: scale(0.85);
  transition: opacity .4s ease, transform .4s ease;
}
.why__icon svg { width: 26px; height: 26px; transition: transform .4s cubic-bezier(.2,.7,.3,1); }
.why__item:hover .why__icon {
  background: linear-gradient(135deg, var(--brand-light), var(--brand));
  color: var(--white);
  box-shadow: 0 12px 26px rgba(233, 31, 36, 0.4);
  transform: translateY(-3px) rotate(-4deg);
}
.why__item:hover .why__icon::before { opacity: 1; transform: scale(1); animation: spin 14s linear infinite; }
.why__item:hover .why__icon svg { transform: scale(1.12); }
.why__content h3 {
  position: relative;
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  color: var(--brand-900);
  margin-bottom: 7px;
  transition: color .3s ease;
}
.why__content h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--brand), var(--brand-light));
  transition: width .45s ease;
}
.why__item:hover .why__content h3 { color: var(--brand); }
.why__item:hover .why__content h3::after { width: 100%; }
.why__content p { font-size: 14.5px; color: var(--muted); }

/* Featured (center) card */
.why__item--featured {
  background: linear-gradient(150deg, var(--brand-800), var(--brand-900));
  border-color: rgba(233, 31, 36, 0.4);
  box-shadow: 0 20px 50px rgba(30, 15, 16, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.why__item--featured::before { background: linear-gradient(90deg, var(--brand-light), var(--brand)); }
.why__item--featured .why__num { color: rgba(247, 150, 31, 0.22); }
.why__item--featured:hover { box-shadow: 0 26px 60px rgba(30, 15, 16, 0.45), 0 0 0 1px rgba(247, 150, 31, 0.35); border-color: rgba(247, 150, 31, 0.5); }
.why__item--featured:hover .why__num { color: rgba(247, 150, 31, 0.4); }
.why__item--featured .why__icon {
  background: linear-gradient(135deg, var(--brand-light), var(--brand));
  color: var(--white);
  box-shadow: 0 10px 24px rgba(233, 31, 36, 0.45);
  border-color: rgba(247, 150, 31, 0.5);
}
.why__item--featured .why__icon::before { border-color: rgba(247, 150, 31, 0.5); opacity: 1; transform: scale(1); animation: spin 14s linear infinite; }
.why__item--featured .why__content h3 { color: var(--white); }
.why__item--featured .why__content h3::after { width: 100%; }
.why__item--featured .why__content p { color: rgba(255, 255, 255, 0.7); }

/* --------------------------------------------------------------------------
   Team
   -------------------------------------------------------------------------- */
.team__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.member {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 30px 24px 26px;
  text-align: center;
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
  transition: transform .4s cubic-bezier(.2,.7,.3,1), box-shadow .4s ease, border-color .4s ease;
}
.member::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--brand-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s cubic-bezier(.2,.7,.3,1);
}
.member:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(233, 31, 36, 0.35);
}
.member:hover::before { transform: scaleX(1); }
.member__avatar {
  position: relative;
  width: 102px;
  height: 102px;
  margin: 0 auto 20px;
  border-radius: 50%;
  padding: 4px;
  background: linear-gradient(135deg, var(--brand-light), var(--brand), var(--brand-dark));
  box-shadow: 0 12px 28px rgba(233, 31, 36, 0.32);
  transition: transform .4s cubic-bezier(.2,.7,.3,1), box-shadow .4s ease;
}
.member__avatar::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px dashed rgba(233, 31, 36, 0.3);
  opacity: 0;
  animation: spin 18s linear infinite;
  transition: opacity .4s ease;
}
.member:hover .member__avatar {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 18px 40px rgba(233, 31, 36, 0.45);
}
.member:hover .member__avatar::after { opacity: 1; }
.member__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 50%;
  display: block;
  background: var(--white);
}
.member__name { font-size: 15.5px; font-weight: 700; color: var(--brand-900); line-height: 1.4; margin-bottom: 8px; }
.member__role {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--brand-dark);
  background: rgba(233, 31, 36, 0.12);
  padding: 5px 14px;
  border-radius: 100px;
  text-transform: uppercase;
}
.member__values { list-style: none; margin-top: 14px; display: grid; gap: 8px; }
.member__values li { display: flex; align-items: flex-start; gap: 9px; font-size: 13px; color: var(--muted); line-height: 1.5; }
.member__values li:hover { color: var(--text); }
.member__values-ic { flex: 0 0 14px; width: 14px; height: 14px; margin-top: 2px; color: var(--brand); }
.member__values-ic svg { width: 100%; height: 100%; }
.member:hover .member__values li { color: var(--text); }
.member:hover .member__values li:hover { color: var(--brand-dark); }

/* --------------------------------------------------------------------------
   CTA
   -------------------------------------------------------------------------- */
.cta {
  background: linear-gradient(135deg, var(--brand-900), var(--brand-600));
  padding: 110px 0;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.cta__bg {
  position: absolute;
  top: -35%;
  left: 0;
  right: 0;
  bottom: -35%;
  background: url('../assets/kantor-konsultan.png') center center / cover no-repeat;
  transform: translateY(0) scale(1.15);
  will-change: transform;
  z-index: -2;
}
.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(20, 9, 10, 0.78) 0%, rgba(51, 15, 19, 0.5) 45%, rgba(30, 15, 16, 0.82) 100%),
    radial-gradient(640px 380px at 50% 22%, rgba(247, 150, 31, 0.22), transparent 65%);
}
.cta__inner { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; }
.cta__title { font-size: clamp(26px, 3.4vw, 38px); font-weight: 800; margin-bottom: 16px; line-height: 1.25; }
.cta__desc { color: rgba(255, 255, 255, 0.85); margin-bottom: 30px; font-size: 17px; }

/* --------------------------------------------------------------------------
   Clients
   -------------------------------------------------------------------------- */
.clients__marquee {
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.clients__track {
  display: flex;
  gap: 64px;
  align-items: center;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.clients__track:hover { animation-play-state: paused; }
.client {
  height: 54px;
  width: auto;
  max-width: 190px;
  object-fit: contain;
  filter: none;
  opacity: 1;
  transition: transform .3s ease, filter .3s ease;
}
.client:hover {
  transform: scale(1.08);
  filter: drop-shadow(0 8px 16px rgba(30, 15, 16, 0.15));
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* --------------------------------------------------------------------------
   Contact
   -------------------------------------------------------------------------- */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.contact__list { margin-top: 28px; }
.contact__list li { display: flex; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.contact__list li:last-child { border-bottom: none; }
.contact__ic {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(233, 31, 36, 0.12);
  color: var(--brand-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact__ic svg { width: 22px; height: 22px; }
.contact__list strong { display: block; font-size: 15px; color: var(--brand-900); margin-bottom: 3px; }
.contact__list p { font-size: 14.5px; color: var(--muted); }
.contact__list a:hover { color: var(--brand-dark); }
.contact__form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 38px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
}
.contact__form-title { font-size: 22px; font-weight: 800; color: var(--brand-900); margin-bottom: 24px; }
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--brand-900);
  margin-bottom: 7px;
}
.field input,
.field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font-family: var(--font);
  font-size: 15px;
  color: var(--text);
  background: var(--offwhite);
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--brand);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(233, 31, 36, 0.18);
}
.field textarea { resize: vertical; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.footer {
  position: relative;
  background:
    linear-gradient(180deg, rgba(24, 10, 11, 0.86) 0%, rgba(51, 15, 19, 0.72) 50%, rgba(20, 9, 10, 0.9) 100%),
    url('../assets/alun-alun-sidoarjo.jpg') center center / cover no-repeat;
  color: rgba(255, 255, 255, 0.75);
  padding-top: 72px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 44px;
  padding-bottom: 56px;
}
.footer__brand p { margin-top: 18px; font-size: 14.5px; line-height: 1.8; max-width: 320px; }
.footer h4 {
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px;
}
.footer h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background: var(--brand);
}
.footer__col ul li { margin-bottom: 10px; }
.footer__col ul li a { font-size: 14.5px; transition: color .2s ease, padding-left .2s ease; }
.footer__col ul li a:hover { color: var(--brand-light); padding-left: 5px; }
.footer__bottom { border-top: 1px solid rgba(255, 255, 255, 0.12); padding: 22px 0; text-align: center; font-size: 14px; }

/* --------------------------------------------------------------------------
   Floating WA
   -------------------------------------------------------------------------- */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.45);
  z-index: 999;
  transition: transform .25s ease;
  animation: wa-pulse 2.4s infinite;
}
.wa-float svg { width: 30px; height: 30px; }
.wa-float:hover { transform: scale(1.1); }
@keyframes wa-pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* --------------------------------------------------------------------------
   WhatsApp popup (premium chat teaser)
   -------------------------------------------------------------------------- */
.wa-popup {
  position: fixed;
  right: 22px;
  bottom: 96px;
  width: 330px;
  max-width: calc(100vw - 32px);
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 28px 70px rgba(30, 15, 16, 0.32), 0 4px 16px rgba(30, 15, 16, 0.14);
  overflow: hidden;
  z-index: 999;
  opacity: 0;
  transform: translateY(24px) scale(0.94);
  transform-origin: bottom right;
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.wa-popup.open { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.wa-popup__head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  background: linear-gradient(135deg, var(--brand-700), var(--brand-900));
  color: var(--white);
}
.wa-popup__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.55);
  object-fit: cover;
  background: var(--brand-light);
}
.wa-popup__who { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.wa-popup__who strong { font-size: 15px; font-weight: 800; letter-spacing: 0.5px; }
.wa-popup__status { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; color: rgba(255, 255, 255, 0.85); }
.wa-popup__status i { width: 8px; height: 8px; border-radius: 50%; background: #25d366; box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.3); animation: wa-pulse 2.2s infinite; }
.wa-popup__close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.75);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, color 0.3s ease;
}
.wa-popup__close:hover { background: rgba(255, 255, 255, 0.15); color: var(--white); }
.wa-popup__close svg { width: 16px; height: 16px; }
.wa-popup__body { padding: 18px 18px 4px; }
.wa-popup__bubble {
  position: relative;
  background: #ecfdf5;
  border: 1px solid #d1fae5;
  border-radius: 14px 14px 14px 4px;
  padding: 14px 16px;
  margin-bottom: 10px;
}
.wa-popup__bubble p { font-size: 13.5px; line-height: 1.6; color: var(--text); }
.wa-popup__hint {
  display: inline-block;
  margin-top: 10px;
  font-size: 11.5px;
  font-weight: 700;
  color: #059669;
  background: rgba(5, 150, 105, 0.12);
  padding: 4px 12px;
  border-radius: 100px;
}
.wa-popup__time { display: block; font-size: 11.5px; color: var(--muted); margin: 2px 0 4px; padding-left: 4px; }
.wa-popup__cta {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 12px 18px 18px;
  background: #25d366;
  color: var(--white);
  border-radius: 14px;
  padding: 13px 18px;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  align-items: center;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.wa-popup__cta:hover { background: #1ebe5d; transform: translateY(-2px); box-shadow: 0 12px 26px rgba(37, 211, 102, 0.4); }
.wa-popup__cta svg { width: 20px; height: 20px; }
@media (max-width: 480px) {
  .wa-popup { right: 16px; bottom: 92px; width: calc(100vw - 32px); }
}

/* --------------------------------------------------------------------------
   Animations (reveal on scroll)
   -------------------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* --------------------------------------------------------------------------
   About page
   -------------------------------------------------------------------------- */
.about-intro__list { list-style: none; margin: 22px 0 30px; display: grid; gap: 12px; }
.about-intro__check { display: flex; gap: 12px; align-items: flex-start; font-size: 15.5px; }
.about-intro__ic { flex: 0 0 22px; width: 22px; height: 22px; margin-top: 1px; color: var(--brand); }
.about-intro__ic svg { width: 100%; height: 100%; }
.about-intro__actions { display: flex; gap: 12px; flex-wrap: wrap; }

.mv__grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 24px; align-items: stretch; }
.mv__card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 40px 36px; box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 16px; transition: transform .3s ease, box-shadow .3s ease; }
.mv__card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.mv__card--dark { background: linear-gradient(135deg, var(--brand-800), var(--brand-900)); border: none; color: var(--white); }
.mv__icon { width: 56px; height: 56px; border-radius: 16px; background: rgba(233, 31, 36, 0.1); color: var(--brand); display: flex; align-items: center; justify-content: center; }
.mv__icon svg { width: 26px; height: 26px; }
.mv__card--dark .mv__icon { background: rgba(255, 255, 255, 0.12); color: var(--brand-light); }
.mv__label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 2.5px; color: var(--brand); }
.mv__card--dark .mv__label { color: var(--brand-light); }
.mv__title { font-size: 24px; font-weight: 800; line-height: 1.25; }
.mv__text { color: var(--muted); font-size: 15.5px; line-height: 1.7; }
.mv__card--dark .mv__text { color: rgba(255, 255, 255, 0.82); }
.mv__list { list-style: none; display: grid; gap: 12px; margin-top: 4px; }
.mv__list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15px;
  line-height: 1.55;
  font-weight: 600;
  color: var(--white);
  background: linear-gradient(135deg, var(--brand-light), #ee7d1c);
  border-radius: 12px;
  padding: 13px 16px;
  box-shadow: 0 6px 18px rgba(247, 150, 31, 0.28);
}
.mv__list .about-intro__ic { flex: 0 0 20px; width: 20px; height: 20px; margin-top: 2px; color: var(--white); }

.timeline { position: relative; max-width: 780px; margin: 0 auto; padding-left: 40px; }
.timeline::before { content: ''; position: absolute; left: 7px; top: 8px; bottom: 8px; width: 2px; background: var(--line); }
.timeline__item { position: relative; padding-bottom: 40px; }
.timeline__item:last-child { padding-bottom: 0; }
.timeline__dot { position: absolute; left: 0; top: 4px; width: 16px; height: 16px; border-radius: 50%; background: var(--brand); border: 4px solid var(--white); box-shadow: 0 0 0 2px rgba(233, 31, 36, 0.22); }
.timeline__phase { display: inline-block; background: var(--brand-900); color: var(--white); font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 7px 18px; border-radius: 100px; margin-bottom: 14px; }
.timeline__card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 30px; box-shadow: var(--shadow); transition: transform .3s ease, box-shadow .3s ease; }
.timeline__card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.timeline__title { font-size: 19px; font-weight: 800; margin-bottom: 8px; }
.timeline__desc { color: var(--muted); font-size: 15px; line-height: 1.7; }

.values__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.value { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 26px; text-align: center; box-shadow: var(--shadow); transition: transform .3s ease, box-shadow .3s ease; }
.value:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.value__icon { width: 62px; height: 62px; margin: 0 auto 18px; border-radius: 20px; background: linear-gradient(135deg, rgba(233, 31, 36, 0.12), rgba(247, 150, 31, 0.12)); color: var(--brand); display: flex; align-items: center; justify-content: center; }
.value__icon svg { width: 28px; height: 28px; }
.value__title { font-size: 17px; font-weight: 800; margin-bottom: 10px; }
.value__desc { color: var(--muted); font-size: 14.5px; line-height: 1.65; }

.certs__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.cert { display: flex; align-items: center; gap: 14px; background: var(--white); border: 1px solid var(--line); border-radius: 100px; padding: 14px 22px; box-shadow: var(--shadow); transition: transform .3s ease, box-shadow .3s ease; }
.cert:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.cert__icon { flex: 0 0 40px; width: 40px; height: 40px; border-radius: 50%; background: rgba(233, 31, 36, 0.1); color: var(--brand); display: flex; align-items: center; justify-content: center; }
.cert__icon svg { width: 20px; height: 20px; }
.cert__name { font-size: 14.5px; font-weight: 800; }
.cert__sub { font-size: 12.5px; color: var(--muted); line-height: 1.5; }

.about-team__cta { text-align: center; margin-top: 44px; }

@media (max-width: 992px) {
  .mv__grid { grid-template-columns: 1fr; }
  .values__grid { grid-template-columns: repeat(2, 1fr); }
  .certs__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .values__grid { grid-template-columns: 1fr; }
  .certs__grid { grid-template-columns: 1fr; }
  .mv__card { padding: 32px 26px; }
  .timeline { padding-left: 32px; }
  .timeline__card { padding: 24px 22px; }
}

/* --------------------------------------------------------------------------
   FAQ (AEO)
   -------------------------------------------------------------------------- */
.faq__list { max-width: 820px; margin: 0 auto; display: grid; gap: 14px; }
.faq__item { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; transition: box-shadow 0.3s ease, border-color 0.3s ease; }
.faq__item.open { border-color: rgba(233, 31, 36, 0.35); box-shadow: var(--shadow-lg); }
.faq__q-wrap { margin: 0; }
.faq__q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: none;
  border: none;
  padding: 20px 24px;
  font-family: var(--font);
  font-size: 16.5px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition: color 0.3s ease;
}
.faq__q:hover { color: var(--brand-dark); }
.faq__icon {
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(233, 31, 36, 0.1);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s ease, background 0.35s ease, color 0.35s ease;
}
.faq__icon svg { width: 14px; height: 14px; }
.faq__item.open .faq__icon { transform: rotate(45deg); background: var(--brand); color: var(--white); }
.faq__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.4s ease; }
.faq__item.open .faq__a { grid-template-rows: 1fr; }
.faq__a-inner { overflow: hidden; }
.faq__a-inner p { margin: 0 24px 20px; padding-top: 16px; color: var(--muted); font-size: 15px; line-height: 1.7; border-top: 1px solid var(--line); }

/* --------------------------------------------------------------------------
   Blog (posts & pagination)
   -------------------------------------------------------------------------- */
.posts__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.post {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.post:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.post__thumb { position: relative; display: block; overflow: hidden; }
.post__thumb img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; display: block; transition: transform 0.6s ease; }
.post:hover .post__thumb img { transform: scale(1.06); }
.post__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--brand);
  color: var(--white);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
}
.post__body { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.post__meta { display: flex; align-items: center; gap: 16px; margin-bottom: 12px; font-size: 12.5px; color: var(--muted); }
.post__meta span { display: inline-flex; align-items: center; gap: 6px; }
.post__meta svg { width: 14px; height: 14px; color: var(--brand); }
.post__title { font-size: 18px; font-weight: 800; line-height: 1.35; margin-bottom: 10px; }
.post__title a { color: var(--brand-900); text-decoration: none; transition: color 0.3s ease; }
.post__title a:hover { color: var(--brand); }
.post__excerpt {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.post__more { margin-top: auto; }
.post__more a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--brand);
  text-decoration: none;
  transition: color 0.3s ease;
}
.post__more a:hover { color: var(--brand-dark); }
.post__more svg { width: 16px; height: 16px; transition: transform 0.3s ease; }
.post__more a:hover svg { transform: translateX(4px); }
.pagination { display: flex; justify-content: center; align-items: center; gap: 8px; margin-top: 52px; }
.pagination__numbers { display: flex; gap: 8px; }
.pagination__btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--text);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.pagination__btn:hover:not(:disabled):not(.is-active) { border-color: var(--brand); color: var(--brand); }
.pagination__btn.is-active { background: var(--brand); border-color: var(--brand); color: var(--white); box-shadow: 0 8px 18px rgba(233, 31, 36, 0.35); }
.pagination__btn:disabled { opacity: 0.4; cursor: default; }
.pagination__arrow svg { width: 18px; height: 18px; }

/* --------------------------------------------------------------------------
   TP Doc page
   -------------------------------------------------------------------------- */
.card__list { list-style: none; margin-top: 14px; display: grid; gap: 8px; }
.card__list li { display: flex; gap: 8px; align-items: flex-start; font-size: 13.5px; color: var(--muted); line-height: 1.55; }
.card__list-ic { flex: 0 0 14px; width: 14px; height: 14px; margin-top: 3px; color: var(--brand); }
.card__list-ic svg { width: 100%; height: 100%; }
.card__note {
  display: inline-block;
  margin-top: 14px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--brand-dark);
  background: rgba(233, 31, 36, 0.07);
  border: 1px dashed rgba(233, 31, 36, 0.4);
  padding: 6px 14px;
  border-radius: 100px;
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 992px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .team__grid { grid-template-columns: repeat(2, 1fr); }
  .about__grid, .contact__grid { grid-template-columns: 1fr; gap: 40px; }
  .about__badge { right: 10px; bottom: -18px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .stats__grid { margin-top: -40px; padding: 32px 20px; }
  .why__item { width: calc((100% - 24px) / 2); }
}

@media (max-width: 768px) {
  .navbar__toggle { display: flex; }
  .navbar__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 78%;
    max-width: 340px;
    height: 100vh;
    background: var(--brand-900);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 22px;
    padding: 40px;
    transition: right .35s ease;
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.3);
  }
  .navbar__menu.open { right: 0; }
  .navbar__link { font-size: 18px; color: var(--white) !important; }
  .navbar__cta { margin-top: 12px; width: 100%; }
  .section { padding: 64px 0; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stat + .stat::before { display: none; }
  .services__grid, .team__grid { grid-template-columns: 1fr; }
  .why__item { width: 100%; }
  .hero__inner { padding-top: 140px; }
  .footer__grid { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 480px) {
  .stats__grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .stat__number { font-size: 34px; }
  .contact__form-wrap { padding: 26px; }
}
