/* ===== RESET & VARIABLES (tema sesuai acuan: brandOrange #f9961e, brandRed #dc2626, brandDark #0f172a) ===== */
:root {
  --orange: #f9961e;
  --red: #dc2626;
  --dark: #0f172a;
  --dark-soft: #1e293b;
  --ink: #0f172a;
  --muted: #64748b;
  --muted-light: #94a3b8;
  --bg: #ffffff;
  --bg-alt: #f1f5f9;
  --line: #e2e8f0;
  --orange-10: rgba(249, 150, 30, 0.1);
  --orange-20: rgba(249, 150, 30, 0.2);
  --red-10: rgba(220, 38, 38, 0.1);
  --wa: #25d366;
  --grad: linear-gradient(135deg, var(--orange), var(--red));
  --grad-hover: linear-gradient(135deg, var(--red), var(--orange));
  --shadow-sm: 0 4px 14px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 12px 32px rgba(15, 23, 42, 0.12);
  --shadow-lg: 0 24px 56px rgba(15, 23, 42, 0.2);
  --shadow-orange: 0 8px 24px rgba(249, 150, 30, 0.4);
  --radius: 16px;
  --radius-sm: 12px;
  --radius-lg: 24px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  font-family: "Plus Jakarta Sans", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
}

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

.container { width: min(1160px, 92%); margin-inline: auto; }

/* ===== BUTTONS & BADGES ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn:active { transform: scale(0.97); }
.btn-sm { padding: 10px 20px; font-size: 0.88rem; }
.btn-block { width: 100%; }

.btn-primary { background: var(--grad); color: #fff; box-shadow: var(--shadow-orange); }
.btn-primary:hover { background: var(--grad-hover); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(220, 38, 38, 0.4); }

.btn-whatsapp { background: var(--grad); color: #fff; box-shadow: var(--shadow-orange); }
.btn-whatsapp:hover { background: var(--grad-hover); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(220, 38, 38, 0.4); }

.btn-outline { background: transparent; color: #fff; border-color: rgba(255, 255, 255, 0.4); }
.btn-outline:hover { background: rgba(255, 255, 255, 0.1); border-color: #fff; transform: translateY(-2px); }

.badge {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 999px;
  background: var(--orange-10);
  border: 1px solid var(--orange-20);
  color: var(--orange);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.badge-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #f1f5f9;
  backdrop-filter: blur(6px);
}
.ping { position: relative; width: 9px; height: 9px; flex: 0 0 auto; }
.ping::before, .ping::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--orange);
}
.ping::before { animation: ping 1.6s cubic-bezier(0, 0, 0.2, 1) infinite; }
.ping::after { animation: ping 1.6s cubic-bezier(0, 0, 0.2, 1) infinite 0.4s; }
@keyframes ping {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(3); opacity: 0; }
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.25s ease;
}
.navbar.scrolled { box-shadow: var(--shadow-sm); }

.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; height: 80px; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo {
  width: 56px; height: 56px;
  object-fit: contain;
  padding: 4px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-name { font-size: 1.15rem; letter-spacing: 0.2px; font-weight: 800; }
.text-orange { color: var(--orange); }
.brand-text small { font-size: 0.72rem; color: var(--muted-light); font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; }
.brand-light .brand-text { gap: 10px; }
.brand-light .brand-text small { color: #94a3b8; line-height: 1.7; letter-spacing: 0.4px; text-transform: none; font-size: 0.85rem; font-weight: 500; }

.nav-menu { display: flex; align-items: center; gap: 30px; }
.nav-link { font-weight: 600; font-size: 0.95rem; color: var(--muted); transition: color 0.2s ease; padding: 6px 0; }
.nav-link:hover, .nav-link.active { color: var(--orange); }

.nav-actions { display: flex; align-items: center; gap: 14px; }

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: var(--bg);
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--muted);
  cursor: pointer;
  transition: border-color 0.2s ease;
}
.lang-toggle:hover { border-color: var(--orange); }
.lang-toggle .lang-cur { color: var(--orange); }
.lang-sep { color: #cbd5e1; }
.lang-alt { color: var(--muted); }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.hamburger span { width: 24px; height: 2.5px; background: var(--ink); border-radius: 3px; transition: transform 0.25s ease, opacity 0.2s ease; }
.hamburger.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 90vh;
  padding-top: 80px;
  background: var(--dark);
  color: #fff;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url("../assets/img/hero-gunungkidul.jpg") center / cover no-repeat;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.75) 55%, rgba(15, 23, 42, 0.4) 100%);
}

.hero-inner { position: relative; z-index: 2; width: min(1160px, 92%); margin-inline: auto; padding: 96px 0 84px; }

.hero .badge { margin-bottom: 24px; }
.hero h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); line-height: 1.12; margin-bottom: 22px; font-weight: 800; letter-spacing: -0.5px; transition: opacity 0.45s ease, transform 0.45s ease; }
.hero p { font-size: 1.1rem; color: #cbd5e1; max-width: 600px; transition: opacity 0.45s ease, transform 0.45s ease; }
.hero h1.slide-out, .hero p.slide-out { opacity: 0; transform: translateY(14px); }
.grad {
  background: linear-gradient(90deg, var(--orange), var(--red), var(--orange));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: grad-shift 3s linear infinite;
}
@keyframes grad-shift {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

.hero-stats-bar {
  position: relative;
  z-index: 2;
  background: var(--grad);
  padding: 26px 0;
  box-shadow: 0 -6px 30px rgba(15, 23, 42, 0.35);
}
.hero-stats { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-card { text-align: center; padding: 4px 16px; transition: transform 0.25s ease; }
.stat-card + .stat-card { border-left: 1px solid rgba(255, 255, 255, 0.3); }
.stat-card:hover { transform: scale(1.06); }
.stat-num { display: block; font-size: clamp(1.8rem, 3.4vw, 2.6rem); font-weight: 800; color: #fff; line-height: 1.1; letter-spacing: -0.5px; }
.stat-label { font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1.2px; color: #ffedd5; margin-top: 6px; display: block; }

/* ===== SECTION COMMON ===== */
.section { padding: 96px 0; }
.section-alt { background: var(--bg-alt); }

.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-head h2 { font-size: clamp(1.8rem, 3.6vw, 2.7rem); margin-top: 18px; font-weight: 800; letter-spacing: -0.5px; line-height: 1.2; color: var(--dark); }
.section-head p { color: var(--muted); margin-top: 14px; font-size: 1.03rem; }

/* ===== ABOUT ===== */
.about-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.about-text p { color: var(--muted); margin-bottom: 16px; font-size: 1.02rem; }
.about-text h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); line-height: 1.2; margin: 18px 0 22px; letter-spacing: -0.5px; }

.about-points { margin: 24px 0 30px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 18px; }
.about-points li { display: flex; align-items: center; gap: 12px; font-weight: 600; color: #334155; }
.check {
  flex: 0 0 auto;
  width: 28px; height: 28px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 8px;
  background: var(--orange-10);
  color: var(--orange);
  font-size: 0.85rem;
  font-weight: 800;
}

.about-visual { position: relative; }
.about-visual::before, .about-visual::after {
  content: "";
  position: absolute;
  width: 260px; height: 260px;
  border-radius: 28px;
  filter: blur(60px);
  z-index: 0;
}
.about-visual::before { top: -24px; left: -24px; background: var(--orange-10); }
.about-visual::after { bottom: -24px; right: -24px; background: var(--red-10); }
.about-img {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 4px solid #fff;
  box-shadow: var(--shadow-lg);
  transition: transform 0.5s ease;
}
.about-img:hover { transform: scale(1.02); }
.about-img img { width: 100%; height: 460px; object-fit: cover; }

/* ===== SERVICES ===== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: var(--orange-30, rgba(249, 150, 30, 0.35)); }
.service-icon {
  width: 56px; height: 56px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  border-radius: 14px;
  background: var(--orange-10);
  color: var(--orange);
  margin-bottom: 20px;
  transition: background 0.3s ease, color 0.3s ease;
}
.service-card:hover .service-icon { background: var(--grad); color: #fff; }
.service-card h3 { font-size: 1.12rem; margin-bottom: 10px; color: var(--dark); }
.service-card p { color: var(--muted); font-size: 0.95rem; }

/* ===== WHY ===== */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.why-card {
  padding: 34px 26px;
  border-radius: var(--radius-lg);
  background: #f8fafc;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.why-card:hover { background: var(--grad); }
.why-icon {
  width: 48px; height: 48px;
  margin-bottom: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  border-radius: 14px;
  background: #fff;
  color: var(--orange);
  box-shadow: var(--shadow-sm);
}
.why-card h3 { font-size: 1.05rem; margin-bottom: 10px; color: var(--dark); transition: color 0.3s ease; }
.why-card p { color: var(--muted); font-size: 0.92rem; transition: color 0.3s ease; }
.why-card:hover h3, .why-card:hover p { color: #fff; }
.why-card:hover .why-icon { color: var(--red); }

/* ===== TEAM ===== */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 44px 28px; }
.team-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 26px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.team-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.team-avatar {
  width: 150px; height: 150px;
  margin: 0 auto 20px;
  border-radius: 50%;
  padding: 5px;
  border: 3px double rgba(245, 158, 11, 0.85);
  box-shadow: 0 0 0 6px var(--orange-20), var(--shadow-sm);
  background: #fffbeb;
}
.team-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; transition: transform 0.5s ease; }
.team-card:hover .team-avatar img { transform: scale(1.06); }
.team-card h3 { font-size: 1.02rem; line-height: 1.4; color: var(--dark); margin-bottom: 8px; }
.team-role { display: block; color: var(--orange); font-weight: 700; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 10px; }
.team-card p { color: var(--muted-light); font-size: 0.85rem; }

/* ===== BLOG ===== */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card {
  background: #f8fafc;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.blog-thumb { aspect-ratio: 5 / 3; overflow: hidden; }
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.blog-card:hover .blog-thumb img { transform: scale(1.05); }
.blog-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.blog-cat { font-size: 0.78rem; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.blog-card h3 { font-size: 1.1rem; line-height: 1.4; margin-bottom: 10px; transition: color 0.2s ease; }
.blog-card h3 a:hover { color: var(--orange); }
.blog-card p { color: var(--muted); font-size: 0.9rem; margin-bottom: 16px; }
.blog-link { color: var(--red); font-weight: 700; font-size: 0.9rem; margin-top: auto; }
.blog-link:hover { text-decoration: underline; }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 26px; }
.contact-item { display: flex; gap: 18px; align-items: flex-start; }
.contact-icon {
  flex: 0 0 auto;
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  border-radius: 14px;
  background: #fff;
  color: var(--orange);
  box-shadow: var(--shadow-sm);
}
.contact-item strong { display: block; margin-bottom: 4px; color: var(--dark); }
.contact-item p { color: var(--muted); font-size: 0.95rem; }
.contact-item a { color: var(--dark); font-weight: 700; }
.contact-item a:hover { color: var(--orange); }

.contact-form {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 38px;
  box-shadow: var(--shadow-md);
}
.contact-form h3 { margin-bottom: 22px; font-size: 1.3rem; color: var(--dark); }
.contact-form label { display: block; font-weight: 700; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 1px; color: var(--muted-light); margin: 16px 0 8px; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  background: #f8fafc;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-20);
}
.contact-form .btn { margin-top: 22px; }

/* ===== CLIENTS ===== */
.clients { padding: 64px 0; background: var(--bg); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.clients-title { text-align: center; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--muted-light); font-size: 0.78rem; margin-bottom: 40px; }
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee-track { display: flex; width: max-content; animation: marquee 30s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-set { display: flex; align-items: center; gap: 80px; padding-right: 80px; }
.logo-group { display: flex; align-items: center; gap: 16px; flex: 0 0 auto; }
.logo-group img { height: 40px; width: auto; object-fit: contain; }
.logo-group span { font-weight: 800; font-size: 1.1rem; color: var(--muted); letter-spacing: 0.3px; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== CTA ===== */
.cta {
  position: relative;
  padding: 110px 0;
  background: var(--dark);
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background: url("../assets/img/cta-ikhwan3.jpg") center / cover no-repeat;
}
.cta-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.88) 0%, rgba(15, 23, 42, 0.72) 50%, rgba(15, 23, 42, 0.9) 100%);
}
.cta-inner { position: relative; z-index: 2; max-width: 720px; margin-inline: auto; }
.cta .badge { margin-bottom: 20px; }
.cta h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; letter-spacing: -0.5px; margin-bottom: 18px; line-height: 1.2; }
.cta p { font-size: 1.08rem; color: #cbd5e1; margin-bottom: 34px; }
.cta-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.cta .btn-outline { border-color: rgba(255, 255, 255, 0.4); }
.cta .btn-outline:hover { background: rgba(255, 255, 255, 0.1); border-color: #fff; }

/* ===== FOOTER ===== */
.footer { background: var(--dark); color: #94a3b8; padding-top: 64px; border-top: 1px solid #1e293b; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
.footer .brand-logo { box-shadow: none; }
.footer .brand-name { color: #fff; }
.footer h4 { color: #fff; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col a { color: #94a3b8; font-size: 0.9rem; transition: color 0.2s ease; }
.footer-col a:hover { color: var(--orange); }
.footer-col p { font-size: 0.9rem; margin-bottom: 8px; }
.footer-addr { margin-bottom: 16px; }
.footer-addr strong { display: block; color: #fff; font-size: 0.92rem; margin-bottom: 4px; font-weight: 700; }
.footer-addr p { color: #94a3b8; font-size: 0.88rem; line-height: 1.7; margin-bottom: 0; }
.footer-social { display: flex; gap: 16px; margin-top: 18px; }
.footer-social a { font-size: 1.2rem; color: #94a3b8; transition: color 0.2s ease; }
.footer-social a:hover { color: var(--orange); }
.footer-bottom { border-top: 1px solid #1e293b; text-align: center; padding: 22px 0; font-size: 0.85rem; }

/* ===== WHATSAPP FLOAT ===== */
.wa-float {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--wa);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 13px 20px 13px 15px;
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45);
  transition: transform 0.25s ease;
}
.wa-float:hover { transform: translateY(-3px) scale(1.02); }

/* ===== REVEAL ANIMATION ===== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .services-grid, .team-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-img img { height: 380px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  html { scroll-padding-top: 76px; }
  .nav-inner { height: 72px; }
  .nav-menu {
    position: fixed;
    top: 72px; right: 0;
    width: min(320px, 85vw);
    height: calc(100vh - 72px);
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 34px 28px;
    gap: 22px;
    box-shadow: -14px 0 40px rgba(15, 23, 42, 0.14);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
  }
  .nav-menu.open { transform: translateX(0); }
  .nav-menu .btn { width: 100%; }
  .hamburger { display: flex; }

  .section { padding: 72px 0; }
  .hero { min-height: auto; padding-top: 72px; }
  .hero-inner { padding: 80px 0 64px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 24px 0; }
  .stat-card + .stat-card { border-left: 0; }
  .stat-card:nth-child(even) { border-left: 1px solid rgba(255, 255, 255, 0.3); }
  .stat-card:nth-child(n+3) { border-top: 1px solid rgba(255, 255, 255, 0.25); }
  .services-grid, .team-grid, .blog-grid, .why-grid { grid-template-columns: 1fr; }
  .about-points { grid-template-columns: 1fr; }
  .contact-form { padding: 28px; }
  .wa-float span { display: none; }
  .wa-float { padding: 15px; }
}

/* ===== HALAMAN TENTANG KAMI ===== */
.about-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 80vh;
  padding-top: 80px;
  background: var(--dark);
  color: #fff;
  overflow: hidden;
}
.about-hero-inner {
  position: relative;
  z-index: 2;
  width: min(1160px, 92%);
  margin-inline: auto;
  padding: 110px 0 96px;
}
.about-hero-text { max-width: 720px; }
.about-hero-text .badge { margin-bottom: 24px; }
.about-hero-text h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.12;
  margin-bottom: 22px;
  color: #fff;
}
.about-hero-text p { color: #cbd5e1; font-size: 1.1rem; margin-bottom: 30px; max-width: 620px; }

/* ===== SIAPA KAMI (TENTANG KAMI) ===== */
.ab-whoweare {
  position: relative;
  padding: 110px 0;
  background: var(--dark);
  color: #fff;
  overflow: hidden;
}
.ab-wh-bg {
  position: absolute;
  inset: 0;
  background: url("../assets/img/kantor-konsultan-pajak.jpg") center / cover no-repeat;
}
.ab-wh-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(2, 6, 23, 0.96) 0%, rgba(2, 6, 23, 0.85) 42%, rgba(15, 23, 42, 0.5) 100%);
}
.ab-wh-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}
.ab-wh-text .badge { margin-bottom: 22px; }
.ab-wh-text h2 {
  font-size: clamp(1.9rem, 3.8vw, 2.9rem);
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.18;
  margin-bottom: 22px;
  color: #fff;
}
.ab-wh-text > p {
  color: #e2e8f0;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 30px;
  max-width: 560px;
}
.ab-wh-tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 0;
}
.ab-wh-tags li {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 600;
  font-size: 0.92rem;
  color: #f8fafc;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.ab-wh-tags .check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--red));
  color: #fff;
  font-size: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ab-wh-card {
  position: relative;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  padding: 42px 38px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}
.ab-wh-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--red));
}
.ab-wh-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.ab-wh-quote {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3rem;
  line-height: 1;
  background: linear-gradient(135deg, var(--orange), var(--red));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ab-wh-card-head h3 {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.3px;
  color: #fff;
}
.ab-wh-card > p {
  color: #e2e8f0;
  font-size: 1.02rem;
  line-height: 1.8;
  margin-bottom: 26px;
}
.ab-wh-points {
  list-style: none;
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0 0 32px;
}
.ab-wh-points li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #f1f5f9;
  font-size: 0.98rem;
  line-height: 1.55;
}
.ab-wh-points .check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--red));
  color: #fff;
  font-size: 0.72rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.ab-wh-card .btn { width: 100%; justify-content: center; }

/* ===== VISI & MISI (TENTANG KAMI) ===== */
.ab-vm-section { position: relative; overflow: hidden; }
.ab-vm-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 300px at 12% 20%, var(--orange-20), transparent 60%),
    radial-gradient(600px 320px at 88% 85%, var(--red-10), transparent 60%);
  pointer-events: none;
}
.vm-grid { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.vm-card {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.vm-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--grad);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.vm-card::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--orange-20), transparent 65%);
  top: -70px;
  right: -70px;
  pointer-events: none;
}
.vm-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 60px rgba(15, 23, 42, 0.16);
  border-color: rgba(249, 150, 30, 0.4);
}
.vm-card:hover::before { opacity: 1; }
.vm-card-top {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 26px;
}
.vm-icon {
  width: 62px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  border-radius: 18px;
  background: var(--grad);
  color: #fff;
  box-shadow: 0 12px 26px rgba(249, 150, 30, 0.4);
}
.vm-tag {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--red);
  background: var(--red-10);
  border: 1px solid rgba(220, 38, 38, 0.2);
  padding: 7px 14px;
  border-radius: 999px;
}
.vm-card h3 {
  position: relative;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.4px;
  margin-bottom: 14px;
  color: var(--dark);
}
.vm-card-vision p {
  position: relative;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.8;
  margin-bottom: 26px;
}
.vm-quote {
  position: relative;
  background: linear-gradient(135deg, rgba(249, 150, 30, 0.08), rgba(220, 38, 38, 0.08));
  border: 1px dashed rgba(249, 150, 30, 0.4);
  border-radius: var(--radius);
  padding: 20px 22px 20px 56px;
  font-weight: 600;
  color: var(--dark-soft);
  line-height: 1.6;
}
.vm-quote-mark {
  position: absolute;
  top: 8px;
  left: 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.4rem;
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.vm-list {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 6px;
}
.vm-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.6;
}
.vm-step {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 12px;
  background: var(--grad);
  color: #fff;
  font-weight: 800;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(249, 150, 30, 0.35);
}

/* ===== NILAI-NILAI (TENTANG KAMI) ===== */
.nv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.nv-card {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  text-align: center;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.nv-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--grad);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.nv-card::after {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--orange-20), transparent 65%);
  top: -60px;
  right: -60px;
  pointer-events: none;
}
.nv-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 54px rgba(15, 23, 42, 0.14);
  border-color: rgba(249, 150, 30, 0.4);
}
.nv-card:hover::before { opacity: 1; }
.nv-num {
  position: absolute;
  top: 20px;
  right: 26px;
  font-weight: 800;
  font-size: 2.3rem;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(249, 150, 30, 0.35);
  pointer-events: none;
}
.nv-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  border-radius: 18px;
  background: var(--grad);
  color: #fff;
  box-shadow: 0 12px 26px rgba(249, 150, 30, 0.4);
}
.nv-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.3px;
  margin-bottom: 12px;
  color: var(--dark);
}
.nv-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===== HALAMAN LAYANAN KAMI ===== */
.hero-bg-office { background: url("../assets/img/kantor-konsultan-pajak.jpg") center / cover no-repeat; }.svc-detail-list { display: flex; flex-direction: column; }
.svc-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 48px 0;
  border-bottom: 1px solid var(--line);
}
.svc-detail:first-child { padding-top: 16px; }
.svc-detail:last-child { border-bottom: 0; padding-bottom: 8px; }
.svc-detail:nth-child(even) .svc-detail-media { order: 2; }
.svc-detail-media img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}
.svc-detail-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--grad);
  color: #fff;
  font-weight: 800;
  font-size: 1.3rem;
  margin-bottom: 18px;
  box-shadow: 0 10px 24px rgba(249, 150, 30, 0.35);
}
.svc-detail h3 {
  font-size: clamp(1.3rem, 2.6vw, 1.7rem);
  font-weight: 800;
  letter-spacing: -0.4px;
  margin-bottom: 14px;
  color: var(--dark);
  line-height: 1.3;
}
.svc-detail p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 24px;
}
.plan-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: stretch;
  max-width: 920px;
  margin-inline: auto;
}
.plan-card {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 42px 36px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.plan-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 54px rgba(15, 23, 42, 0.14);
  border-color: rgba(249, 150, 30, 0.4);
}
.plan-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--grad);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.plan-card:hover::before { opacity: 1; }
.plan-card-featured {
  border-color: rgba(249, 150, 30, 0.35);
  box-shadow: 0 18px 44px rgba(249, 150, 30, 0.15);
}
.plan-card-featured::before { opacity: 1; }
.plan-flag {
  position: absolute;
  top: 22px;
  right: 24px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  background: var(--grad);
  color: #fff;
  padding: 7px 14px;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(249, 150, 30, 0.4);
}
.plan-flag-soft {
  background: var(--orange-10);
  color: var(--red);
  border: 1px solid rgba(220, 38, 38, 0.25);
  box-shadow: none;
}
.plan-card h3 {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.4px;
  margin-bottom: 12px;
  padding-right: 90px;
  color: var(--dark);
}
.plan-card > p {
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.7;
  margin-bottom: 24px;
}
.plan-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 30px;
}
.plan-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--dark-soft);
  font-size: 0.97rem;
  line-height: 1.55;
}
.plan-list .check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--grad);
  color: #fff;
  font-size: 0.72rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.plan-card .btn { width: 100%; justify-content: center; }

/* ===== HALAMAN KONSULTAN KAMI ===== */
.hero-bg-konsultan { background: url("../assets/img/konsultan-team.jpg") center / cover no-repeat; }
.kedu-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.kedu-text .badge { margin-bottom: 20px; }
.kedu-text h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--dark);
}
.kedu-text p { color: var(--muted); font-size: 1.04rem; line-height: 1.8; }
.kedu-text p strong { color: var(--dark); }
.kedu-note {
  position: relative;
  background: linear-gradient(135deg, rgba(249, 150, 30, 0.08), rgba(220, 38, 38, 0.08));
  border: 1px solid rgba(249, 150, 30, 0.35);
  border-radius: var(--radius-lg);
  padding: 38px 34px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.kedu-note::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--grad);
}
.kedu-note-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  border-radius: 14px;
  background: var(--grad);
  color: #fff;
  margin-bottom: 18px;
  box-shadow: 0 10px 24px rgba(249, 150, 30, 0.35);
}
.kedu-note h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 12px; color: var(--dark); }
.kedu-note p { color: var(--muted); font-size: 0.98rem; line-height: 1.75; }
.kedu-note p strong { color: var(--dark); }
.kwhy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 860px;
  margin-inline: auto;
}
.kwhy-card {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  text-align: center;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.kwhy-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--grad);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.kwhy-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 54px rgba(15, 23, 42, 0.14);
  border-color: rgba(249, 150, 30, 0.4);
}
.kwhy-card:hover::before { opacity: 1; }
.kwhy-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  border-radius: 16px;
  background: var(--grad);
  color: #fff;
  box-shadow: 0 12px 26px rgba(249, 150, 30, 0.4);
}
.kwhy-card h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 12px; color: var(--dark); }
.kwhy-card p { color: var(--muted); font-size: 0.96rem; line-height: 1.7; }
.team-card .btn { margin-top: 18px; }

.stats-strip { background: var(--grad); padding: 44px 0; }
.stats-inner { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-box { text-align: center; padding: 4px 16px; transition: transform 0.25s ease; }
.stat-box + .stat-box { border-left: 1px solid rgba(255, 255, 255, 0.3); }
.stat-box:hover { transform: scale(1.06); }

.svc-link {
  display: inline-block;
  margin-top: 18px;
  color: var(--red);
  font-weight: 700;
  font-size: 0.92rem;
}
.svc-link:hover { text-decoration: underline; }

.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.step-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.step-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--grad);
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 18px;
  box-shadow: var(--shadow-orange);
}
.step-card h3 { font-size: 1.05rem; margin-bottom: 10px; color: var(--dark); }
.step-card p { color: var(--muted); font-size: 0.92rem; }

.cta-feats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 34px;
}
.cta-feats li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.92rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  padding: 12px 14px;
  backdrop-filter: blur(4px);
}
.cta-feats .check { background: rgba(255, 255, 255, 0.2); color: #fff; }

.faq-list { max-width: 780px; margin-inline: auto; display: flex; flex-direction: column; gap: 16px; }
.faq-item {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.14);
  border-color: rgba(249, 150, 30, 0.4);
}
.faq-item.open {
  border-color: rgba(249, 150, 30, 0.5);
  box-shadow: 0 18px 44px rgba(249, 150, 30, 0.18);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 20px 24px;
  background: none;
  border: 0;
  font-family: inherit;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--dark);
  text-align: left;
  cursor: pointer;
  transition: color 0.2s ease;
}
.faq-q::after {
  content: "+";
  flex: 0 0 auto;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--orange);
  transition: transform 0.3s ease;
}
.faq-item.open .faq-q::after { content: "−"; transform: rotate(180deg); }
.faq-item.open .faq-q { color: var(--orange); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-a p { padding: 0 24px 22px; color: var(--muted); font-size: 0.95rem; }
.faq-item.open .faq-a { max-height: 420px; }

@media (max-width: 992px) {
  .about-hero-inner { gap: 40px; }
  .about-hero { min-height: auto; }
  .about-hero-inner { padding: 100px 0 80px; }
  .vm-grid { grid-template-columns: 1fr; }
  .ab-wh-inner { grid-template-columns: 1fr; gap: 44px; }
  .ab-whoweare { padding: 90px 0; }
  .nv-grid { grid-template-columns: 1fr; }
  .svc-detail { grid-template-columns: 1fr; gap: 28px; }
  .svc-detail:nth-child(even) .svc-detail-media { order: 0; }
  .svc-detail-body { order: 1; }
  .plan-grid { grid-template-columns: 1fr; }
  .kedu-grid { grid-template-columns: 1fr; gap: 32px; }
  .ab-wh-bg::after {
    background: linear-gradient(100deg, rgba(2, 6, 23, 0.94) 0%, rgba(2, 6, 23, 0.88) 60%, rgba(15, 23, 42, 0.72) 100%);
  }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 28px 0; }
  .stat-box + .stat-box { border-left: 0; }
  .stat-box:nth-child(even) { border-left: 1px solid rgba(255, 255, 255, 0.3); }
  .stat-box:nth-child(n+3) { border-top: 1px solid rgba(255, 255, 255, 0.25); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-feats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .about-hero { min-height: auto; padding-top: 72px; }
  .about-hero-inner { padding: 80px 0 64px; }
  .steps-grid { grid-template-columns: 1fr; }
  .cta-feats { grid-template-columns: 1fr; }
  .ab-whoweare { padding: 76px 0; }
  .ab-wh-card { padding: 32px 24px; }
  .ab-wh-tags li { width: 100%; }
  .kwhy-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   TP DOC (Transfer Pricing Documentation)
   ========================================================= */
.text-grad {
  background: linear-gradient(92deg, #fbbf24 0%, var(--orange) 45%, #f87171 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.tp-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(150deg, #020617 0%, #0f172a 55%, #1e1b4b 100%);
  color: #fff;
}
.tp-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 340px at 82% 12%, rgba(249, 150, 30, 0.22), transparent 65%),
    radial-gradient(520px 320px at 12% 88%, rgba(220, 38, 38, 0.2), transparent 60%),
    repeating-linear-gradient(0deg, transparent, transparent 54px, rgba(255, 255, 255, 0.03) 54px, rgba(255, 255, 255, 0.03) 55px),
    repeating-linear-gradient(90deg, transparent, transparent 54px, rgba(255, 255, 255, 0.03) 54px, rgba(255, 255, 255, 0.03) 55px);
  pointer-events: none;
}
.tp-hero-bg::before {
  content: "";
  position: absolute;
  top: -60%;
  right: -10%;
  width: 620px;
  height: 620px;
  background: conic-gradient(from 180deg, rgba(249, 150, 30, 0.35), transparent 40%, rgba(220, 38, 38, 0.28) 70%, rgba(249, 150, 30, 0.35));
  filter: blur(70px);
  border-radius: 50%;
}
.tp-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  padding: 130px 0 110px;
}
.tp-hero-text h1 { font-size: clamp(2rem, 4.2vw, 3.2rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1.16; margin: 20px 0 18px; }
.tp-hero-text p { font-size: 1.08rem; color: #cbd5e1; line-height: 1.75; margin-bottom: 30px; }
.tp-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.tp-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #fde68a;
  background: rgba(249, 150, 30, 0.12);
  border: 1px solid rgba(249, 150, 30, 0.45);
  backdrop-filter: blur(6px);
}
.tp-chip::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 10px var(--orange); }
.tp-hero-media { position: relative; }
.tp-hero-frame {
  position: relative;
  border-radius: 24px;
  padding: 10px;
  background: linear-gradient(135deg, rgba(249, 150, 30, 0.85), rgba(220, 38, 38, 0.55) 55%, rgba(255, 255, 255, 0.12));
  box-shadow: 0 30px 70px -20px rgba(0, 0, 0, 0.65);
}
.tp-hero-frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
  background: #0b1120;
}
.tp-float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  color: #0f172a;
  box-shadow: 0 18px 40px -12px rgba(2, 6, 23, 0.45);
  backdrop-filter: blur(8px);
  animation: tpFloat 5s ease-in-out infinite;
}
.tp-float-a { top: 26px; right: -22px; }
.tp-float-b { bottom: 30px; left: -26px; animation-delay: 2.5s; }
.tp-float-icon {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--orange), var(--red));
  color: #fff;
}
.tp-float-card strong { display: block; font-size: 0.92rem; font-weight: 800; }
.tp-float-card small { display: block; font-size: 0.72rem; color: #64748b; margin-top: 2px; }
@keyframes tpFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.tp-intro-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.tp-intro-media img {
  width: 100%;
  border-radius: 22px;
  box-shadow: 0 28px 60px -22px rgba(15, 23, 42, 0.35);
  border: 1px solid #e2e8f0;
}
.tp-intro-text p { color: var(--muted); line-height: 1.8; margin-bottom: 18px; font-size: 1rem; }
.tp-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-top: 10px;
  padding: 20px 22px;
  border-radius: 16px;
  background: linear-gradient(135deg, #fff7ed, #fff);
  border: 1px solid #fed7aa;
  box-shadow: 0 14px 34px -16px rgba(249, 150, 30, 0.35);
}
.tp-card-icon {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--orange), var(--red));
  color: #fff;
  box-shadow: 0 10px 20px -8px rgba(220, 38, 38, 0.5);
}
.tp-card h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: 4px; }
.tp-card p { margin: 0 !important; font-size: 0.92rem !important; }
.tp-why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.tp-why-card {
  position: relative;
  padding: 34px 28px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 18px 40px -22px rgba(15, 23, 42, 0.22);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}
.tp-why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--red));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.tp-why-card:hover { transform: translateY(-8px); box-shadow: 0 30px 60px -24px rgba(15, 23, 42, 0.3); }
.tp-why-card:hover::before { transform: scaleX(1); }
.tp-why-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  border-radius: 16px;
  background: linear-gradient(135deg, #fff7ed, #ffedd5);
  border: 1px solid #fed7aa;
  margin-bottom: 18px;
}
.tp-why-card h3 { font-size: 1.12rem; font-weight: 800; margin-bottom: 10px; }
.tp-why-card p { color: var(--muted); font-size: 0.94rem; line-height: 1.7; }
.tp-tier-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.tp-tier-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 34px 28px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 18px 40px -22px rgba(15, 23, 42, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.tp-tier-card:hover { transform: translateY(-8px); box-shadow: 0 32px 64px -26px rgba(15, 23, 42, 0.32); }
.tp-tier-featured {
  background: linear-gradient(165deg, #0f172a 0%, #1e1b4b 100%);
  color: #fff;
  border: 1px solid rgba(249, 150, 30, 0.55);
  box-shadow: 0 28px 60px -24px rgba(15, 23, 42, 0.5);
}
.tp-tier-flag {
  position: absolute;
  top: 22px;
  right: 22px;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--orange);
  background: #fff7ed;
  border: 1px solid #fed7aa;
}
.tp-tier-flag-hot {
  color: #fff;
  background: linear-gradient(90deg, var(--orange), var(--red));
  border: 0;
  animation: tpPulse 2.2s ease-in-out infinite;
}
@keyframes tpPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(249, 150, 30, 0.55); }
  50% { box-shadow: 0 0 0 8px rgba(249, 150, 30, 0); }
}
.tp-tier-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  font-size: 1.7rem;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--orange), var(--red));
  color: #fff;
  box-shadow: 0 14px 26px -10px rgba(220, 38, 38, 0.55);
  margin-bottom: 20px;
}
.tp-tier-featured .tp-tier-icon { background: linear-gradient(135deg, #fbbf24, #f97316); }
.tp-tier-card h3 { font-size: 1.18rem; font-weight: 800; line-height: 1.35; margin-bottom: 12px; }
.tp-tier-card p { color: var(--muted); font-size: 0.93rem; line-height: 1.7; margin-bottom: 16px; }
.tp-tier-featured p { color: #cbd5e1; }
.tp-tier-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.tp-tier-list li {
  position: relative;
  padding-left: 24px;
  font-size: 0.9rem;
  color: #334155;
  line-height: 1.55;
}
.tp-tier-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--red));
}
.tp-tier-featured .tp-tier-list li { color: #e2e8f0; }
.tp-table-wrap {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 20px 50px -26px rgba(15, 23, 42, 0.28);
  overflow-x: auto;
}
.tp-table { width: 100%; border-collapse: collapse; min-width: 640px; }
.tp-table thead th {
  background: linear-gradient(90deg, var(--orange), var(--red));
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  text-align: left;
  padding: 16px 20px;
  white-space: nowrap;
}
.tp-table tbody td {
  padding: 15px 20px;
  font-size: 0.93rem;
  color: #334155;
  border-bottom: 1px solid #f1f5f9;
}
.tp-table tbody tr:nth-child(even) td { background: #f8fafc; }
.tp-table tbody tr:last-child td { border-bottom: 0; }
.tp-table tbody tr:hover td { background: #fff7ed; }
.tp-table td strong { color: var(--red); font-weight: 800; white-space: nowrap; }
.tp-note {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-top: 24px;
  padding: 18px 22px;
  border-radius: 16px;
  background: #fffbeb;
  border: 1px solid #fde68a;
  color: #78350f;
  font-size: 0.92rem;
  line-height: 1.7;
}
.tp-note-icon { flex: 0 0 auto; font-size: 1.3rem; }
.tp-del-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 52px; align-items: center; }
.tp-del-media { position: relative; }
.tp-del-media img {
  width: 100%;
  border-radius: 22px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 28px 60px -24px rgba(15, 23, 42, 0.35);
}
.tp-del-stamp {
  position: absolute;
  left: 50%;
  bottom: -26px;
  transform: translateX(-50%);
  width: min(270px, 88%);
  text-align: center;
  padding: 18px 20px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--orange), var(--red));
  color: #fff;
  box-shadow: 0 22px 44px -14px rgba(220, 38, 38, 0.55);
}
.tp-del-stamp-icon {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  font-size: 1.1rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  margin-bottom: 8px;
}
.tp-del-stamp strong { display: block; font-size: 1rem; font-weight: 800; }
.tp-del-stamp small { display: block; font-size: 0.78rem; opacity: 0.92; margin-top: 3px; }
.tp-del-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 16px; }
.tp-del-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.97rem; color: #334155; line-height: 1.6; }
.tp-del-list .check {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  margin-top: 2px;
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--red));
  box-shadow: 0 6px 14px -6px rgba(220, 38, 38, 0.5);
}
@media (max-width: 992px) {
  .tp-hero-inner { grid-template-columns: 1fr; gap: 44px; padding: 110px 0 80px; }
  .tp-hero-text { order: 1; }
  .tp-hero-media { order: 2; max-width: 520px; margin: 0 auto; }
  .tp-float-a { right: -6px; }
  .tp-float-b { left: -6px; }
  .tp-intro-grid { grid-template-columns: 1fr; gap: 36px; }
  .tp-why-grid { grid-template-columns: 1fr; }
  .tp-tier-grid { grid-template-columns: 1fr; }
  .tp-del-grid { grid-template-columns: 1fr; gap: 60px; }
}
@media (max-width: 768px) {
  .tp-hero-inner { padding: 96px 0 64px; }
  .tp-chips { gap: 8px; }
  .tp-chip { font-size: 0.76rem; padding: 7px 12px; }
  .tp-float-card { padding: 10px 14px; }
  .tp-float-card strong { font-size: 0.84rem; }
  .tp-float-card small { font-size: 0.68rem; }
  .tp-why-card { padding: 28px 22px; }
  .tp-tier-card { padding: 30px 22px; }
  .tp-note { flex-direction: column; }
}

/* =========================================================
   ARTIKEL / BLOG PAGE
   ========================================================= */
.art-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(2, 6, 23, 0.92) 0%, rgba(15, 23, 42, 0.84) 55%, rgba(30, 27, 75, 0.66) 100%),
    url("../assets/img/gunung-kidul.jpg") center 35% / cover no-repeat,
    linear-gradient(150deg, #020617 0%, #0f172a 60%, #1e1b4b 100%);
  color: #fff;
}
.art-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(640px 360px at 78% 18%, rgba(249, 150, 30, 0.22), transparent 65%),
    radial-gradient(520px 320px at 14% 90%, rgba(220, 38, 38, 0.2), transparent 60%),
    repeating-linear-gradient(0deg, transparent, transparent 54px, rgba(255, 255, 255, 0.03) 54px, rgba(255, 255, 255, 0.03) 55px),
    repeating-linear-gradient(90deg, transparent, transparent 54px, rgba(255, 255, 255, 0.03) 54px, rgba(255, 255, 255, 0.03) 55px);
  pointer-events: none;
}
.art-hero-bg::before {
  content: "";
  position: absolute;
  top: -70%;
  right: -12%;
  width: 560px;
  height: 560px;
  background: conic-gradient(from 200deg, rgba(249, 150, 30, 0.32), transparent 45%, rgba(220, 38, 38, 0.26) 75%, rgba(249, 150, 30, 0.32));
  filter: blur(70px);
  border-radius: 50%;
}
.art-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin-inline: auto;
  text-align: center;
  padding: 130px 0 120px;
}
.art-hero-text h1 { font-size: clamp(2rem, 4.4vw, 3.1rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1.16; margin: 20px 0 18px; }
.art-hero-text p { font-size: 1.08rem; color: #cbd5e1; line-height: 1.75; max-width: 640px; margin-inline: auto; }
.art-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: -20px 0 44px;
}
.art-chip {
  padding: 9px 20px;
  border-radius: 999px;
  border: 1px solid #e2e8f0;
  background: #fff;
  color: #475569;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}
.art-chip:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-2px); }
.art-chip.active {
  background: linear-gradient(90deg, var(--orange), var(--red));
  border-color: transparent;
  color: #fff;
  box-shadow: 0 10px 22px -10px rgba(220, 38, 38, 0.55);
}
.blog-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: #94a3b8;
  margin-bottom: 14px;
}
.blog-meta-dot { color: var(--orange); font-weight: 800; }
.art-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 52px;
}
.pagination-btn {
  padding: 10px 20px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  background: #fff;
  color: #334155;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
}
.pagination-btn:hover:not(:disabled) { border-color: var(--orange); color: var(--orange); transform: translateY(-2px); }
.pagination-btn:disabled { opacity: 0.45; cursor: not-allowed; }
.pagination-nums { display: flex; align-items: center; gap: 8px; }
.page-num {
  min-width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  padding: 0 8px;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  background: #fff;
  color: #334155;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.25s ease;
}
.page-num:hover { border-color: var(--orange); color: var(--orange); }
.page-num.active {
  background: linear-gradient(90deg, var(--orange), var(--red));
  border-color: transparent;
  color: #fff;
  box-shadow: 0 10px 22px -10px rgba(220, 38, 38, 0.55);
}
.page-num-dots { color: #94a3b8; font-weight: 700; }
.art-news {
  position: relative;
  overflow: hidden;
  padding: 84px 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
  color: #fff;
}
.art-news-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(500px 300px at 12% 20%, rgba(249, 150, 30, 0.18), transparent 65%),
    radial-gradient(460px 280px at 88% 85%, rgba(220, 38, 38, 0.16), transparent 60%);
  pointer-events: none;
}
.art-news-inner { position: relative; z-index: 1; max-width: 680px; margin-inline: auto; text-align: center; }
.art-news-inner h2 { font-size: clamp(1.6rem, 3.4vw, 2.4rem); font-weight: 800; letter-spacing: -0.02em; line-height: 1.25; margin: 20px 0 14px; }
.art-news-inner p { color: #cbd5e1; font-size: 1.02rem; line-height: 1.7; margin-bottom: 30px; }
.art-news-form {
  display: flex;
  gap: 12px;
  max-width: 520px;
  margin: 0 auto 14px;
  padding: 8px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
}
.art-news-form input {
  flex: 1;
  min-width: 0;
  padding: 12px 16px;
  border-radius: 10px;
  border: 0;
  background: rgba(255, 255, 255, 0.94);
  color: #0f172a;
  font-family: inherit;
  font-size: 0.92rem;
  outline: none;
}
.art-news-form input:focus { box-shadow: 0 0 0 3px rgba(249, 150, 30, 0.45); }
.art-news-note { font-size: 0.8rem; color: #94a3b8; }
@media (max-width: 768px) {
  .art-hero-inner { padding: 104px 0 80px; }
  .art-news { padding: 64px 0; }
  .art-news-form { flex-direction: column; }
  .art-news-form .btn { width: 100%; }
}

/* =========================================================
   WHATSAPP CONSULTATION POPUP
   ========================================================= */
.popup-overlay {
  position: fixed;
  right: 22px;
  bottom: 90px;
  z-index: 95;
  width: 340px;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px) scale(0.92);
  transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.popup-overlay.show { opacity: 1; visibility: visible; transform: translateY(0) scale(1); pointer-events: auto; }
.popup-card {
  position: relative;
  width: 100%;
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(165deg, #0f172a 0%, #1e1b4b 100%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 24px 60px -12px rgba(0, 0, 0, 0.65),
    0 0 80px 20px rgba(37, 211, 102, 0.1);
}
.popup-pointer {
  position: absolute;
  bottom: -10px;
  right: 36px;
  width: 20px;
  height: 20px;
  background: linear-gradient(165deg, #0f172a, #1e1b4b);
  transform: rotate(45deg);
  box-shadow: 4px 4px 10px -2px rgba(0, 0, 0, 0.3);
  z-index: 1;
}
.popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 10;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.1);
  color: #94a3b8;
  font-size: 1rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.25s ease, color 0.25s ease;
}
.popup-close:hover { background: rgba(255, 255, 255, 0.2); color: #fff; }
.popup-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(260px 140px at 20% 0%, rgba(37, 211, 102, 0.26), transparent 60%),
    radial-gradient(200px 120px at 85% 100%, rgba(249, 150, 30, 0.14), transparent 55%);
  pointer-events: none;
}
.popup-body {
  position: relative;
  z-index: 2;
  padding: 30px 24px 24px;
  text-align: center;
  color: #fff;
}
.popup-icon-wrap {
  position: relative;
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  display: grid;
  place-items: center;
}
.popup-icon-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.35);
  animation: popupRing 2.4s ease-in-out infinite;
}
@keyframes popupRing {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.5; }
}
.popup-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  box-shadow: 0 10px 28px -6px rgba(37, 211, 102, 0.55);
}
.popup-icon svg { fill: #fff; width: 24px; height: 24px; }
.popup-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #25d366;
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.3);
  margin-bottom: 12px;
}
.popup-body h3 {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 8px;
}
.popup-body p {
  font-size: 0.84rem;
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 22px;
}
.popup-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: 999px;
  border: 0;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #fff;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 800;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 10px 28px -6px rgba(37, 211, 102, 0.5);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: popupCtaPulse 2.2s ease-in-out infinite;
}
.popup-cta:hover { transform: translateY(-2px) scale(1.03); box-shadow: 0 14px 36px -4px rgba(37, 211, 102, 0.6); }
.popup-cta svg { width: 18px; height: 18px; fill: #fff; flex: 0 0 auto; }
@keyframes popupCtaPulse {
  0%, 100% { box-shadow: 0 10px 28px -6px rgba(37, 211, 102, 0.5); }
  50% { box-shadow: 0 10px 36px -2px rgba(37, 211, 102, 0.65), 0 0 0 5px rgba(37, 211, 102, 0.1); }
}
.popup-dismiss {
  display: block;
  margin: 14px auto 0;
  padding: 4px 10px;
  border: 0;
  background: transparent;
  color: #64748b;
  font-family: inherit;
  font-size: 0.76rem;
  cursor: pointer;
  transition: color 0.25s ease;
}
.popup-dismiss:hover { color: #94a3b8; }
@media (max-width: 480px) {
  .popup-overlay { right: 14px; bottom: 82px; width: 300px; }
  .popup-body { padding: 26px 18px 20px; }
  .popup-body h3 { font-size: 1.05rem; }
}

