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

/* === TOKENS === */
:root {
  --white:    #FFFFFF;
  --bg:       #F5F5F7;
  --bg2:      #FAFAFA;
  --ink:      #1D1D1F;
  --ink2:     #3D3D3F;
  --muted:    #86868B;
  --border:   #D2D2D7;
  --border2:  #E8E8ED;
  --orange:   #FF4D00;
  --orange2:  #E04300;
  --orange-bg:#FFF5F0;
  --radius:   20px;
  --radius-sm:10px;
}

/* === 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(--ink);
  overflow-x: clip;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* === TYPE === */
h1, h2, h3, h4 {
  font-family: 'DM Sans', sans-serif;
  line-height: 1.08;
  letter-spacing: -0.03em;
}
.eyebrow {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--orange);
  margin-bottom: 0.75rem;
}

/* === NAV === */
.ap-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.ap-nav__inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
  transition: height 0.3s;
}
.ap-nav.scrolled .ap-nav__inner { height: 60px; }
.ap-nav__logo img {
  height: 72px;
  width: auto;
  transition: height 0.3s;
}
.ap-nav.scrolled .ap-nav__logo img { height: 44px; }
.ap-nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.ap-nav__links a {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--ink2);
  transition: color 0.15s;
  letter-spacing: 0.01em;
}
.ap-nav__links a:hover, .ap-nav__links a.active { color: var(--ink); }
.ap-nav__cta {
  background: var(--orange);
  color: #fff !important;
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  border: none !important;
  cursor: pointer;
  opacity: 1 !important;
  letter-spacing: 0.01em;
  transition: background 0.2s, transform 0.15s !important;
  font-family: 'Inter', sans-serif;
}
.ap-nav__cta:hover { background: var(--orange2) !important; transform: scale(1.03); }
.ap-nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ink);
  font-size: 1.3rem;
  line-height: 1;
}
.ap-nav__mobile {
  display: none;
  flex-direction: column;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  position: absolute;
  left: 0;
  right: 0;
  z-index: 99;
  border-bottom: 1px solid var(--border2);
}
.ap-nav__mobile.open { display: flex; }
.ap-nav__mobile a {
  padding: 15px 24px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink2);
  border-bottom: 1px solid var(--border2);
  min-height: 52px;
  display: flex;
  align-items: center;
}
.ap-nav__mobile a:hover, .ap-nav__mobile a.active { color: var(--orange); }
.ap-nav__mobile a.mobile-cta,
.ap-nav__mobile button.mobile-cta {
  background: var(--orange);
  color: #fff !important;
  font-weight: 700;
  border: none;
  width: 100%;
  text-align: left;
  padding: 15px 24px;
  font-size: 0.9rem;
  min-height: 52px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  display: flex;
  align-items: center;
  box-sizing: border-box;
}
.ap-nav__mobile a.mobile-cta:hover,
.ap-nav__mobile button.mobile-cta:hover { background: var(--orange2); }

/* === HERO === */
.ap-hero {
  text-align: center;
  padding: 100px 24px 80px;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.ap-hero__eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 0.04em;
  margin-bottom: 1.4rem;
}
.ap-hero__h1 {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(3rem, 7.5vw, 6.5rem);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.04em;
  line-height: 1.02;
  max-width: 900px;
  margin: 0 auto 1.6rem;
}
.ap-hero__h1 em {
  font-style: normal;
  color: var(--orange);
}
.ap-hero__sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 2.4rem;
  line-height: 1.65;
  font-weight: 400;
}
.ap-hero__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 72px;
}
.ap-hero__img-wrap {
  max-width: 1000px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.12), 0 8px 24px rgba(0,0,0,0.08);
  aspect-ratio: 16/9;
}
.ap-hero__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ap-hero__stats {
  display: flex;
  justify-content: center;
  gap: 64px;
  padding-top: 56px;
  flex-wrap: wrap;
}
.ap-hero__stat-num {
  font-family: 'DM Sans', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.04em;
}
.ap-hero__stat-num em {
  font-style: normal;
  color: var(--orange);
}
.ap-hero__stat-label {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 4px;
}

/* === TICKER === */
.ap-ticker {
  background: var(--bg);
  border-top: 1px solid var(--border2);
  border-bottom: 1px solid var(--border2);
  padding: 14px 0;
  overflow: hidden;
}
.ap-ticker__track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: ticker 32s linear infinite;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.ap-ticker__item {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0 24px;
  white-space: nowrap;
}
.ap-ticker__sep {
  width: 3px;
  height: 3px;
  background: var(--border);
  border-radius: 50%;
  flex-shrink: 0;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 13px 26px;
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  letter-spacing: 0.01em;
}
.btn--primary {
  background: var(--orange);
  color: #fff;
}
.btn--primary:hover { background: var(--orange2); transform: scale(1.02); }
.btn--secondary {
  background: var(--bg);
  color: var(--ink);
  border: 1px solid var(--border);
}
.btn--secondary:hover { background: var(--border2); }
.btn--ghost {
  background: transparent;
  color: var(--orange);
  padding: 0;
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn--ghost::after {
  content: '→';
  transition: transform 0.2s;
}
.btn--ghost:hover::after { transform: translateX(4px); }
.btn--white-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn--white-outline:hover { border-color: white; background: rgba(255,255,255,0.08); }

/* === SECTIONS === */
.ap-section { padding: 96px 0; }
.ap-section--bg { background: var(--bg); }
.ap-section--bg2 { background: var(--bg2); }
.ap-container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}
.ap-section__header {
  text-align: center;
  margin-bottom: 56px;
}
.ap-section__h2 {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 1rem;
}
.ap-section__lead {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

/* === FEATURE ROW (alternating) === */
.ap-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 72px 0;
  border-top: 1px solid var(--border2);
}
.ap-feature:last-child { border-bottom: 1px solid var(--border2); }
.ap-feature--rev .ap-feature__img { order: 2; }
.ap-feature--rev .ap-feature__text { order: 1; }
.ap-feature__img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}
.ap-feature__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.ap-feature__img-wrap:hover img { transform: scale(1.03); }
.ap-feature__h3 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 1rem;
}
.ap-feature__p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.ap-feature__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 1.2rem 0 1.6rem;
}
.ap-feature__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--ink2);
}
.ap-feature__list li::before {
  content: '';
  width: 16px;
  height: 1.5px;
  background: var(--orange);
  flex-shrink: 0;
}

/* === SERVICES (icon cards in 4-col) === */
.ap-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border2);
  border-radius: var(--radius);
  overflow: hidden;
}
.ap-svc-tile {
  background: var(--white);
  padding: 32px 28px;
  transition: background 0.2s;
}
.ap-svc-tile:hover { background: var(--bg); }
.ap-svc-tile__num {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}
.ap-svc-tile__title {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.3;
}
.ap-svc-tile__desc {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.65;
}

/* === FULL SERVICES (services page) === */
.ap-svc-full-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.ap-svc-card-full {
  background: var(--white);
  border: 1px solid var(--border2);
  border-radius: var(--radius-sm);
  padding: 32px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.ap-svc-card-full:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}
.ap-svc-card-full__num {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.ap-svc-card-full__title {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}
.ap-svc-card-full__desc {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 14px;
}
.ap-svc-card-full__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ap-svc-card-full__list li {
  font-size: 0.8rem;
  color: var(--ink2);
  display: flex;
  align-items: center;
  gap: 8px;
}
.ap-svc-card-full__list li::before {
  content: '';
  width: 14px;
  height: 1.5px;
  background: var(--orange);
  flex-shrink: 0;
}

/* === ABOUT === */
.ap-about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.ap-about__img {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 24px 64px rgba(0,0,0,0.1);
}
.ap-about__img img { width: 100%; height: 100%; object-fit: cover; }
.ap-about__h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 1.2rem;
}
.ap-about__p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 1.6rem;
}
.ap-about__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.ap-about__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--ink2);
  line-height: 1.6;
}
.ap-about__check {
  width: 18px;
  height: 18px;
  background: var(--orange-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.ap-about__check::after {
  content: '';
  width: 6px;
  height: 4px;
  border-left: 1.5px solid var(--orange);
  border-bottom: 1.5px solid var(--orange);
  transform: rotate(-45deg) translateY(-1px);
  display: block;
}

/* === PARTNERS === */
.ap-partners {
  overflow: hidden;
  padding: 48px 0;
  background: var(--bg);
  border-top: 1px solid var(--border2);
  border-bottom: 1px solid var(--border2);
}
.ap-partners__label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 28px;
}
.ap-partners__track {
  display: flex;
  align-items: center;
  gap: 80px;
  width: max-content;
  animation: marquee 35s linear infinite;
  padding-right: 80px;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.ap-partners__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.4;
  transition: opacity 0.2s;
  filter: grayscale(1);
  flex-shrink: 0;
}
.ap-partners__logo:hover { opacity: 0.75; filter: grayscale(0); }
.ap-partners__logo img { height: 52px; width: auto; object-fit: contain; }
.ap-partners__logo img[alt="Samsung"] { height: 64px; }
.ap-partners__logo img[alt="AOPEN"] { height: 34px; }
.ap-partners__logo img[alt="BrightSign"] { height: 38px; }

/* === PROCESS === */
.ap-process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.ap-process__step { text-align: center; }
.ap-process__num {
  width: 48px;
  height: 48px;
  background: var(--orange-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: var(--orange);
}
.ap-process__title {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}
.ap-process__desc {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.65;
}

/* === TWO PATH (services page) === */
.ap-twopath {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.ap-path-card {
  background: var(--white);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  padding: 48px 40px;
  transition: box-shadow 0.25s;
}
.ap-path-card:hover { box-shadow: 0 12px 48px rgba(0,0,0,0.08); }
.ap-path-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.9rem;
}
.ap-path-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.ap-path-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 2rem;
}
.ap-path-card__list li {
  font-size: 0.85rem;
  color: var(--ink2);
  display: flex;
  align-items: center;
  gap: 10px;
}
.ap-path-card__list li::before {
  content: '';
  width: 14px;
  height: 1.5px;
  background: var(--orange);
  flex-shrink: 0;
}

/* === SOLUTIONS PAGE HERO === */
.ap-page-hero {
  background: var(--white);
  padding: 80px 0 64px;
  border-bottom: 1px solid var(--border2);
}
.ap-page-hero__content {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.ap-page-hero h1 {
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 1rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.ap-page-hero p {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 640px;
  line-height: 1.75;
  margin-bottom: 2rem;
  margin-left: auto;
  margin-right: auto;
}
.ap-page-hero__fact {
  background: var(--orange-bg);
  border: 1px solid rgba(255,77,0,0.15);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  max-width: 600px;
  margin-top: 2rem;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}
.ap-page-hero__fact p {
  font-size: 0.85rem;
  color: var(--ink2);
  margin: 0;
  line-height: 1.65;
}
.ap-page-hero__fact strong { color: var(--orange); }

/* === CTA BAND === */
.ap-ctaband {
  background: var(--ink);
  padding: 96px 24px;
  text-align: center;
}
.ap-ctaband h2 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
  letter-spacing: -0.035em;
}
.ap-ctaband p {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  max-width: 500px;
  margin: 0 auto 2.4rem;
  line-height: 1.7;
}
.ap-ctaband__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* === CONTACT PAGE === */
.ap-contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 72px; align-items: start; }
.ap-contact__info-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border2);
}
.ap-contact__icon {
  width: 40px;
  height: 40px;
  background: var(--orange-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
}
.ap-contact__info-label { font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-bottom: 2px; }
.ap-contact__info-val { font-size: 0.92rem; font-weight: 600; color: var(--ink); }
.ap-contact__info-val a { color: var(--ink); transition: color 0.2s; }
.ap-contact__info-val a:hover { color: var(--orange); }
.ap-form { display: flex; flex-direction: column; gap: 16px; }
.ap-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ap-form__group { display: flex; flex-direction: column; gap: 6px; }
.ap-form__label { font-size: 0.72rem; font-weight: 600; color: var(--ink2); letter-spacing: 0.04em; }
.ap-form__input, .ap-form__select, .ap-form__textarea {
  background: var(--bg);
  border: 1.5px solid var(--border2);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  -webkit-appearance: none;
}
.ap-form__input:focus, .ap-form__select:focus, .ap-form__textarea:focus { border-color: var(--orange); background: var(--white); }
.ap-form__textarea { min-height: 120px; resize: vertical; }
.ap-form__submit {
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: 100px;
  padding: 14px 32px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  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: scale(1.02); }
#formTY { display: none; text-align: center; padding: 48px 0; }
#formTY svg { margin: 0 auto 16px; display: block; }
#formTY h3 { font-family: 'DM Sans', sans-serif; font-size: 1.3rem; font-weight: 700; color: var(--ink); margin-bottom: 0.5rem; }
#formTY p { font-size: 0.88rem; color: var(--muted); }

/* === MODAL === */
.qm-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.45); z-index: 1000; display: none; align-items: center; justify-content: center; padding: 16px; backdrop-filter: blur(8px); }
.qm-overlay.open { display: flex; }
.qm-box { background: #fff; border-radius: var(--radius); width: 100%; max-width: 500px; overflow: hidden; box-shadow: 0 24px 80px rgba(0,0,0,0.2); }
.qm-head { padding: 24px 28px 0; display: flex; align-items: flex-start; justify-content: space-between; }
.qm-head h3 { font-family: 'DM Sans', sans-serif; font-size: 1.2rem; font-weight: 700; color: var(--ink); margin: 0; }
.qm-head-close { background: var(--bg); border: none; width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--muted); font-size: 1rem; cursor: pointer; flex-shrink: 0; transition: background 0.15s; line-height: 1; }
.qm-head-close:hover { background: var(--border2); color: var(--ink); }
.qm-body { padding: 20px 28px 28px; }
.qm-form { display: flex; flex-direction: column; gap: 14px; }
.qm-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.qm-group { display: flex; flex-direction: column; gap: 5px; }
.qm-label { font-size: 0.72rem; font-weight: 600; color: var(--ink2); letter-spacing: 0.04em; }
.qm-input, .qm-select, .qm-textarea { background: var(--bg); border: 1.5px solid var(--border2); border-radius: var(--radius-sm); padding: 11px 14px; font-family: 'Inter', sans-serif; font-size: 0.85rem; color: var(--ink); outline: none; transition: border-color 0.2s; width: 100%; box-sizing: border-box; -webkit-appearance: none; }
.qm-input:focus, .qm-select:focus, .qm-textarea:focus { border-color: var(--orange); background: var(--white); }
.qm-textarea { min-height: 80px; resize: none; }
.qm-submit { background: var(--orange); color: #fff; border: none; border-radius: 100px; padding: 13px; font-family: 'Inter', sans-serif; font-size: 0.88rem; font-weight: 700; cursor: pointer; transition: background 0.2s; display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; }
.qm-submit:hover { background: var(--orange2); }
.qm-ty { display: none; text-align: center; padding: 28px; }
.qm-ty svg { margin: 0 auto 14px; display: block; }
.qm-ty p { font-size: 0.88rem; color: var(--muted); line-height: 1.6; }
@media (max-width: 520px) { .qm-row { grid-template-columns: 1fr; } }

/* === FOOTER === */
.ap-footer {
  background: var(--bg);
  border-top: 1px solid var(--border2);
  padding: 64px 0 0;
}
.ap-footer__grid {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border2);
}
.ap-footer__brand p { font-size: 0.75rem; color: var(--muted); line-height: 1.65; margin-top: 20px; max-width: 240px; }
.ap-footer__col-title { font-size: 0.7rem; font-weight: 700; color: var(--ink); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 18px; }
.ap-footer__links { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.ap-footer__links a { font-size: 0.85rem; color: var(--muted); transition: color 0.2s; }
.ap-footer__links a:hover { color: var(--ink); }
.ap-footer__contact-item { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; font-size: 0.85rem; color: var(--muted); }
.ap-footer__contact-item svg { color: var(--orange); flex-shrink: 0; }
.ap-footer__contact-item a { color: var(--muted); transition: color 0.2s; }
.ap-footer__contact-item a:hover { color: var(--ink); }
.ap-footer__bottom-wrap { background: var(--bg); }
.ap-footer__bottom { max-width: 1080px; margin: 0 auto; padding: 20px 24px; display: flex; justify-content: space-between; align-items: center; font-size: 0.75rem; color: var(--muted); flex-wrap: wrap; gap: 12px; border-top: 1px solid var(--border2); }
.ap-footer__bottom a { color: var(--muted); text-decoration: underline; }
.ap-footer__bottom a:hover { color: var(--ink); }

/* === WA FAB === */
.wse-wa-fab { position: fixed; bottom: 28px; right: 28px; z-index: 500; display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.wse-wa-popup { width: 280px; border-radius: 16px; overflow: hidden; box-shadow: 0 8px 40px rgba(0,0,0,0.15); display: none; flex-direction: column; }
.wse-wa-popup.open { display: flex; }
.wse-wa-header { background: #075E54; padding: 16px 18px; display: flex; align-items: center; gap: 12px; position: relative; }
.wse-wa-avatar { width: 40px; height: 40px; border-radius: 50%; background: #25D366; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.wse-wa-name { font-family: 'DM Sans', sans-serif; font-size: 0.9rem; font-weight: 700; color: #fff; }
.wse-wa-status { font-size: 0.72rem; color: rgba(255,255,255,0.7); margin-top: 1px; }
.wse-wa-close { position: absolute; top: 10px; right: 12px; background: none; border: none; color: rgba(255,255,255,0.6); font-size: 1rem; cursor: pointer; padding: 4px; }
.wse-wa-close:hover { color: #fff; }
.wse-wa-body { background: #ECE5DD; padding: 14px 14px 6px; }
.wse-wa-greeting { background: #fff; border-radius: 0 10px 10px 10px; padding: 12px 14px; font-size: 0.83rem; color: #111; line-height: 1.5; margin-bottom: 10px; box-shadow: 0 1px 2px rgba(0,0,0,0.08); }
.wse-wa-options { background: #ECE5DD; padding: 0 14px 14px; display: flex; flex-direction: column; gap: 8px; }
.wse-wa-opt { display: block; background: #fff; border: none; border-radius: 20px; padding: 10px 16px; font-family: 'Inter', sans-serif; font-size: 0.8rem; font-weight: 600; color: #075E54; text-align: center; cursor: pointer; text-decoration: none; transition: background 0.15s; box-shadow: 0 1px 3px rgba(0,0,0,0.06); }
.wse-wa-opt:hover { background: #f0faf0; }
.wse-wa-fab-btn { width: 56px; height: 56px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,0.4); cursor: pointer; border: none; transition: transform 0.2s; }
.wse-wa-fab-btn:hover { transform: scale(1.08); }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .ap-services-grid { grid-template-columns: repeat(2, 1fr); }
  .ap-process { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .ap-footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .ap-nav__links { display: none; }
  .ap-nav__toggle { display: block; }
  .ap-container { padding: 0 20px; }
  .ap-section { padding: 64px 0; }
  .ap-hero { padding: 72px 20px 56px; }
  .ap-hero__img-wrap { border-radius: var(--radius-sm); }
  .ap-feature { grid-template-columns: 1fr; gap: 32px; padding: 48px 0; }
  .ap-feature--rev .ap-feature__img { order: unset; }
  .ap-feature--rev .ap-feature__text { order: unset; }
  .ap-about { grid-template-columns: 1fr; gap: 36px; }
  .ap-contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .ap-form__row { grid-template-columns: 1fr; }
  .ap-twopath { grid-template-columns: 1fr; }
  .ap-svc-full-grid { grid-template-columns: 1fr; }
  .ap-footer__grid { grid-template-columns: 1fr; gap: 28px; padding: 0 20px 36px; }
  .ap-footer__bottom { padding: 16px 20px; }
  .ap-page-hero { padding: 56px 0 48px; }
  .ap-page-hero__content { padding: 0 20px; }
  .ap-ctaband { padding: 72px 20px; }
}
@media (max-width: 600px) {
  .ap-services-grid { grid-template-columns: 1fr; }
  .ap-process { grid-template-columns: 1fr; }
  .ap-hero__stats { gap: 32px; }
}

@media (max-width: 768px) {
  .ap-page-hero__fact { text-align: center; }
  .ap-form__submit { justify-content: center; width: 100%; text-align: center; }
  .qm-submit { text-align: center; }
}
