/* ═══════════════════════════════════════════
   BALI WEB DESIGN — GLOBAL STYLE SYSTEM
   ═══════════════════════════════════════════ */

:root {
  --orange: #FF5733;
  --orange-hover: #e8421f;
  --orange-light: #fff4f1;
  --orange-glow: rgba(255, 87, 51, .12);
  --ink: #0f0b07;
  --ink-80: #2a2319;
  --ink-50: #8a7c6a;
  --ink-20: #e8e3db;
  --sand: #f9f6f0;
  --sand-2: #f0ebe2;
  --white: #ffffff;
  --teal: #0d7a5a;
  --teal-light: #e8f5ef;
  --blue: #1a4fa0;
  --blue-light: #eaf0fc;
  --gold: #c9930a;
  --gold-light: #fdf5e0;
  --purple: #534AB7;
  --purple-light: #eeedfe;
  --radius: 16px;
  --radius-sm: 8px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, .06), 0 1px 2px rgba(0, 0, 0, .04);
  --shadow: 0 4px 16px rgba(0, 0, 0, .08), 0 1px 4px rgba(0, 0, 0, .04);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, .10), 0 4px 16px rgba(0, 0, 0, .06);
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
  --nav-h: 72px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-top: var(--nav-h) !important;
}

.home-page {
  padding-top: 0 !important;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ── TYPOGRAPHY ── */
.display {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.display-lg {
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.05;
}

.display-md {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
}

.display-sm {
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.15;
}

.eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #d9421a;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.eyebrow::before {
  content: '';
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
}

.body-lg {
  font-size: 18px;
  line-height: 1.75;
  color: var(--ink-50);
}

.body-md {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-50);
}

.body-sm {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-50);
}

/* ── LAYOUT ── */
.container {
  max-width: 1220px;
  margin-left: auto !important;
  margin-right: auto !important;
  padding: 0 24px;
}

@media(max-width: 768px) {
  .container {
    padding: 0 20px;
  }
}

@media(max-width: 480px) {
  .container {
    padding: 0 16px;
  }
}

.section {
  padding: 96px 0;
}

.section-sm {
  padding: 64px 0;
}

.row {
  display: flex;
  align-items: center;
  gap: 64px;
}

.row.reverse {
  flex-direction: row-reverse;
}

.col {
  flex: 1;
}

@media(max-width: 860px) {
  .row {
    flex-direction: column !important;
    gap: 40px;
  }
}

.text-center {
  text-align: center;
}

.mt-4 {
  margin-top: 16px;
}

.mt-6 {
  margin-top: 24px;
}

.mt-8 {
  margin-top: 32px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  cursor: pointer;
  border: none;
  border-radius: 10px;
  transition: all .22s ease;
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: var(--orange);
  color: #fff;
  padding: 14px 28px;
  box-shadow: 0 4px 14px rgba(255, 87, 51, .35);
}

.btn-primary:hover {
  background: var(--orange-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255, 87, 51, .4);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-outline {
  background: transparent;
  color: var(--ink-80);
  padding: 13px 26px;
  border: 1.5px solid var(--ink-20);
}

.btn-outline:hover {
  border-color: var(--ink-50);
  background: var(--sand);
}

.btn-ghost {
  background: transparent;
  color: var(--orange);
  padding: 13px 0;
}

.btn-ghost:hover {
  gap: 12px;
}

.btn-ghost .arr {
  transition: transform .2s;
}

.btn-ghost:hover .arr {
  transform: translateX(4px);
}

.btn-wa {
  background: #25D366;
  color: #fff;
  padding: 14px 28px;
  box-shadow: 0 4px 14px rgba(37, 211, 102, .3);
}

.btn-wa:hover {
  background: #1ebe5d;
  transform: translateY(-1px);
}

/* ── NAVIGATION ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  z-index: 1000;
  transition: background .3s, box-shadow .3s;
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(25px) saturate(180%);
  -webkit-backdrop-filter: blur(25px) saturate(180%);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-logo-img {
  height: auto;
  width: 140px;
  /* Mobile size */
  display: block;
  transition: width 0.3s ease;
}

@media (min-width: 1024px) {
  .nav-logo-img {
    width: 170px;
    /* Desktop size */
  }
}

.nav-logo-mark {
  width: 40px;
  height: 40px;
  background: var(--orange);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-logo-text {
  font-weight: 600;
  font-size: 14px;
  line-height: 1.2;
}

.nav-logo-sub {
  font-size: 10px;
  color: var(--orange);
  letter-spacing: .03em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  color: var(--ink-80);
  transition: background .15s, color .15s;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  text-decoration: none;
  border: none;
  background: transparent;
  font-family: var(--font-body);
}

.nav-link:hover,
.nav-item:hover>.nav-link {
  background: var(--sand);
  color: var(--ink);
}

.nav-link.active {
  color: var(--orange);
}

.nav-link .chevron {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  opacity: .5;
  transition: transform .2s, opacity .2s;
}

.nav-item:hover>.nav-link .chevron {
  transform: rotate(180deg);
  opacity: 1;
}

/* MEGA DROPDOWN */
.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, .12), 0 2px 8px rgba(0, 0, 0, .06);
  border: 1px solid var(--ink-20);
  padding: 10px;
  min-width: 620px;
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .2s ease, transform .2s ease, visibility 0s .2s;
}

/* Bridge gap for hover */
.dropdown::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  height: 20px;
}

.nav-item:hover .dropdown,
.nav-item.open .dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition: opacity .2s ease, transform .2s ease, visibility 0s 0s;
}

.dropdown-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}

.dd-group {
  padding: 8px 4px;
}

.dd-group-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--ink-50);
  padding: 4px 10px 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.dd-group-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--ink-20);
}

.dd-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-80);
  text-decoration: none;
  transition: background .12s, color .12s;
}

.dd-item:hover {
  background: var(--sand);
  color: var(--orange);
}

.dd-item-icon {
  width: 30px;
  height: 30px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dd-item-sub {
  font-size: 11px;
  color: var(--ink-50);
  font-weight: 400;
  margin-top: 1px;
}

.dd-tag {
  font-size: 9px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: auto;
  white-space: nowrap;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.dd-footer {
  border-top: 1px solid var(--ink-20);
  margin-top: 6px;
  padding: 10px 10px 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dd-footer-text {
  font-size: 12px;
  color: var(--ink-50);
}

.dd-footer-link {
  font-size: 12px;
  font-weight: 600;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* NAV RIGHT */
.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.lang-toggle {
  display: flex;
  background: var(--sand);
  border-radius: 8px;
  padding: 3px;
}

.lang-btn {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
  cursor: pointer;
  border: none;
  background: transparent;
  color: var(--ink-50);
  transition: all .15s;
}

.lang-btn.on {
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}

.nav-cta {
  font-size: 13px;
  padding: 9px 18px;
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: transparent;
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 1px;
  transition: all .2s;
}

/* MOBILE MENU */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 999;
  padding: 20px;
  overflow-y: auto;
  flex-direction: column;
  gap: 0;
}

.mobile-menu.open {
  display: flex;
}

.mobile-nav-link {
  font-size: 15px;
  font-weight: 500;
  padding: 14px 16px;
  border-radius: 0;
  color: var(--ink);
  border-bottom: 1px solid var(--sand-2);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-nav-link:hover {
  background: var(--sand);
}

.mobile-accordion-btn {
  font-size: 15px;
  font-weight: 500;
  padding: 14px 16px;
  color: var(--ink);
  border-bottom: 1px solid var(--sand-2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  background: transparent;
  border-top: none;
  border-left: none;
  border-right: none;
  width: 100%;
  font-family: var(--font-body);
  text-align: left;
}

.mobile-accordion-btn.open {
  color: var(--orange);
}

.mobile-accordion-btn .m-chev {
  transition: transform .2s;
}

.mobile-accordion-btn.open .m-chev {
  transform: rotate(180deg);
}

.mobile-accordion-body {
  display: none;
  background: var(--sand);
  border-bottom: 1px solid var(--sand-2);
}

.mobile-accordion-body.open {
  display: block;
}

.mobile-accordion-section {
  padding: 10px 16px 6px;
}

.mobile-accordion-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-50);
  padding: 6px 0;
  margin-bottom: 2px;
}

.mobile-dd-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  font-size: 14px;
  color: var(--ink-80);
  font-weight: 400;
  text-decoration: none;
  border-bottom: 1px solid var(--ink-20);
}

.mobile-dd-link:last-child {
  border-bottom: none;
}

.mobile-dd-link:hover {
  color: var(--orange);
}

@media(max-width: 1000px) {
  .dropdown {
    min-width: 440px;
  }
}

@media(max-width: 860px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .lang-toggle {
    display: none;
  }
}

/* ── BREADCRUMB ── */
.breadcrumb {
  background: var(--sand);
  padding: 14px 0;
  border-bottom: 1px solid var(--ink-20);
}

.breadcrumb-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--ink-50);
  flex-wrap: wrap;
}

.breadcrumb-inner a {
  color: var(--ink-50);
  transition: color .15s;
}

.breadcrumb-inner a:hover {
  color: var(--orange);
}

.breadcrumb-sep {
  opacity: .4;
}

.breadcrumb-current {
  color: var(--ink-80);
  font-weight: 500;
}

/* ── FOOTER ── */
.footer {
  background: #0a0703;
  padding: 64px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 0.8fr 0.8fr 0.8fr 1.4fr;
  gap: 40px;
  margin-bottom: 48px;
}

@media(max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    row-gap: 32px;
  }
}

@media(max-width: 500px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 32px;
  }

  .footer-col {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0;
  }

  .footer-col:first-child {
    border-bottom: none;
    margin-bottom: 24px;
  }

  .footer-col-title {
    cursor: pointer;
    margin-bottom: 0;
    padding: 14px 0;
    font-size: 11px;
  }

  .footer-chevron {
    display: block;
  }

  .footer-col-title.open .footer-chevron {
    transform: rotate(180deg);
  }

  .footer-links {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
  }

  .footer-links.open {
    max-height: 600px;
    padding-top: 4px;
    padding-bottom: 16px;
    opacity: 1;
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.footer-logo-mark {
  width: 36px;
  height: 36px;
  background: var(--orange);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo-text {
  font-weight: 600;
  font-size: 14px;
  color: var(--white);
}

.footer-logo-sub {
  font-size: 10px;
  color: var(--orange);
}

.footer-tagline {
  font-size: 13px;
  color: rgba(255, 255, 255, .45);
  line-height: 1.75;
  margin-bottom: 16px;
  max-width: 260px;
}

.footer-socials {
  display: flex;
  gap: 8px;
}

.footer-social {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .07);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s;
  cursor: pointer;
}

.footer-social:hover {
  background: rgba(255, 255, 255, .14);
}

.footer-col-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-chevron {
  display: none;
  transition: transform 0.3s ease;
}

.footer-link {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, .5);
  margin-bottom: 10px;
  transition: color .15s;
}

.footer-link:hover {
  color: var(--white);
}

.footer-link .new {
  font-size: 9px;
  background: var(--orange);
  color: #fff;
  padding: 1px 6px;
  border-radius: 3px;
  margin-left: 5px;
  vertical-align: middle;
  font-weight: 600;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .07);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-legal {
  font-size: 12px;
  color: rgba(255, 255, 255, .25);
}

.footer-legal a {
  color: rgba(255, 255, 255, .35);
  margin-left: 14px;
  transition: color .15s;
}

.footer-legal a:hover {
  color: rgba(255, 255, 255, .6);
}

/* ── ANIMATIONS ── */
@keyframes revealUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes magneticPull {
  0% { transform: translate(0, 0); }
  100% { transform: translate(var(--mx), var(--my)); }
}

.anim-reveal {
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.anim-reveal.visible {
  opacity: 1;
  transform: translateY(0) !important;
}

.btn:active {
  transform: scale(0.96);
}

.svc-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

@keyframes fadeRight {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeLeft {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.anim {
  opacity: 0;
  transition: opacity .8s ease, transform .8s ease;
}

.anim.visible {
  opacity: 1;
  transform: translate(0, 0) !important;
}

.anim-up {
  transform: translateY(30px);
}

.anim-right {
  transform: translateX(-30px);
}

.anim-left {
  transform: translateX(30px);
}

.anim-delay-1 {
  transition-delay: .1s;
}

.anim-delay-2 {
  transition-delay: .2s;
}

.anim-delay-3 {
  transition-delay: .3s;
}

.anim-delay-4 {
  transition-delay: .4s;
}

/* ── UTILITIES ── */
.badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
}

.badge-teal {
  background: var(--teal-light);
  color: var(--teal);
}

.badge-orange {
  background: var(--orange-light);
  color: var(--orange);
}

.badge-blue {
  background: var(--blue-light);
  color: var(--blue);
}

.badge-gold {
  background: var(--gold-light);
  color: var(--gold);
}

.badge-purple {
  background: var(--purple-light);
  color: var(--purple);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

/* ── SERVICE PAGE COMPONENTS ── */

/* ── BREADCRUMB ── */
.breadcrumb {
  background: var(--sand);
  padding: 14px 0;
  border-bottom: 1px solid var(--ink-20);
}

.breadcrumb-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--ink-50);
  flex-wrap: wrap;
}

.breadcrumb-inner a {
  color: var(--ink-50);
  transition: color .15s;
}

.breadcrumb-inner a:hover {
  color: var(--orange);
}

.breadcrumb-sep {
  opacity: .4;
}

.breadcrumb-current {
  color: var(--ink-80);
  font-weight: 500;
}

/* ── HERO PAGE ── */
.page-hero {
  background: var(--ink);
  padding: 72px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.ph-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
}

.ph-blob-1 {
  width: 500px;
  height: 500px;
  background: rgba(255, 87, 51, .18);
  top: -80px;
  right: -80px;
}

.ph-blob-2 {
  width: 360px;
  height: 360px;
  background: rgba(201, 147, 10, .1);
  bottom: -60px;
  left: -40px;
}

.ph-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 48px 48px;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  align-items: center;
}

.page-hero .btn-outline:hover {
  background: rgba(255, 255, 255, 0.9) !important;
  border-color: rgba(255, 255, 255, 0.9) !important;
  color: var(--ink) !important;
}

@media(max-width: 900px) {
  .page-hero-inner {
    grid-template-columns: 1fr;
  }

  .ph-visual {
    display: none;
  }
}

.ph-eyebrow {
  margin-bottom: 18px;
}

.ph-eyebrow .eyebrow {
  color: rgba(255, 180, 120, .85);
}

.ph-eyebrow .eyebrow::before {
  background: rgba(255, 180, 120, .85);
}

.ph-title {
  color: var(--white);
  margin-bottom: 20px;
}

.ph-title em {
  font-style: italic;
  color: var(--orange);
}

.ph-sub {
  font-size: 17px;
  color: rgba(255, 255, 255, .65);
  line-height: 1.75;
  max-width: 580px;
  margin-bottom: 36px;
}

.ph-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.ph-stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.ph-stat-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
}

.ph-stat-num span {
  color: var(--orange);
}

.ph-stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, .45);
  margin-top: 4px;
}

.ph-visual {
  flex-shrink: 0;
}

/* Stats card floater */
.ph-card {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  backdrop-filter: blur(20px);
  border-radius: 18px;
  padding: 24px 28px;
  width: 320px;
}

.ph-card-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .4);
  margin-bottom: 16px;
}

.ph-metric {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.ph-metric-label {
  font-size: 13px;
  color: rgba(255, 255, 255, .55);
}

.ph-metric-val {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--white);
}

.ph-metric-val.up {
  color: #4ade80;
}

.ph-bar-track {
  height: 5px;
  background: rgba(255, 255, 255, .1);
  border-radius: 3px;
  margin-bottom: 14px;
  overflow: hidden;
}

.ph-bar-fill {
  height: 100%;
  border-radius: 3px;
  background: var(--orange);
}

.ph-badge-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.ph-badge {
  font-size: 10px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
}

.ph-badge-green {
  background: rgba(74, 222, 128, .15);
  color: #4ade80;
}

.ph-badge-orange {
  background: rgba(255, 87, 51, .15);
  color: #FF8064;
}

/* ── PROBLEM BAND ── */
.problem-band {
  background: var(--sand);
  padding: 56px 0;
}

.prob-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 40px;
}

@media(max-width: 780px) {
  .prob-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

.prob-card {
  background: var(--white);
  padding: 28px;
  border: 1px solid var(--ink-20);
}

.prob-card:first-child {
  border-radius: var(--radius) 0 0 var(--radius);
}

.prob-card:last-child {
  border-radius: 0 var(--radius) var(--radius) 0;
}

@media(max-width: 780px) {

  .prob-card,
  .prob-card:first-child,
  .prob-card:last-child {
    border-radius: var(--radius);
  }
}

.prob-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.prob-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}

.prob-body {
  font-size: 13px;
  color: var(--ink-50);
  line-height: 1.65;
}

/* ── FEATURES SECTION ── */
.features-section {
  background: var(--white);
}

.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}

@media(max-width: 860px) {
  .feat-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width: 540px) {
  .feat-grid {
    grid-template-columns: 1fr;
  }
}

.feat-card {
  background: var(--sand);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid transparent;
  transition: all .25s;
  position: relative;
  overflow: hidden;
}

.feat-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform .25s;
  transform-origin: left;
}

.feat-card:hover {
  border-color: var(--ink-20);
  background: var(--white);
  box-shadow: var(--shadow);
}

.feat-card:hover::before {
  transform: scaleX(1);
}

.feat-card.highlight {
  background: var(--white);
  border-color: var(--orange);
}

.feat-card.highlight::before {
  transform: scaleX(1);
}

.feat-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.feat-tag {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 10px;
}

.feat-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}

.feat-body {
  font-size: 13px;
  color: var(--ink-50);
  line-height: 1.65;
}

/* ── PROCESS ── */
.process-section {
  background: var(--ink);
  color: var(--white);
}

.process-section .eyebrow {
  color: rgba(255, 180, 120, .8);
}

.process-section .eyebrow::before {
  background: rgba(255, 180, 120, .8);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 52px;
  position: relative;
}

@media(max-width: 900px) {
  .process-steps {
    grid-template-columns: 1fr;
    gap: 2px;
  }
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: rgba(255, 255, 255, .1);
}

@media(max-width: 900px) {
  .process-steps::before {
    display: none;
  }
}

.proc-step {
  padding: 0 16px 0;
  text-align: center;
  position: relative;
}

@media(max-width: 900px) {
  .proc-step {
    text-align: left;
    padding: 20px 24px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .07);
  }
}

@media(max-width: 900px) {
  .proc-step:first-child {
    border-radius: var(--radius) var(--radius) 0 0;
  }

  .proc-step:last-child {
    border-radius: 0 0 var(--radius) var(--radius);
  }
}

.proc-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 87, 51, .15);
  border: 1px solid rgba(255, 87, 51, .3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 300;
  color: var(--orange);
  margin: 0 auto 16px;
}

@media(max-width: 900px) {
  .proc-num {
    margin: 0 0 12px;
  }
}

.proc-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.proc-body {
  font-size: 12px;
  color: rgba(255, 255, 255, .45);
  line-height: 1.6;
}

/* ── PORTFOLIO PREVIEW ── */
.portfolio-section {
  background: var(--sand);
}

.porto-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}

@media(max-width: 860px) {
  .porto-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width: 540px) {
  .porto-grid {
    grid-template-columns: 1fr;
  }
}

.porto-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--ink-20);
  transition: all .25s;
}

.porto-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.porto-img {
  height: 230px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.porto-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}

.porto-body {
  padding: 20px;
}

.porto-type {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--ink-50);
  margin-bottom: 6px;
}

.porto-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 12px;
}

.porto-results {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.porto-result-num {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--orange);
}

.porto-result-label {
  font-size: 11px;
  color: var(--ink-50);
}

/* ── PAKET / PRICING ── */
.pricing-section {
  background: var(--white);
}

.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

@media(max-width: 900px) {
  .pkg-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width: 580px) {
  .pkg-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
  }
}

.pkg-card {
  background: var(--sand);
  border-radius: var(--radius);
  padding: 32px;
  border: 1.5px solid transparent;
  position: relative;
  transition: all .2s;
}

.pkg-card:hover {
  background: var(--white);
  border-color: var(--ink-20);
  box-shadow: var(--shadow);
}

.pkg-card.featured {
  background: var(--white);
  border-color: var(--orange);
  box-shadow: var(--shadow);
}

.pkg-pop {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 16px;
  border-radius: 20px;
  white-space: nowrap;
}

.pkg-tier {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.pkg-name {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 4px;
}

.pkg-sub {
  font-size: 13px;
  color: var(--ink-50);
  margin-bottom: 20px;
  min-height: 40px;
}

.pkg-price {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 300;
  color: var(--ink);
  line-height: 1;
}

.pkg-price sup {
  font-size: 18px;
  vertical-align: super;
}

.pkg-note {
  font-size: 11px;
  color: var(--ink-50);
  margin-bottom: 6px;
}

.pkg-renew {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--sand-2);
  border-radius: 6px;
  padding: 5px 10px;
  margin-bottom: 24px;
  font-size: 11px;
  color: var(--ink-50);
}

.pkg-card.featured .pkg-renew {
  background: var(--orange-light);
  color: var(--orange);
}

.pkg-divider {
  border: none;
  border-top: 1px solid var(--ink-20);
  margin-bottom: 20px;
}

.pkg-feats {
  list-style: none;
  margin-bottom: 28px;
}

.pkg-feat {
  font-size: 13px;
  color: var(--ink-80);
  padding: 6px 0;
  border-bottom: 1px solid var(--ink-20);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.4;
}

.pkg-feat:last-child {
  border-bottom: none;
}

.pkg-feat-check {
  color: var(--teal);
  flex-shrink: 0;
  margin-top: 1px;
}

.pkg-feat-highlight {
  color: var(--orange);
  font-weight: 500;
}

.pkg-cta {
  display: block;
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
  transition: all .2s;
}

.pkg-cta-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 4px 14px rgba(255, 87, 51, .3);
}

.pkg-cta-primary:hover {
  background: var(--orange-hover);
  transform: translateY(-1px);
}

.pkg-cta-outline {
  background: transparent;
  color: var(--ink-80);
  border: 1.5px solid var(--ink-20);
}

.pkg-cta-outline:hover {
  border-color: var(--ink-50);
  background: var(--white);
}

.add-ons-strip {
  background: var(--sand-2);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
}

@media(max-width: 700px) {
  .add-ons-strip {
    grid-template-columns: 1fr;
  }
}

.addon-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 13px;
}

.addon-name {
  color: var(--ink-80);
  font-weight: 500;
}

.addon-price {
  color: var(--ink-50);
  white-space: nowrap;
}

/* ── TESTIMONI ── */
.testi-section {
  background: var(--sand);
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}

@media(max-width: 860px) {
  .testi-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width: 520px) {
  .testi-grid {
    grid-template-columns: 1fr;
  }
}

.testi-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 26px;
  border: 1px solid var(--ink-20);
}

.testi-stars {
  color: #f59e0b;
  font-size: 14px;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.testi-quote {
  font-size: 14px;
  color: var(--ink-80);
  line-height: 1.75;
  margin-bottom: 18px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 10px;
  border-top: 1px solid var(--sand-2);
  padding-top: 14px;
}

.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--orange-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
  flex-shrink: 0;
}

.testi-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}

.testi-biz {
  font-size: 11px;
  color: var(--ink-50);
}

.testi-result {
  font-size: 11px;
  font-weight: 600;
  color: var(--teal);
  background: var(--teal-light);
  padding: 2px 8px;
  border-radius: 4px;
  display: inline-block;
  margin-top: 4px;
}

/* ── FAQ ── */
.faq-section {
  background: var(--white);
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: start;
  margin-top: 52px;
}

@media(max-width: 860px) {
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.faq-item {
  background: var(--sand);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.faq-q {
  padding: 17px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
  transition: background .15s;
}

.faq-q:hover {
  background: var(--orange-light);
}

.faq-q.open {
  background: var(--orange-light);
  color: var(--orange);
}

.faq-icon {
  font-size: 20px;
  flex-shrink: 0;
  transition: transform .25s;
  color: var(--ink-50);
}

.faq-q.open .faq-icon {
  transform: rotate(45deg);
  color: var(--orange);
}

.faq-a {
  font-size: 13px;
  color: var(--ink-50);
  line-height: 1.75;
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .3s ease;
}

.faq-a.open {
  max-height: 400px;
  padding: 0 20px 16px;
}

.faq-cta-box {
  background: var(--ink);
  border-radius: var(--radius);
  padding: 36px;
}

.faq-cta-box p {
  color: rgba(255, 255, 255, .55);
  font-size: 14px;
  line-height: 1.7;
  margin: 14px 0 24px;
}

/* ── FINAL CTA ── */
.final-cta {
  background: var(--orange);
  padding: 88px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}

.final-cta-inner {
  position: relative;
  z-index: 1;
}

.final-cta .display {
  color: var(--white);
  max-width: 620px;
  margin: 16px auto 18px;
}

.final-cta p {
  color: rgba(255, 255, 255, .8);
  font-size: 16px;
  max-width: 480px;
  margin: 0 auto 32px;
}

.final-cta-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* Fix for btn-outline on dark/orange backgrounds in final-cta */
.final-cta .btn-outline:hover {
  background: rgba(255, 255, 255, 0.9) !important;
  border-color: rgba(255, 255, 255, 0.9) !important;
  color: var(--ink) !important;
}

/* ── HOME PAGE SPECIFIC ── */

/* ── HERO ── */
.hero {
  padding: calc(var(--nav-h) + 60px) 0 80px;
  position: relative;
  overflow: hidden;
  background: var(--white);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.15;
}

.hero-blob-1 {
  width: 600px;
  height: 600px;
  background: var(--orange);
  top: -100px;
  right: -100px;
}

.hero-blob-2 {
  width: 400px;
  height: 400px;
  background: var(--gold);
  bottom: -50px;
  left: -50px;
}

.hero-grid-line {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(var(--sand-2) 1px, transparent 1px), linear-gradient(90deg, var(--sand-2) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.4;
}

.hero-headline {
  margin-top: 20px;
  margin-bottom: 24px;
  color: var(--ink);
}

.hero-headline .italic {
  font-style: italic;
  color: var(--orange);
}

.hero-sub {
  margin-bottom: 36px;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

@media(max-width: 768px) {
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
}

.hero-stats {
  display: flex;
  gap: 32px;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--ink-20);
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--ink);
  line-height: 1;
}

.hero-stat-num span {
  color: var(--orange);
  font-size: 24px;
}

.hero-stat-label {
  font-size: 12px;
  color: var(--ink-50);
  margin-top: 4px;
}

/* Hero Visual Card */
.hero-visual {
  position: relative;
  width: 420px;
  height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card-main {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(25px) saturate(180%);
  -webkit-backdrop-filter: blur(25px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: var(--shadow-lg);
  border-radius: 24px;
  padding: 32px;
  width: 340px;
  position: relative;
  z-index: 2;
}

.hero-badge {
  position: absolute;
  background: var(--white);
  padding: 12px 18px;
  border-radius: 14px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3;
}

.hero-badge-1 {
  top: 40px;
  left: -20px;
}

.hero-badge-2 {
  bottom: 60px;
  right: -20px;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.hero-badge-text {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}

.hero-badge-sub {
  font-size: 11px;
  color: var(--ink-50);
}

.hero-card-stat {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.hero-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card-label {
  font-size: 13px;
  color: var(--ink-50);
}

.hero-card-val {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--ink);
}

.hero-chart-label {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--ink-50);
}

.hero-chart-bar {
  height: 6px;
  background: var(--sand-2);
  border-radius: 3px;
  overflow: hidden;
}

.hero-chart-fill {
  height: 100%;
  background: var(--orange);
  border-radius: 3px;
}

@media(max-width: 1100px) {
  .hero .container>div {
    flex-direction: column;
    gap: 60px !important;
  }

  .hero-content {
    text-align: center;
    width: 100%;
  }

  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-visual {
    width: 100%;
    max-width: 360px;
    height: auto;
    margin: 0 auto;
  }

  .hero-card-main {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  .hero-badge-1 {
    left: 0;
    top: 20px;
  }

  .hero-badge-2 {
    right: 0;
    bottom: 20px;
  }
}

@media(max-width: 480px) {
  .hero-visual {
    width: 100%;
    max-width: 360px;
    min-height: auto;
    margin: 40px auto 0;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: visible;
    padding: 0;
  }

  .hero-card-main {
    width: 100%;
    max-width: 310px;
    padding: 24px;
    margin: 0 auto;
    order: 2;
  }

  .hero-badge {
    position: relative;
    padding: 10px 14px;
    font-size: 11px;
    margin: 0;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: fit-content;
    box-shadow: var(--shadow-sm);
  }

  .hero-badge-1 {
    order: 1;
    align-self: flex-start;
    margin-bottom: -15px;
    margin-left: 10px;
    z-index: 3;
  }

  .hero-badge-2 {
    order: 3;
    align-self: flex-end;
    margin-top: -15px;
    margin-right: 10px;
    z-index: 3;
  }

  .hero-badge-text {
    font-size: 11px;
  }

  .hero-badge-sub {
    font-size: 9px;
  }

  .hero-stats {
    gap: 16px;
    flex-wrap: wrap;
  }

  .hero-stat-num {
    font-size: 24px;
  }

  .hero-stat-num span {
    font-size: 18px;
  }

  .hero-stat-label {
    font-size: 10px;
  }

  .hero-sub {
    font-size: 14px;
    line-height: 1.6;
    color: var(--ink-80);
    margin-bottom: 28px;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--sand);
  border-top: 1px solid var(--ink-20);
  border-bottom: 1px solid var(--ink-20);
  padding: 20px 0;
}

.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-50);
  white-space: nowrap;
}

.trust-divider {
  width: 1px;
  height: 16px;
  background: var(--ink-20);
}

@media(max-width: 760px) {
  .trust-divider {
    display: none;
  }

  .trust-inner {
    gap: 20px;
  }
}

/* ── PROBLEM GRID ── */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}

@media(max-width: 700px) {
  .problem-grid {
    grid-template-columns: 1fr;
  }
}

.problem-card {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius);
  border: 1px solid var(--ink-20);
  transition: all .3s ease;
}

.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--orange-glow);
}

.problem-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.problem-title {
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 12px;
}

/* ── APPROACH ── */
.approach-section {
  background: var(--ink);
  padding: 100px 0;
  color: var(--white);
}

.approach-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}

@media(max-width: 860px) {
  .approach-steps {
    grid-template-columns: 1fr;
  }
}

.approach-step {
  position: relative;
}

.approach-step-num {
  font-family: var(--font-display);
  font-size: 48px;
  color: rgba(255, 87, 51, .3);
  line-height: 1;
  margin-bottom: 12px;
}

.approach-step-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 14px;
}

.approach-step-body {
  font-size: 14px;
  color: rgba(255, 255, 255, .5);
  line-height: 1.7;
}

/* ── SERVICES ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

@media(max-width: 960px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width: 640px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  border: 1px solid var(--ink-20);
  position: relative;
  transition: all .3s ease;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--orange);
}

.service-card.featured {
  border-color: rgba(255, 87, 51, 0.3);
  background: linear-gradient(to bottom right, #fff, var(--orange-light));
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.service-tag {
  position: absolute;
  top: 36px;
  right: 36px;
}

.service-title {
  font-size: 19px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 14px;
  line-height: 1.3;
}

.service-body {
  font-size: 14px;
  color: var(--ink-50);
  line-height: 1.7;
  margin-bottom: 24px;
  flex-grow: 1;
}

.service-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-link-arr {
  transition: transform 0.2s;
}

.service-link:hover .service-link-arr {
  transform: translateX(5px);
}

/* ── PROOF GRID ── */
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 48px 0 64px;
}

@media(max-width: 860px) {
  .proof-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.proof-card {
  text-align: center;
  padding: 24px;
  border-radius: var(--radius);
  background: var(--sand);
}

.proof-num {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 300;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 8px;
}

.proof-num span {
  color: var(--orange);
}

.proof-label {
  font-size: 12px;
  color: var(--ink-50);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .05em;
}

/* ── CASE STUDIES MINI ── */
.case-studies {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media(max-width: 900px) {
  .case-studies {
    grid-template-columns: 1fr;
  }
}

.case-card {
  background: var(--white);
  border-radius: 20px;
  padding: 32px;
  border: 1px solid var(--ink-20);
  transition: all .3s;
}

.case-card:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow);
}

.case-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
}

.case-industry {
  font-size: 11px;
  font-weight: 600;
  color: var(--orange);
  margin-bottom: 8px;
}

.case-headline {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.5;
  margin-bottom: 20px;
}

.case-result {
  display: flex;
  gap: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--sand-2);
}

.case-metric-num {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--teal);
}

.case-metric-label {
  font-size: 10px;
  color: var(--ink-50);
  margin-top: 2px;
}

/* ── PRICING COMPACT ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

@media(max-width: 960px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
}

.price-card {
  background: var(--sand);
  border-radius: var(--radius);
  padding: 36px;
  border: 1.5px solid transparent;
  position: relative;
  transition: all .2s;
}

.price-card:hover {
  background: var(--white);
  border-color: var(--ink-20);
  box-shadow: var(--shadow);
}

.price-card.featured {
  background: var(--white);
  border-color: var(--orange);
  box-shadow: var(--shadow-lg);
  z-index: 2;
  transform: scale(1.03);
}

@media(max-width: 960px) {
  .price-card.featured {
    transform: scale(1);
  }
}

.price-pop {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 18px;
  border-radius: 20px;
  white-space: nowrap;
}

.price-tier {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.price-name {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 6px;
}

.price-tag {
  font-size: 13px;
  color: var(--ink-50);
  margin-bottom: 24px;
  min-height: 40px;
}

.price-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 8px;
}

.price-num sup {
  font-size: 16px;
  margin-right: 2px;
  vertical-align: super;
}

.price-note {
  font-size: 11px;
  color: var(--ink-50);
  margin-bottom: 6px;
}

.price-renewal {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--sand-2);
  border-radius: 6px;
  padding: 6px 10px;
  margin-bottom: 28px;
  font-size: 11px;
  color: var(--ink-50);
}

.price-card.featured .price-renewal {
  background: var(--orange-light);
  color: var(--orange);
}

.price-feats {
  list-style: none;
  margin-bottom: 32px;
  border-top: 1px solid var(--ink-20);
  padding-top: 24px;
}

.price-feat {
  font-size: 13px;
  color: var(--ink-80);
  margin-bottom: 12px;
  display: flex;
  gap: 10px;
  line-height: 1.4;
}

.price-feat-check {
  color: var(--teal);
  font-weight: 700;
}

.price-cta {
  display: block;
  width: 100%;
  padding: 15px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
  transition: all .2s;
}

.price-cta-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 4px 14px rgba(255, 87, 51, .3);
}

.price-cta-primary:hover {
  background: var(--orange-hover);
  transform: translateY(-1px);
}

.price-cta-outline {
  background: transparent;
  color: var(--ink-80);
  border: 1.5px solid var(--ink-20);
}

.price-cta-outline:hover {
  border-color: var(--ink-50);
  background: var(--white);
}

.pricing-footer {
  margin-top: 40px;
  text-align: center;
}

/* ── FAQ HOME ── */
.faq-cta-card {
  background: var(--ink);
  border-radius: var(--radius);
  padding: 40px;
  color: var(--white);
}

.faq-cta-card p {
  color: rgba(255, 255, 255, .5);
  font-size: 14px;
  line-height: 1.7;
  margin: 16px 0 28px;
}

/* ── FINAL CTA HOME ── */
.final-cta-display {
  color: var(--white);
  font-size: clamp(32px, 5vw, 60px);
  line-height: 1.1;
  margin: 20px 0 32px;
}