.ap-hero {
  /* background: linear-gradient(145deg, #1f2b45 0%, #243252 45%, #1b2840 100%); */
  background: linear-gradient(135deg, #fff 0%, var(--gold-pale) 100%);
  min-height: 90vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 40px 0;
}
/* Subtle grid texture */
.ap-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 168, 76, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}
/* Diagonal gold divider */
.ap-hero__divider {
  position: absolute;
  top: 0;
  left: 55%;
  width: 1px;
  height: 100%;
  background: linear-gradient(
    180deg,
    transparent 5%,
    rgba(201, 168, 76, 0.28) 35%,
    rgba(201, 168, 76, 0.28) 65%,
    transparent 95%
  );
}
/* Ghost text */
.ap-hero__ghost {
  position: absolute;
  right: -10px;
  bottom: -30px;
  font-family: "Cormorant Garamond", serif;
  font-size: 240px;
  font-weight: 700;
  color: rgba(201, 168, 76, 0.05);
  line-height: 1;
  user-select: none;
  pointer-events: none;
  animation: ap-drift 9s ease-in-out infinite;
}
@keyframes ap-drift {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-16px);
  }
}

.ap-hero__left {
  position: relative;
  z-index: 2;
  padding-right: 44px;
}
.ap-hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 26px;
  animation: ap-fade-up 0.7s ease both;
}
.ap-hero__eline {
  width: 34px;
  height: 1px;
  background: #c9a84c;
  flex-shrink: 0;
}
.ap-hero__etxt {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #c9a84c;
}
.ap-hero__title {
  font-family: "Cormorant Garamond", serif;
  font-size: 66px;
  font-weight: 700;
  color: #2a2218;
  line-height: 1.07;
  animation: ap-fade-up 0.8s 0.1s ease both;
}
.ap-hero__title em {
  font-style: italic;
  color: #c9a84c;
}
.ap-hero__rule {
  width: 70px;
  height: 2px;
  background: linear-gradient(90deg, #c9a84c, transparent);
  margin: 22px 0;
  transform-origin: left;
  animation: ap-grow-x 1s 0.85s ease both;
}
@keyframes ap-grow-x {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}
.ap-hero__sub {
  font-family: "Cormorant Garamond", serif;
  font-size: 19px;
  font-weight: 500;
  font-style: italic;
  color: rgba(201, 168, 76, 0.78);
  line-height: 1.55;
  max-width: 430px;
  animation: ap-fade-up 0.8s 0.2s ease both;
}
.ap-hero__desc {
  font-size: 14.5px;
  color: black;
  line-height: 1.85;
  max-width: 430px;
  margin-top: 14px;
  animation: ap-fade-up 0.8s 0.28s ease both;
}
.ap-hero__btns {
  margin-top: 34px;
  animation: ap-fade-up 0.8s 0.38s ease both;
}
.ap-hero__btn-fill {
  background: #c9a84c;
  color: #172038;
  border: none;
  padding: 14px 32px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: all 0.25s;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%);
}
.ap-hero__btn-fill:hover {
  background: #f0d98a;
  transform: translateY(-2px);
}
.ap-hero__btn-ghost {
  background: transparent;
  color: #2a2218;
  border: 1px solid #c9a84c;
  padding: 14px 32px;
  font-weight: 600;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: all 0.25s;
}
.ap-hero__btn-ghost:hover {
  border-color: #c9a84c;
  color: #c9a84c;
}

.ap-hero__right {
  position: relative;
  z-index: 2;
  padding-left: 52px;
  animation: ap-fade-right 0.9s 0.32s ease both;
}
@keyframes ap-fade-right {
  from {
    opacity: 0;
    transform: translateX(34px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.ap-hero__srow {
  padding: 24px 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.14);
  transition:
    border-color 0.3s,
    padding-left 0.3s;
  cursor: default;
}
.ap-hero__srow:hover {
  border-color: rgba(201, 168, 76, 0.45);
  padding-left: 10px;
}
.ap-hero__srow:first-child {
  border-top: 1px solid rgba(201, 168, 76, 0.14);
}
.ap-hero__snum {
  font-family: "Cormorant Garamond", serif;
  font-size: 50px;
  font-weight: 700;
  color: #c9a84c;
  line-height: 1;
  display: block;
  margin-bottom: 5px;
}
.ap-hero__slbl {
  font-size: 12px;
  color: rgba(49, 49, 48, 0.42);
  display: flex;
  align-items: center;
  gap: 7px;
}
.ap-hero__dot {
  width: 6px;
  height: 6px;
  background: #c9a84c;
  border-radius: 50%;
  animation: ap-blink 1.4s infinite;
  flex-shrink: 0;
}
@keyframes ap-blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.15;
  }
}

/* ══ AP-MQ Marquee ══ */
.ap-mq {
  background: #c9a84d;
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  padding: 13px 0;
  overflow: hidden;
}
.ap-mq__inner {
  display: flex;
  gap: 52px;
  animation: ap-scroll 25s linear infinite;
  white-space: nowrap;
  width: max-content;
}
@keyframes ap-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.ap-mq__item {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: black;
}
.ap-mq__item i {
  color: #c9a84c;
  font-size: 13px;
}
.ap-mq__dot {
  color: rgba(6, 6, 6, 0.2);
  font-size: 20px;
}

/* ══ AP-INTRO ══ */
.ap-intro {
  background: white;
  padding: 46px 0;
  position: relative;
  overflow: hidden;
}
.ap-intro::before {
  content: "";
  position: absolute;
  top: 62%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 1px;
  /* background: linear-gradient(
    90deg,
    transparent,
    rgba(201, 168, 76, 0.12),
    transparent
  ); */
  background: linear-gradient(
    90deg,
    transparent,
    rgb(242 179 4 / 32%),
    #eda10000
  );
}
.ap-intro__lbl {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #c9a84c;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.ap-intro__lbl::before {
  content: "";
  width: 28px;
  height: 1px;
  background: #c9a84c;
  flex-shrink: 0;
}
.ap-intro__title {
  font-family: "Cormorant Garamond", serif;
  font-size: 48px;
  font-weight: 600;
  color: #2a2218;
  line-height: 1.18;
}
.ap-intro__title em {
  font-style: italic;
  color: #c9a84c;
}
.ap-intro__desc {
  font-size: 14.5px;
  color: rgba(9, 9, 9, 0.5);
  line-height: 1.9;
  margin-bottom: 30px;
}
.ap-intro__hr {
  width: 100%;
  height: 1px;
  /* background: linear-gradient(
    90deg,
    rgba(201, 168, 76, 0.32),
    rgba(201, 168, 76, 0.06),
    transparent
  ); */
      background: linear-gradient(90deg, transparent, rgb(242 179 4 / 32%), #eda10000);
  margin: 52px 0;
}
.ap-intro__tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgb(188 172 127 / 7%);
    border: 1px solid rgb(206 168 93);
    color: rgb(201 168 76);
    font-size: 12.5px;
    font-weight: 500;
    padding: 8px 18px;
    margin: 5px;
    transition: all 0.3s;
}
.ap-intro__tag:hover {
  background: rgba(201, 168, 76, 0.14);
  border-color: rgba(201, 168, 76, 0.42);
  color: #c9a84c;
}
.ap-intro__tag i {
  color: #c9a84c;
  font-size: 13px;
}

/* ══ AP-TRACK Case Tracking Pillars ══ */
.ap-track {
  background: #f5f7fa;
  padding: 40px 0;
}
.ap-track__lbl {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #c9a84c;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.ap-track__lbl::before {
  content: "";
  width: 28px;
  height: 1px;
  background: #c9a84c;
  flex-shrink: 0;
}
.ap-track__title {
  /* font-family: "Cormorant Garamond", serif; */
  font-size: 46px;
  font-weight: 700;
  color: #000000;
  line-height: 1.1;
  margin-bottom: 8px;
}
.ap-track__sub {
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  font-style: italic;
  color: rgba(0, 0, 0, 0.68);
  display: block;
  /* margin-bottom: 42px; */
}

.ap-track__pillar {
  display: flex;
  gap: 26px;
  align-items: flex-start;
  padding: 30px 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
  transition:
    border-color 0.3s,
    padding-left 0.3s;
  cursor: default;
}
.ap-track__pillar:hover {
  border-color: rgba(201, 168, 76, 0.38);
  padding-left: 10px;
}
.ap-track__pillar:first-of-type {
  border-top: 1px solid rgba(201, 168, 76, 0.1);
}
.ap-track__pnum {
  font-family: "Cormorant Garamond", serif;
  font-size: 50px;
  font-weight: 700;
  color: rgb(202 167 73 / 65%);
  line-height: 1;
  flex-shrink: 0;
  width: 70px;
  transition: color 0.3s;
}
.ap-track__pillar:hover .ap-track__pnum {
  color: #cfa95d;
}
.ap-track__pcontent {
  flex: 1;
}
.ap-track__picon {
    width: 42px;
    height: 42px;
    border: 1px solid rgb(206 168 93);
    background: rgba(201, 168, 76, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    margin-bottom: 11px;
    transition: all 0.3s;
    color: #c9a84d;
    border-radius: 50%;
}
.ap-track__pillar:hover .ap-track__picon {
  background: rgba(201, 168, 76, 0.15);
  border-color: #c9a84c;
}
.ap-track__ptitle {
  /* font-family: "Cormorant Garamond", serif; */
  font-size: 22px;
  font-weight: 600;
  color: black;
  margin-bottom: 7px;
}
.ap-track__ptext {
  font-size: 13.5px;
  color:black;
  line-height: 1.8;
}
.ap-track__ptag {
  display: inline-block;
  margin-top: 11px;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.2);
  color: #c9a84c;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
}

.ap-track__panel {
  background: #ede2c2;
  border: 1px solid rgba(201, 168, 76, 0.18);
  padding: 44px 34px;
  position: sticky;
  top: 88px;
}
.ap-track__panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, #c9a84c, rgba(201, 168, 76, 0.08));
}
.ap-track__panel-ghost {
  font-family: "Cormorant Garamond", serif;
  font-size: 90px;
  font-weight: 700;
  color: rgb(201 168 76 / 98%);
  line-height: 1;
  margin-bottom: 16px;
}
.ap-track__panel-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  font-weight: 600;
  color: #c9a84c;
  margin-bottom: 12px;
}
.ap-track__panel-desc {
  font-size: 14px;
  color: rgb(0 0 0 / 52%);
  line-height: 1.85;
  margin-bottom: 24px;
}
.ap-track__panel-list {
  list-style: none;
  padding: 0;
}
.ap-track__panel-list li {
  font-size: 13px;
  color: black;
  padding: 10px 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.09);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.ap-track__panel-list li::before {
  content: "→";
  color: #c9a84c;
  font-weight: 700;
  flex-shrink: 0;
}

/* ══ AP-PROJ Project Management ══ */
.ap-proj {
  background: white;
  padding: 40px 0;
}
.ap-proj__lbl {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #c9a84c;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.ap-proj__lbl::before {
  content: "";
  width: 28px;
  height: 1px;
  background: #c9a84c;
  flex-shrink: 0;
}
.ap-proj__title {
  /* font-family: "Cormorant Garamond", serif; */
  font-size: 36px;
  font-weight: 700;
  color: black;
  line-height: 1.1;
  margin-bottom: 8px;
}
.ap-proj__sub {
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  font-style: italic;
  color: #cfa95d;
  display: block;
}
.ap-proj__sidetxt {
  font-size: 14px;
  color: black;
  line-height: 1.85;
}

.ap-proj__card {
  background: white;
  border: 1px solid #cfa95d;
  padding: 32px 26px;
  height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  transition:
    border-color 0.3s,
    transform 0.3s,
    box-shadow 0.3s;
}
.ap-proj__card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #c9a84c;
  transition: width 0.4s ease;
}
.ap-proj__card:hover {
  border-color: rgba(201, 168, 76, 0.42);
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(15, 25, 50, 0.4);
}
.ap-proj__card:hover::after {
  width: 100%;
}
.ap-proj__card-seq {
  font-family: "Cormorant Garamond", serif;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #c9a84c;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.ap-proj__card-seq::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(201, 168, 76, 0.18);
}
.ap-proj__card-icon {
  font-size: 28px;
  margin-bottom: 12px;
  display: block;
  color: #c9a84c;
}
.ap-proj__card-title {
  /* font-family: "Cormorant Garamond", serif; */
  font-size: 21px;
  font-weight: 600;
  color: black;
  margin-bottom: 9px;
}
.ap-proj__card-text {
  font-size: 13.5px;
  color: rgba(0, 0, 0, 0.5);
  line-height: 1.8;
}

/* ══ AP-BILL Billing ══ */
.ap-bill {
  background: #f5f7fa;
  padding: 40px 0;
}
.ap-bill__lbl {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #c9a84c;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  justify-content: center;
}
.ap-bill__lbl::before {
  content: "";
  width: 28px;
  height: 1px;
  background: #c9a84c;
  flex-shrink: 0;
}
.ap-bill__title {
  /* font-family: "Cormorant Garamond", serif; */
  font-size: 46px;
  font-weight: 700;
  color: black;
  line-height: 1.1;
  margin-bottom: 8px;
}
.ap-bill__title em{
  color: #c09f5b;
}
.ap-bill__sub {
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  font-style: italic;
  color: rgba(201, 168, 76, 0.68);
  display: block;
}
.ap-bill__card {
  background: white;
  /* border: 1px solid #bf9d5a; */
  padding: 30px 24px;
  height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
      background: linear-gradient(135deg, #ffffff 0%, #fbf5e6 100%);
    border: 1.5px solid #e5d9c0;
  transition:
    border-color 0.3s,
    transform 0.3s;
}
.ap-bill__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #c9a84c, transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.ap-bill__card:hover {
  border-color: rgba(201, 168, 76, 0.4);
  transform: translateY(-6px);
}
.ap-bill__card:hover::before {
  transform: scaleX(1);
}
.ap-bill__card-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
  color: #c9a84c;
  transition:
    background 0.3s,
    border-color 0.3s;
}
.ap-bill__card:hover .ap-bill__card-icon {
  background: rgba(201, 168, 76, 0.18);
  border-color: #c9a84c;
}
.ap-bill__card-title {
  /* font-family: "Cormorant Garamond", serif; */
  font-size: 20px;
  font-weight: 600;
  color: black;
  margin-bottom: 9px;
}
.ap-bill__card-text {
  font-size: 13.5px;
  color: gray;
  line-height: 1.8;
}

/* ══ AP-INSIGHT ══ */
.ap-insight {
  background: #243252;
  padding: 100px 0;
}
.ap-insight__lbl {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #c9a84c;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.ap-insight__lbl::before {
  content: "";
  width: 28px;
  height: 1px;
  background: #c9a84c;
  flex-shrink: 0;
}
.ap-insight__title {
  font-family: "Cormorant Garamond", serif;
  font-size: 46px;
  font-weight: 700;
  color: #eee8de;
  line-height: 1.1;
  margin-bottom: 8px;
}
.ap-insight__sub {
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  font-style: italic;
  color: rgba(201, 168, 76, 0.68);
  display: block;
  margin-bottom: 18px;
}
.ap-insight__desc {
  font-size: 14px;
  color: rgba(238, 232, 222, 0.46);
  line-height: 1.85;
}
.ap-insight__card {
  background: #2f426a;
  border: 1px solid rgba(201, 168, 76, 0.13);
  padding: 32px 28px;
  height: 100%;
  transition:
    border-color 0.3s,
    transform 0.3s;
}
.ap-insight__card:hover {
  border-color: rgba(201, 168, 76, 0.4);
  transform: translateY(-5px);
}
.ap-insight__card-icon {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(201, 168, 76, 0.2);
  background: rgba(201, 168, 76, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 18px;
  transition: all 0.3s;
}
.ap-insight__card:hover .ap-insight__card-icon {
  background: rgba(201, 168, 76, 0.16);
  border-color: #c9a84c;
}
.ap-insight__card-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 23px;
  font-weight: 600;
  color: #eee8de;
  margin-bottom: 9px;
}
.ap-insight__card-text {
  font-size: 13.5px;
  color: rgba(238, 232, 222, 0.5);
  line-height: 1.8;
  margin-bottom: 20px;
}
.ap-insight__bar-lbl {
  font-size: 10.5px;
  letter-spacing: 1px;
  color: rgba(201, 168, 76, 0.55);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.ap-insight__bar-track {
  background: rgba(238, 232, 222, 0.08);
  height: 3px;
  border-radius: 2px;
  margin-bottom: 12px;
}
.ap-insight__bar-fill {
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, #c9a84c, #f0d98a);
  width: 0;
  transition: width 1.5s ease;
}
.ap-insight__bar-fill.ap-vis-bar {
  width: var(--bar-w);
}

/* ══ AP-MOBILE ══ */
.ap-mobile {
  background: #1f2b45;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.ap-mobile::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(135deg, transparent, rgba(201, 168, 76, 0.03));
  border-left: 1px solid rgba(201, 168, 76, 0.09);
}
.ap-mobile__lbl {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #c9a84c;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.ap-mobile__lbl::before {
  content: "";
  width: 28px;
  height: 1px;
  background: #c9a84c;
  flex-shrink: 0;
}
.ap-mobile__title {
  font-family: "Cormorant Garamond", serif;
  font-size: 46px;
  font-weight: 700;
  color: #eee8de;
  line-height: 1.1;
  margin-bottom: 8px;
}
.ap-mobile__sub {
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  font-style: italic;
  color: rgba(201, 168, 76, 0.68);
  display: block;
  margin-bottom: 16px;
}
.ap-mobile__desc {
  font-size: 14.5px;
  color: rgba(238, 232, 222, 0.48);
  line-height: 1.85;
  margin-bottom: 34px;
}
.ap-mobile__item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.09);
  transition:
    border-color 0.3s,
    padding-left 0.3s;
  cursor: default;
}
.ap-mobile__item:hover {
  border-color: rgba(201, 168, 76, 0.32);
  padding-left: 8px;
}
.ap-mobile__item:first-of-type {
  border-top: 1px solid rgba(201, 168, 76, 0.09);
}
.ap-mobile__item-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: rgba(201, 168, 76, 0.09);
  border: 1px solid rgba(201, 168, 76, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #c9a84c;
  transition: all 0.3s;
}
.ap-mobile__item:hover .ap-mobile__item-icon {
  background: rgba(201, 168, 76, 0.18);
  border-color: #c9a84c;
}
.ap-mobile__item-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 19px;
  font-weight: 600;
  color: #eee8de;
  margin-bottom: 5px;
}
.ap-mobile__item-text {
  font-size: 13px;
  color: rgba(238, 232, 222, 0.48);
  line-height: 1.72;
}
.ap-mobile__panel {
  background: #293a5e;
  border: 1px solid rgba(201, 168, 76, 0.18);
  padding: 42px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.ap-mobile__panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 52%;
  height: 2px;
  background: #c9a84c;
  opacity: 0.42;
}
.ap-mobile__panel-icon {
  font-size: 70px;
  display: block;
  margin-bottom: 16px;
  opacity: 0.75;
}
.ap-mobile__panel-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
  font-weight: 600;
  color: #c9a84c;
  margin-bottom: 10px;
}
.ap-mobile__panel-text {
  font-size: 13px;
  color: rgba(238, 232, 222, 0.4);
  line-height: 1.7;
  margin-bottom: 22px;
}
.ap-mobile__badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(201, 168, 76, 0.09);
  border: 1px solid rgba(201, 168, 76, 0.22);
  color: rgba(201, 168, 76, 0.75);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 14px;
  margin: 4px;
}

/* ══ AP-CMP Comparison Table ══ */
.ap-cmp {
  background: white;
  padding: 40px 0;
}
.ap-cmp__lbl {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #c9a84c;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.ap-cmp__lbl::before {
  content: "";
  width: 28px;
  height: 1px;
  background: #c9a84c;
  flex-shrink: 0;
}
.ap-cmp__title {
  font-family: "Cormorant Garamond", serif;
  font-size: 46px;
  font-weight: 700;
  color: #eee8de;
  line-height: 1.1;
  margin-bottom: 8px;
}
.ap-cmp__sub {
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  font-style: italic;
  color: rgba(201, 168, 76, 0.68);
  display: block;
  margin-bottom: 44px;
}
.ap-cmp__wrap {
  border: 1px solid rgba(201, 168, 76, 0.18);
  overflow: hidden;
}
.ap-cmp__head {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1.8fr;
  background: #172038;
  border-bottom: 2px solid rgba(201, 168, 76, 0.24);
}
.ap-cmp__th {
  padding: 18px 22px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #c9a84c;
  border-right: 1px solid rgba(201, 168, 76, 0.12);
}
.ap-cmp__th:last-child {
  border-right: none;
}
.ap-cmp__row {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1.8fr;
  border-bottom: 1px solid rgba(201, 168, 76, 0.08);
  transition: background 0.2s;
}
.ap-cmp__row:last-child {
  border-bottom: none;
}
.ap-cmp__row:nth-child(odd) {
  background: rgba(255, 255, 255, 0.03);
}
.ap-cmp__row:hover {
  background: rgba(201, 168, 76, 0.06);
}
.ap-cmp__td {
  padding: 16px 22px;
  font-size: 13px;
  color: #eee8de;
  border-right: 1px solid rgba(201, 168, 76, 0.07);
  vertical-align: top;
  line-height: 1.65;
}
.ap-cmp__td:last-child {
  border-right: none;
}
.ap-cmp__td--feat {
  font-weight: 700;
  color: #eee8de;
  font-size: 13.5px;
}
.ap-cmp__td--old {
  color: rgba(238, 232, 222, 0.32);
  font-style: italic;
}
.ap-cmp__td--new {
  color: rgba(201, 168, 76, 0.85);
  font-weight: 500;
}
.ap-cmp__td--new strong {
  color: #c9a84c;
  font-weight: 700;
}

/* ══ AP-CTA ══ */
.ap-cta {
  background: linear-gradient(145deg, #243252 0%, #2a3b5c 50%, #1f2b45 100%);
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}
.ap-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 168, 76, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}
.ap-cta::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(201, 168, 76, 0.35) 30%,
    rgba(201, 168, 76, 0.35) 70%,
    transparent
  );
}
.ap-cta__inner {
  position: relative;
  z-index: 2;
}
.ap-cta__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.ap-cta__eline {
  width: 34px;
  height: 1px;
  background: #c9a84c;
}
.ap-cta__etxt {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #c9a84c;
}
.ap-cta__title {
  font-family: "Cormorant Garamond", serif;
  font-size: 60px;
  font-weight: 700;
  color: #eee8de;
  line-height: 1.07;
}
.ap-cta__title em {
  font-style: italic;
  color: #c9a84c;
}
.ap-cta__rule {
  width: 70px;
  height: 2px;
  background: linear-gradient(90deg, #c9a84c, transparent);
  margin: 24px 0;
}
.ap-cta__desc {
  font-size: 14.5px;
  color: rgba(238, 232, 222, 0.46);
  line-height: 1.85;
  max-width: 470px;
}
.ap-cta__btn-fill {
  background: #c9a84c;
  color: #172038;
  border: none;
  padding: 15px 36px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: all 0.25s;
  clip-path: polygon(0 0, calc(100% - 13px) 0, 100% 13px, 100% 100%, 0 100%);
}
.ap-cta__btn-fill:hover {
  background: #f0d98a;
  transform: translateY(-2px);
}
.ap-cta__btn-ghost {
  background: transparent;
  color: rgba(238, 232, 222, 0.62);
  border: 1px solid rgba(238, 232, 222, 0.18);
  padding: 15px 36px;
  font-weight: 400;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: all 0.25s;
}
.ap-cta__btn-ghost:hover {
  border-color: #c9a84c;
  color: #c9a84c;
}
.ap-cta__stats {
  border-left: 1px solid rgba(201, 168, 76, 0.16);
  padding-left: 52px;
  height: 100%;
}
.ap-cta__sitem {
  padding: 24px 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.09);
  transition:
    padding-left 0.3s,
    border-color 0.3s;
  cursor: default;
}
.ap-cta__sitem:hover {
  padding-left: 10px;
  border-color: rgba(201, 168, 76, 0.35);
}
.ap-cta__sitem:first-child {
  border-top: 1px solid rgba(201, 168, 76, 0.09);
}
.ap-cta__snum {
  font-family: "Cormorant Garamond", serif;
  font-size: 46px;
  font-weight: 700;
  color: #c9a84c;
  line-height: 1;
  display: block;
  margin-bottom: 4px;
}
.ap-cta__slbl {
  font-size: 12px;
  color: rgba(238, 232, 222, 0.36);
  letter-spacing: 0.4px;
}

/* ══ AP-FOOT ══ */
.ap-foot {
  background: #172038;
  color: rgba(238, 232, 222, 0.3);
  font-size: 13px;
  padding: 22px 48px;
  border-top: 1px solid rgba(201, 168, 76, 0.13);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ap-foot__logo {
  width: 28px;
  height: 28px;
  background: #c9a84c;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  color: #172038;
  font-size: 15px;
}
.ap-foot__link {
  color: rgba(238, 232, 222, 0.3);
  text-decoration: none;
  transition: color 0.2s;
}
.ap-foot__link:hover {
  color: #c9a84c;
}

/* ══ Scroll reveal ══ */
.ap-rv,
.ap-rv-l,
.ap-rv-r {
  opacity: 0;
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.ap-rv {
  transform: translateY(28px);
}
.ap-rv-l {
  transform: translateX(-28px);
}
.ap-rv-r {
  transform: translateX(28px);
}
.ap-rv.ap-on,
.ap-rv-l.ap-on,
.ap-rv-r.ap-on {
  opacity: 1;
  transform: none;
}
.ap-d1 {
  transition-delay: 0.1s;
}
.ap-d2 {
  transition-delay: 0.2s;
}
.ap-d3 {
  transition-delay: 0.3s;
}
.ap-d4 {
  transition-delay: 0.4s;
}

@keyframes ap-fade-up {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 991px) {
  .ap-hero__title,
  .ap-cta__title {
    font-size: 44px;
  }
  .ap-track__title,
  .ap-proj__title,
  .ap-bill__title,
  .ap-insight__title,
  .ap-mobile__title,
  .ap-cmp__title {
    font-size: 34px;
  }
  .ap-hero__divider {
    display: none;
  }
  .ap-hero__left {
    padding-right: 0;
  }
  .ap-hero__right {
    padding-left: 0;
    margin-top: 36px;
  }
  .ap-cmp__head,
  .ap-cmp__row {
    grid-template-columns: 1fr 1fr;
  }
  .ap-cmp__th:first-child,
  .ap-cmp__td:first-child {
    display: none;
  }
  .ap-cta__stats {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid rgba(201, 168, 76, 0.14);
    padding-top: 34px;
    margin-top: 34px;
  }
}
@media (max-width: 768px) {
  .ap-hero__title {
    font-size: 36px;
  }
  .ap-cta__title {
    font-size: 36px;
  }
  .ap-foot {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    padding: 20px;
  }
  .ap-track__pillar {
    flex-direction: column;
    gap: 12px;
  }
  .ap-track__pnum {
    width: auto;
  }
}







