/* =============================================
   ADDPLAY SG – Shared Stylesheet
   ============================================= */

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

/* === TOKENS === */
:root {
  --navy:   #0D1B2A;
  --navy2:  #152336;
  --slate:  #1E3A5F;
  --orange: #FF5C1A;
  --orange2:#E04A0E;
  --light:  #F7F9FC;
  --muted:  #8FA3B8;
  --white:  #FFFFFF;
  --border: rgba(255,255,255,0.08);
  --radius: 12px;
  --shadow: 0 4px 32px rgba(0,0,0,0.18);
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--navy);
  overflow-x: clip;
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4 { font-family: 'Plus Jakarta Sans', sans-serif; line-height: 1.15; }
.eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.9rem;
}
.eyebrow--light { color: rgba(255,255,255,0.55); }

/* === NAV === */
.ap-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid #e8eef5;
  box-shadow: 0 1px 12px rgba(0,0,0,0.06);
}
.ap-nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 96px;
  transition: height 0.3s ease;
}
.ap-nav.scrolled .ap-nav__inner { height: 68px; }
.ap-nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.ap-nav__logo img {
  height: 56px;
  width: auto;
  transition: height 0.3s ease;
  display: block;
}
.ap-nav.scrolled .ap-nav__logo img { height: 38px; }
.ap-nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.ap-nav__links a {
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--navy);
  opacity: 0.65;
  transition: opacity 0.2s, color 0.2s;
}
.ap-nav__links a:hover, .ap-nav__links a.active { opacity: 1; color: var(--navy); }
.ap-nav__cta {
  background: var(--orange);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 700 !important;
  font-size: 0.88rem !important;
  opacity: 1 !important;
  border: none !important;
  cursor: pointer;
  transition: background 0.2s !important;
}
.ap-nav__cta:hover { background: var(--orange2) !important; color: var(--white) !important; }
.ap-nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--navy);
  font-size: 1.5rem;
  line-height: 1;
}
.ap-nav__mobile {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--white);
  position: absolute;
  left: 0;
  right: 0;
  z-index: 99;
  border-bottom: 1px solid #e8eef5;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.ap-nav__mobile.open { display: flex; }
.ap-nav__mobile a {
  padding: 16px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  border-bottom: 1px solid #f0f4f8;
  transition: background 0.15s;
  display: block;
  min-height: 54px;
  display: flex;
  align-items: center;
  box-sizing: border-box;
}
.ap-nav__mobile a:hover, .ap-nav__mobile a.active { background: #fff5f0; color: var(--orange); }
.ap-nav__mobile a.mobile-cta,
.ap-nav__mobile button.mobile-cta {
  background: var(--orange);
  color: var(--white) !important;
  font-weight: 700;
  border: none;
  display: block;
  width: 100%;
  text-align: left;
  padding: 16px 24px;
  font-size: 0.95rem;
  min-height: 54px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  box-sizing: border-box;
}
.ap-nav__mobile a.mobile-cta:hover,
.ap-nav__mobile button.mobile-cta:hover { background: var(--orange2); }

/* === HERO === */
.ap-hero {
  position: relative;
  background: var(--navy);
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.ap-hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/heroes/addplay-home-hero.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.28;
}
.ap-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,27,42,0.78) 0%, rgba(13,27,42,0.5) 100%);
}
.ap-hero__content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
  padding: 100px 24px 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.ap-hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,92,26,0.12);
  border: 1px solid rgba(255,92,26,0.3);
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}
.ap-hero__tag::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.4); }
}
.ap-hero__h1 {
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 1.2rem;
}
.ap-hero__h1 em {
  font-style: normal;
  color: var(--orange);
}
.ap-hero__sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  max-width: 580px;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.ap-hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.93rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
}
.btn--primary {
  background: var(--orange);
  color: var(--white);
}
.btn--primary:hover { background: var(--orange2); transform: translateY(-1px); }
.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3);
}
.btn--ghost:hover { border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.05); }
.btn--dark {
  background: var(--navy);
  color: var(--white);
}
.btn--dark:hover { background: var(--slate); }
.ap-hero__stats {
  display: flex;
  gap: 48px;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  justify-content: center;
}
.ap-hero__stat-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
}
.ap-hero__stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  margin-top: 2px;
}
/* Screen mockup */
.ap-hero__screen {
  position: relative;
}
.ap-hero__screen-frame {
  position: relative;
  background: #0a1520;
  border: 3px solid #1E3A5F;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 60px rgba(255,92,26,0.15), 0 20px 80px rgba(0,0,0,0.5);
  aspect-ratio: 16/10;
}
.ap-hero__screen-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 13px;
  border: 1.5px solid rgba(255,92,26,0.25);
  z-index: 1;
  pointer-events: none;
}
.ap-hero__screen-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}
.ap-hero__screen-stand {
  width: 80px;
  height: 20px;
  background: #1a2d44;
  margin: 0 auto;
  border-radius: 0 0 8px 8px;
}
.ap-hero__screen-base {
  width: 140px;
  height: 8px;
  background: #152336;
  margin: 0 auto;
  border-radius: 8px;
}
.ap-hero__screen-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--orange);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  z-index: 2;
  letter-spacing: 0.05em;
}

/* === TRUST STRIP === */
.ap-trust {
  background: var(--navy2);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  overflow: hidden;
}
.ap-trust__track {
  display: flex;
  align-items: center;
  gap: 60px;
  width: max-content;
  animation: marquee 28s linear infinite;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.ap-trust__item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
}
.ap-trust__item svg { opacity: 0.6; }
.ap-trust__dot {
  width: 4px;
  height: 4px;
  background: var(--orange);
  border-radius: 50%;
  opacity: 0.5;
}

/* === SECTIONS === */
.ap-section {
  padding: 90px 0;
}
.ap-section--dark {
  background: var(--navy);
  color: var(--white);
}
.ap-section--light { background: var(--light); }
.ap-section--white { background: var(--white); }
.ap-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.ap-section__header {
  margin-bottom: 56px;
}
.ap-section__header--center { text-align: center; }
.ap-section__h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
}
.ap-section__lead {
  font-size: 1.05rem;
  color: #4a647c;
  max-width: 580px;
  line-height: 1.7;
}
.ap-section__lead--light { color: rgba(255,255,255,0.6); }
.ap-section__lead--center { margin: 0 auto; }

/* === SERVICES GRID === */
.ap-services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.ap-service-card {
  background: var(--white);
  border: 1px solid #e2eaf2;
  border-radius: var(--radius);
  padding: 28px 22px;
  transition: all 0.25s;
}
.ap-service-card:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(255,92,26,0.1);
}
.ap-service-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(255,92,26,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--orange);
}
.ap-service-card__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--navy);
}
.ap-service-card__desc {
  font-size: 0.85rem;
  color: #5a7a94;
  line-height: 1.6;
}

/* === SOLUTIONS ALTERNATING === */
.ap-solution {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 64px 0;
  border-bottom: 1px solid #e8eef5;
}
.ap-solution:last-child { border-bottom: none; }
.ap-solution--reverse .ap-solution__img { order: 2; }
.ap-solution--reverse .ap-solution__text { order: 1; }
.ap-solution__img-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow);
}
.ap-solution__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.ap-solution__img-wrap:hover img { transform: scale(1.03); }
.ap-solution__tag {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: var(--navy);
  color: white;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.ap-solution__h3 {
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  color: var(--navy);
}
.ap-solution__p {
  font-size: 0.95rem;
  color: #4a647c;
  margin-bottom: 1rem;
  line-height: 1.75;
}
.ap-solution__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 1.4rem;
}
.ap-solution__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: #3a5a74;
}
.ap-solution__features li::before {
  content: '';
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23FF5C1A'%3E%3Ccircle cx='10' cy='10' r='10' fill='%23fff0eb'/%3E%3Cpath d='M6 10l3 3 5-5' stroke='%23FF5C1A' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E") center/contain no-repeat;
  margin-top: 1px;
}

/* === PROCESS STEPS === */
.ap-process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.ap-process::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: rgba(255,255,255,0.12);
  z-index: 0;
}
.ap-step {
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}
.ap-step__num {
  width: 60px;
  height: 60px;
  background: var(--slate);
  border: 2px solid rgba(255,92,26,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--orange);
}
.ap-step__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.ap-step__desc {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

/* === PARTNERS === */
.ap-partners {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}
.ap-partner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
}
.ap-partner img { max-height: 44px; max-width: 130px; object-fit: contain; }

/* === CTA BAND === */
.ap-ctaband {
  background: linear-gradient(135deg, var(--orange) 0%, #c94200 100%);
  padding: 72px 0;
  text-align: center;
}
.ap-ctaband h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
}
.ap-ctaband p {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  max-width: 520px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}
.btn--white {
  background: var(--white);
  color: var(--orange);
  font-weight: 700;
}
.btn--white:hover { background: #fff5f0; transform: translateY(-2px); }
.btn--outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn--outline-white:hover { border-color: white; background: rgba(255,255,255,0.1); }

/* === WHY US === */
.ap-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.ap-why__img {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow);
}
.ap-why__img img { width: 100%; height: 100%; object-fit: cover; }
.ap-why__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  list-style: none;
}
.ap-why__item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.ap-why__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(255,92,26,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  margin-top: 2px;
}
.ap-why__item-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.ap-why__item-desc { font-size: 0.88rem; color: #5a7a94; line-height: 1.6; }

/* === TESTIMONIAL === */
.ap-testi {
  background: var(--light);
  padding: 80px 0;
}
.ap-testi__card {
  background: var(--white);
  border-radius: 16px;
  padding: 40px 44px;
  max-width: 720px;
  margin: 0 auto;
  box-shadow: 0 4px 32px rgba(0,0,0,0.07);
  text-align: center;
}
.ap-testi__quote {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}
.ap-testi__author {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--orange);
}
.ap-testi__role { font-size: 0.82rem; color: var(--muted); margin-top: 2px; }

/* === CONTACT === */
.ap-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}
.ap-contact__info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 28px;
}
.ap-contact__info-icon {
  width: 44px;
  height: 44px;
  background: rgba(255,92,26,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
}
.ap-contact__info-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 3px;
}
.ap-contact__info-val {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--navy);
}
.ap-contact__info-val a { color: var(--orange); }

/* Form */
.ap-form { display: flex; flex-direction: column; gap: 18px; }
.ap-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.ap-form__group { display: flex; flex-direction: column; gap: 6px; }
.ap-form__label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.04em;
}
.ap-form__input,
.ap-form__select,
.ap-form__textarea {
  background: var(--light);
  border: 1.5px solid #d0dcea;
  border-radius: 8px;
  padding: 12px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--navy);
  width: 100%;
  transition: border-color 0.2s;
  outline: none;
}
.ap-form__input:focus,
.ap-form__select:focus,
.ap-form__textarea:focus { border-color: var(--orange); }
.ap-form__textarea { min-height: 130px; resize: vertical; }
.ap-form__submit {
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 15px 36px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.ap-form__submit:hover { background: var(--orange2); transform: translateY(-1px); }
#formTY { display: none; text-align: center; padding: 40px 0; }
#formTY h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.7rem;
}
#formTY p { color: #5a7a94; }

/* === PAGE HERO === */
.ap-page-hero {
  background: var(--navy);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.ap-page-hero__bg {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-size: cover;
  background-position: center;
}
.ap-page-hero__content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.ap-page-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}
.ap-page-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.6);
  max-width: 560px;
  line-height: 1.7;
}

/* === SERVICES PAGE === */
.ap-challenge {
  background: var(--navy2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
  margin-bottom: 40px;
}
.ap-challenge h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.ap-challenge p { color: rgba(255,255,255,0.6); font-size: 0.93rem; line-height: 1.7; }
.ap-challenge__list {
  list-style: none;
  margin-top: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ap-challenge__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}
.ap-challenge__list li::before {
  content: '?';
  width: 22px;
  height: 22px;
  background: rgba(255,92,26,0.15);
  color: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* === FOOTER === */
.ap-footer {
  background: #ffffff;
  color: #5a7a94;
  padding: 60px 0 0;
  border-top: 1px solid #e8eef5;
}
.ap-footer__grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid #e8eef5;
}
.ap-footer__brand p {
  font-size: 0.85rem;
  line-height: 1.7;
  margin-top: 14px;
  max-width: 280px;
  color: #5a7a94;
}
.ap-footer__col-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.ap-footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ap-footer__links a {
  font-size: 0.87rem;
  color: #5a7a94;
  transition: color 0.2s;
}
.ap-footer__links a:hover { color: var(--orange); }
.ap-footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.87rem;
  color: #5a7a94;
}
.ap-footer__contact-item a { color: #5a7a94; transition: color 0.2s; }
.ap-footer__contact-item a:hover { color: var(--orange); }
.ap-footer__bottom-wrap {
  background: #f7f9fc;
  border-top: 1px solid #e8eef5;
}
.ap-footer__bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: #8FA3B8;
  flex-wrap: wrap;
  gap: 12px;
}
.ap-footer__bottom a { color: #8FA3B8; text-decoration: underline; transition: color 0.2s; }
.ap-footer__bottom a:hover { color: var(--orange); }

/* === WHATSAPP FAB === */
.ap-wa-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 500;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.ap-wa-fab__btn {
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,0.4);
  cursor: pointer;
  transition: transform 0.2s;
  border: none;
}
.ap-wa-fab__btn:hover { transform: scale(1.08); }
.ap-wa-bubble {
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.14);
  padding: 16px;
  width: 240px;
  display: none;
  flex-direction: column;
  gap: 8px;
}
.ap-wa-bubble.open { display: flex; }
.ap-wa-bubble__close {
  position: absolute;
  top: 10px;
  right: 12px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  color: #aaa;
  line-height: 1;
}
.ap-wa-bubble__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.ap-wa-option {
  display: block;
  background: var(--light);
  border: 1px solid #e2eaf2;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.82rem;
  color: var(--navy);
  cursor: pointer;
  transition: all 0.15s;
  text-align: left;
  width: 100%;
}
.ap-wa-option:hover { background: #fff0eb; border-color: var(--orange); color: var(--orange); }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .ap-services { grid-template-columns: repeat(2, 1fr); }
  .ap-process { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .ap-process::before { display: none; }
  .ap-footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .ap-nav__links { display: none; }
  .ap-nav__toggle { display: block; }
  .ap-hero__content { grid-template-columns: 1fr; gap: 40px; }
  .ap-hero__screen { order: -1; }
  .ap-hero__h1 { font-size: 2.2rem; }
  .ap-hero__tag { font-size: 0.62rem; letter-spacing: 0.08em; white-space: nowrap; padding: 5px 12px; }
  .ap-hero__actions { justify-content: center !important; }
  .ap-hero__actions .btn { justify-content: center; text-align: center; }
  .ap-why-grid { grid-template-columns: 1fr; }
  .ap-contact-grid { grid-template-columns: 1fr; }
  .ap-solution { grid-template-columns: 1fr; gap: 32px; }
  .ap-solution--reverse .ap-solution__img { order: unset; }
  .ap-solution--reverse .ap-solution__text { order: unset; }
  .ap-form__row { grid-template-columns: 1fr; }
  .ap-services { grid-template-columns: 1fr 1fr; }
  .ap-footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .ap-ctaband { padding: 52px 0; }
  .ap-section { padding: 64px 0; }
  /* Process: single col on mobile */
  .ap-process { grid-template-columns: 1fr 1fr; gap: 32px; }
  /* Service cards: single col on mobile */
  .ap-services { grid-template-columns: 1fr !important; }
  /* Solutions teaser cards: single col on mobile */
  .solutions-teaser-grid { grid-template-columns: 1fr !important; }
}
@media (max-width: 480px) {
  /* Process: single col on small phones */
  .ap-process { grid-template-columns: 1fr; gap: 28px; }
  .ap-hero__stats { gap: 20px; }
  .ap-hero__actions { flex-direction: column; align-items: stretch; }
  .ap-hero__actions .btn { justify-content: center; text-align: center; }
  .ap-hero__tag { font-size: 0.6rem; letter-spacing: 0.07em; }
}
