/* ==========================================
   ANP Shoes & Bag Care – style.css
   Bold Industrial Clean Design
   ========================================== */

/* ---------- CSS VARIABLES ---------- */
:root {
  --red: #d32f2f;
  --red-dark: #b71c1c;
  --red-light: #ef5350;
  --black: #0a0a0a;
  --black-mid: #1a1a1a;
  --black-soft: #2a2a2a;
  --white: #ffffff;
  --off-white: #f7f7f5;
  --grey-light: #e8e8e8;
  --grey-mid: #999;
  --font-head: "Bebas Neue", sans-serif;
  --font-body: "Montserrat", sans-serif;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.18);
  --shadow-red: 0 8px 30px rgba(211, 47, 47, 0.25);
  --radius: 2px;
  --radius-md: 6px;
  --transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --header-h: 72px;
}

/* ---------- RESET & BASE ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--black);
  overflow-x: hidden;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-red {
  color: var(--red);
}

/* ---------- SCROLL REVEAL ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- SECTION COMMON ---------- */
section {
  padding: 96px 0;
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.section-label--light {
  color: rgba(255, 255, 255, 0.6);
}

.section-header {
  margin-bottom: 56px;
}
.section-header .section-label {
  display: block;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
  color: var(--black);
}

.section-desc {
  font-size: 15px;
  color: var(--grey-mid);
  max-width: 480px;
  line-height: 1.7;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}

.btn--primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn--primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-red);
}

.btn--outline {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}
.btn--outline:hover {
  background: var(--black);
  color: var(--white);
  transform: translateY(-2px);
}

/* ==========================================
   HEADER
   ========================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  transition:
    background 0.4s ease,
    box-shadow 0.4s ease,
    backdrop-filter 0.4s ease;
}
.header.transparent {
  background: transparent;
}
.header.solid {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow:
    0 1px 0 rgba(0, 0, 0, 0.08),
    var(--shadow-sm);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo__anp {
  font-family: var(--font-head);
  font-size: 28px;
  letter-spacing: 3px;
  color: var(--red);
  line-height: 1;
}
.logo__divider {
  width: 2px;
  height: 20px;
  background: var(--grey-light);
  border-radius: 2px;
}
.logo__text {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--black);
  line-height: 1.3;
}
.header.transparent .logo__text,
.header.transparent .logo__divider {
  opacity: 0.85;
}
.header.transparent .logo__text {
  color: var(--white);
}
.header.transparent .logo__divider {
  background: rgba(255, 255, 255, 0.4);
}

/* Nav */
.nav__list {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__link {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--black);
  position: relative;
  transition: color 0.25s ease;
}
.nav__link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.3s ease;
}
.nav__link:hover::after {
  width: 100%;
}
.nav__link:hover {
  color: var(--red);
}

.nav__link--cta {
  background: var(--red);
  color: var(--white) !important;
  padding: 8px 18px;
  border-radius: var(--radius);
}
.nav__link--cta::after {
  display: none;
}
.nav__link--cta:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-red);
}

.header.transparent .nav__link {
  color: rgba(255, 255, 255, 0.9);
}
.header.transparent .nav__link:hover {
  color: var(--white);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1100;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: var(--transition);
}
.header.transparent .hamburger span {
  background: var(--white);
}
.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.hamburger.active span {
  background: var(--black) !important;
}

/* ==========================================
   HERO
   ========================================== */
.hero {
  min-height: 100vh;
  background: var(--black);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 0;
}

.hero__bg-text {
  position: absolute;
  font-family: var(--font-head);
  font-size: clamp(180px, 30vw, 400px);
  color: rgba(255, 255, 255, 0.03);
  letter-spacing: 20px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
  user-select: none;
}

.hero__noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.6;
  pointer-events: none;
  z-index: 0;
}

/* Red accent stripe */
.hero::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: var(--red);
  z-index: 1;
}

/* Red corner block */
.hero::after {
  content: "";
  position: absolute;
  right: 60px;
  top: 0;
  width: 200px;
  height: 4px;
  background: var(--red);
  z-index: 1;
}

.hero__inner {
  position: relative;
  z-index: 2;
  padding-top: calc(var(--header-h) + 40px);
  padding-bottom: 80px;
  max-width: 780px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 6px 14px;
  border-radius: 100px;
}
.hero__badge-dot {
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.4);
  }
}

.hero__headline {
  font-family: var(--font-head);
  font-size: clamp(60px, 10vw, 120px);
  line-height: 0.95;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 28px;
}
.hero__headline-em {
  font-style: italic;
  color: var(--red);
  font-family: var(--font-head);
}
.hero__headline-stroke {
  -webkit-text-stroke: 2px var(--white);
  color: transparent;
}

.hero__sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  max-width: 480px;
  margin-bottom: 40px;
  line-height: 1.8;
}
.hero__sub strong {
  color: var(--white);
  font-weight: 600;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero__actions .btn--outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}
.hero__actions .btn--outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--white);
  transform: translateY(-2px);
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 32px;
}
.hero__stat {
  display: flex;
  flex-direction: column;
  padding-right: 40px;
}
.hero__stat-num {
  font-family: var(--font-head);
  font-size: 36px;
  color: var(--white);
  line-height: 1;
}
.hero__stat-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
}
.hero__stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  margin-right: 40px;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.hero__scroll-hint span {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
}
.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% {
    transform: scaleY(1);
    transform-origin: top;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

/* ==========================================
   TICKER
   ========================================== */
.ticker {
  background: var(--red);
  overflow: hidden;
  padding: 14px 0;
  position: relative;
  z-index: 10;
}
.ticker__track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: ticker 25s linear infinite;
}
.ticker__track span {
  font-family: var(--font-head);
  font-size: 14px;
  letter-spacing: 4px;
  color: var(--white);
  padding: 0 24px;
  flex-shrink: 0;
}
.ticker__dot {
  color: rgba(255, 255, 255, 0.5) !important;
  padding: 0 4px !important;
  font-size: 10px !important;
}
@keyframes ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ==========================================
   SERVICES
   ========================================== */
.services {
  background: var(--off-white);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--white);
  padding: 36px 32px;
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border-bottom: 3px solid transparent;
  cursor: default;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-bottom-color: var(--red);
}
.service-card:hover .service-card__accent {
  width: 100%;
}

.service-card--featured {
  background: var(--black);
  border-bottom-color: var(--red);
}
.service-card--featured .service-card__number {
  color: rgba(255, 255, 255, 0.08);
}
.service-card--featured .service-card__title {
  color: var(--white);
}
.service-card--featured .service-card__desc {
  color: rgba(255, 255, 255, 0.5);
}
.service-card--featured .service-card__tag {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--red);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}

.service-card--wide {
  grid-column: span 2;
}

.service-card__number {
  font-family: var(--font-head);
  font-size: 64px;
  color: rgba(0, 0, 0, 0.05);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: 2px;
  transition: color 0.3s ease;
}

.service-card__title {
  font-family: var(--font-head);
  font-size: 40px;
  letter-spacing: 1.5px;
  color: var(--black);
  line-height: 1;
  margin-bottom: 14px;
}

.service-card__desc {
  font-size: 13px;
  color: var(--grey-mid);
  line-height: 1.7;
}

.service-card__accent {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 32px;
  background: var(--red);
  border-radius: 2px;
  transition: width 0.4s ease;
}

/* ==========================================
   MARKETPLACE
   ========================================== */
.marketplace {
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.marketplace__bg-label {
  position: absolute;
  font-family: var(--font-head);
  font-size: clamp(100px, 18vw, 220px);
  color: rgba(0, 0, 0, 0.025);
  letter-spacing: 12px;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.marketplace .container {
  position: relative;
  z-index: 1;
}

.marketplace__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}

.market-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px 32px;
  border-radius: var(--radius-md);
  border: 2px solid var(--grey-light);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.market-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.market-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.market-card:hover::before {
  opacity: 1;
}

.market-card--shopee::before {
  background: linear-gradient(135deg, #fff5f3, #fff);
}
.market-card--shopee:hover {
  box-shadow: 0 8px 30px rgba(238, 77, 45, 0.15);
  border-color: #ee4d2d;
}
.market-card--tokped::before {
  background: linear-gradient(135deg, #f0faf0, #fff);
}
.market-card--tokped:hover {
  box-shadow: 0 8px 30px rgba(3, 172, 14, 0.15);
  border-color: #03ac0e;
}

.market-card__icon {
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  border-radius: 16px;
  overflow: hidden;
}

.market-card__body {
  position: relative;
  z-index: 1;
  flex: 1;
}
.market-card__platform {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey-mid);
  display: block;
  margin-bottom: 4px;
}
.market-card__name {
  font-family: var(--font-head);
  font-size: 28px;
  letter-spacing: 1px;
  color: var(--black);
  line-height: 1;
  margin-bottom: 4px;
}
.market-card__handle {
  font-size: 13px;
  color: var(--grey-mid);
}

.market-card__arrow {
  font-size: 24px;
  color: var(--grey-light);
  transition:
    color 0.3s ease,
    transform 0.3s ease;
  position: relative;
  z-index: 1;
  font-family: var(--font-head);
}
.market-card:hover .market-card__arrow {
  color: var(--red);
  transform: translateX(4px);
}

.marketplace__promo {
  display: flex;
  align-items: center;
  gap: 20px;
  text-align: center;
  font-size: 13px;
  color: var(--grey-mid);
  font-style: italic;
}
.marketplace__promo-line {
  flex: 1;
  height: 1px;
  background: var(--grey-light);
}

/* ==========================================
   SOCIAL CONNECT
   ========================================== */
.social {
  background: var(--off-white);
}

.social__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

.social-card {
  display: block;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}
.social-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, transparent, transparent);
  transition: background 0.3s ease;
}
.social-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.social-card:hover .social-card__cta {
  color: var(--red);
}

.social-card__top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.social-card__platform-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.instagram-icon {
  background: linear-gradient(
    135deg,
    #f09433,
    #e6683c,
    #dc2743,
    #cc2366,
    #bc1888
  );
  color: var(--white);
}
.tiktok-icon {
  background: var(--black);
  color: var(--white);
}

.social-card__handle {
  font-size: 12px;
  font-weight: 700;
  color: var(--black);
  letter-spacing: 0.5px;
}

.social-card__body h3 {
  font-family: var(--font-head);
  font-size: 22px;
  letter-spacing: 1px;
  color: var(--black);
  margin-bottom: 8px;
}
.social-card__body p {
  font-size: 13px;
  color: var(--grey-mid);
  line-height: 1.7;
  margin-bottom: 24px;
}

.social-card__cta {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey-mid);
  transition: color 0.3s ease;
}

/* ==========================================
   LOCATION
   ========================================== */
.location {
  background: var(--white);
  padding: 96px 0;
}
.location__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.location__info {
  padding-top: 8px;
}
.location__info .section-title {
  margin-top: 12px;
}

.location__address-block {
  display: flex;
  gap: 16px;
  margin: 32px 0;
  padding: 24px;
  background: var(--off-white);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--red);
}
.location__icon {
  flex-shrink: 0;
  color: var(--red);
  margin-top: 3px;
}
.location__street {
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 4px;
}
.location__city,
.location__prov {
  font-size: 14px;
  color: var(--grey-mid);
  line-height: 1.5;
}

.location__hours {
  margin-bottom: 32px;
}
.location__hours-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey-mid);
  margin-bottom: 12px;
}
.location__hours-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 14px;
  border-bottom: 1px solid var(--grey-light);
}
.location__hours-row:last-child {
  border-bottom: none;
}

.location__map {
  height: 420px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 3px solid var(--grey-light);
}
.location__map iframe {
  border-radius: var(--radius-md);
}

/* ==========================================
   CONTACT
   ========================================== */
.contact {
  background: var(--black);
  position: relative;
  overflow: hidden;
  padding: 96px 0;
}
.contact__noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.6;
  pointer-events: none;
}
.contact::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: var(--red);
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.contact__title {
  font-family: var(--font-head);
  font-size: clamp(40px, 6vw, 72px);
  color: var(--white);
  line-height: 1;
  letter-spacing: 2px;
  margin: 16px 0 20px;
}
.contact__title span {
  color: var(--red);
}

.contact__sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
}

.contact__numbers {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}

.contact__wa-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  transition: var(--transition);
  color: var(--white);
}
.contact__wa-btn svg {
  color: #25d366;
  flex-shrink: 0;
}
.contact__wa-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #25d366;
  transform: translateX(4px);
}
.contact__wa-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 3px;
}
.contact__wa-number {
  display: block;
  font-family: var(--font-head);
  font-size: 22px;
  letter-spacing: 1.5px;
  color: var(--white);
}

.contact__note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  font-style: italic;
  line-height: 1.6;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
  background: var(--black-mid);
  padding: 48px 0 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}
.footer__brand .logo__anp {
  font-size: 24px;
}
.footer__brand .logo__text {
  color: rgba(255, 255, 255, 0.6);
}
.footer__brand .logo__divider {
  background: rgba(255, 255, 255, 0.2);
}

.footer__tagline {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 2px;
}
.footer__links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 8px 0;
}
.footer__links a {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.25s ease;
}
.footer__links a:hover {
  color: var(--red);
}
.footer__copy {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.2);
  margin-top: 8px;
}

/* ==========================================
   FLOATING WA BUTTON
   ========================================== */
.float-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  transition: var(--transition);
  color: var(--white);
}
.float-wa:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
}
.float-wa::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.3);
  animation: waRing 2s ease-in-out infinite;
}
@keyframes waRing {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

.float-wa__tooltip {
  position: absolute;
  right: calc(100% + 12px);
  background: var(--black);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 6px 12px;
  border-radius: var(--radius);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: var(--transition);
  pointer-events: none;
}
.float-wa__tooltip::after {
  content: "";
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--black);
}
.float-wa:hover .float-wa__tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ==========================================
   RESPONSIVE
   ========================================== */

/* TABLET: ≤ 900px */
@media (max-width: 900px) {
  section {
    padding: 72px 0;
  }

  /* Nav */
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 85vw);
    height: 100vh;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    padding: 100px 32px 40px;
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 999;
    overflow-y: auto;
  }
  .nav.open {
    right: 0;
  }
  .nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
  .nav__link {
    display: block;
    padding: 16px 0;
    font-size: 14px;
    border-bottom: 1px solid var(--grey-light);
    width: 100%;
    color: var(--black) !important;
  }
  .nav__link--cta {
    margin-top: 20px;
    display: inline-block;
    width: auto;
  }
  .hamburger {
    display: flex;
  }

  /* Services Grid */
  .services__grid {
    grid-template-columns: 1fr 1fr;
  }
  .service-card--wide {
    grid-column: span 2;
  }
  .service-card--featured {
    grid-column: span 1;
  }

  /* Marketplace */
  .marketplace__grid {
    grid-template-columns: 1fr;
  }

  /* Social */
  .social__grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Location */
  .location__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .location__map {
    height: 320px;
  }

  /* Contact */
  .contact__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* MOBILE: ≤ 600px */
@media (max-width: 600px) {
  section {
    padding: 56px 0;
  }
  .container {
    padding: 0 16px;
  }

  .hero__headline {
    font-size: clamp(48px, 14vw, 80px);
  }
  .hero__stats {
    flex-wrap: wrap;
    gap: 24px;
  }
  .hero__stat-divider {
    display: none;
  }
  .hero__actions {
    flex-direction: column;
  }
  .hero__actions .btn {
    justify-content: center;
  }

  .services__grid {
    grid-template-columns: 1fr;
  }
  .service-card--wide {
    grid-column: span 1;
  }
  .service-card--featured {
    grid-column: span 1;
  }

  .social__grid {
    grid-template-columns: 1fr;
  }

  .marketplace__promo {
    flex-direction: column;
    gap: 12px;
  }
  .marketplace__promo-line {
    width: 60px;
    height: 1px;
  }

  .contact__inner {
    gap: 36px;
  }

  .footer__links {
    gap: 16px;
  }

  .float-wa {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
  }
}

/* Large Desktop: ≥ 1400px */
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
  .hero__headline {
    font-size: 130px;
  }
}
