/* ═══════════════════════════════════════════════════
   SAFARA SHOES & APPAREL CARE — STYLE.CSS
   Modern Clean App-like Design
═══════════════════════════════════════════════════ */

/* ── CSS VARIABLES ── */
:root {
  --yellow: #ffd60a;
  --yellow-dark: #e6c000;
  --yellow-light: #fff8cc;
  --yellow-pale: #fffbdd;
  --black: #111111;
  --gray-900: #1a1a2e;
  --gray-700: #374151;
  --gray-500: #6b7280;
  --gray-300: #d1d5db;
  --gray-100: #f3f4f6;
  --gray-50: #f9fafb;
  --white: #ffffff;
  --green-wa: #25d366;
  --green-wa-dark: #1ebe57;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 24px 64px rgba(0, 0, 0, 0.12);

  --nav-h: 72px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── RESET & BASE ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Outfit", sans-serif;
  background: var(--white);
  color: var(--gray-900);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
ul {
  list-style: none;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── TYPOGRAPHY ── */
h1,
h2,
h3,
h4 {
  line-height: 1.2;
  font-weight: 700;
}

/* ═══════════════════ BUTTONS ═══════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-family: "Outfit", sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0);
  transition: background 0.2s;
}
.btn:hover::after {
  background: rgba(255, 255, 255, 0.12);
}

.btn-primary {
  background: var(--yellow);
  color: var(--black);
  box-shadow: 0 4px 20px rgba(255, 214, 10, 0.35);
}
.btn-primary:hover {
  background: var(--yellow-dark);
  box-shadow: 0 6px 28px rgba(255, 214, 10, 0.45);
  transform: translateY(-1px);
}

.btn-secondary {
  background: var(--black);
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.btn-secondary:hover {
  background: var(--gray-700);
  transform: translateY(-1px);
}

.btn-nav-cta {
  background: var(--yellow);
  color: var(--black);
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-pill);
  box-shadow: 0 2px 12px rgba(255, 214, 10, 0.3);
}
.btn-nav-cta:hover {
  background: var(--yellow-dark);
  transform: translateY(-1px);
}

.btn-large {
  padding: 16px 36px;
  font-size: 16px;
}
.btn-full {
  width: 100%;
  justify-content: center;
}

/* ═══════════════════ NAVBAR ═══════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: box-shadow var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: var(--shadow-sm);
}

.logo-text {
  font-size: 18px;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -0.5px;
}

.logo-accent {
  color: var(--yellow-dark);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav-link {
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
  transition: var(--transition);
}

.nav-link:hover {
  background: var(--gray-100);
  color: var(--black);
}

.nav-link.active {
  background: var(--yellow-light);
  color: var(--black);
  font-weight: 600;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ═══════════════════ SECTION COMMONS ═══════════════════ */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-tag {
  display: inline-block;
  background: var(--yellow-light);
  color: #9a7800;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(28px, 4vw, 40px);
  color: var(--black);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.text-accent {
  color: var(--yellow-dark);
}

.section-sub {
  font-size: 17px;
  color: var(--gray-500);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ═══════════════════ REVEAL ANIMATION ═══════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.1s;
}
.delay-2 {
  transition-delay: 0.2s;
}
.delay-3 {
  transition-delay: 0.3s;
}
.delay-4 {
  transition-delay: 0.4s;
}

/* ═══════════════════ HERO ═══════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-h) + 48px) 0 80px;
  overflow: hidden;
  background: linear-gradient(160deg, #fffef5 0%, #ffffff 50%, #f9fafb 100%);
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
}

.shape-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #ffd60a33 0%, transparent 70%);
  top: -100px;
  right: -100px;
  animation: float1 8s ease-in-out infinite;
}

.shape-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #ffe06633 0%, transparent 70%);
  bottom: 100px;
  left: -80px;
  animation: float2 10s ease-in-out infinite;
}

.shape-3 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, #fff3aa44 0%, transparent 70%);
  top: 40%;
  left: 40%;
  animation: float1 12s ease-in-out infinite reverse;
}

@keyframes float1 {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(20px, -20px);
  }
}
@keyframes float2 {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-15px, 15px);
  }
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--gray-200, #e5e7eb);
  border-radius: var(--radius-pill);
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-500);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--green-wa);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.2);
  animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
  0%,
  100% {
    box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.2);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(37, 211, 102, 0.1);
  }
}

.hero-title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--black);
  margin-bottom: 24px;
}

.hero-highlight {
  color: var(--yellow-dark);
  position: relative;
  display: inline-block;
}

.hero-highlight::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 6px;
  background: var(--yellow);
  border-radius: 3px;
  z-index: -1;
  opacity: 0.5;
}

.emoji {
  font-style: normal;
}

.hero-sub {
  font-size: 17px;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 440px;
}

.hero-sub strong {
  color: var(--gray-700);
  font-weight: 600;
}

.hero-info-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  margin-bottom: 36px;
  box-shadow: var(--shadow-sm);
  width: fit-content;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
}

.info-item svg {
  color: var(--yellow-dark);
  flex-shrink: 0;
}

.info-divider {
  width: 1px;
  height: 20px;
  background: var(--gray-200, #e5e7eb);
}

.hero-cta-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* HERO VISUAL */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card-stack {
  position: relative;
  width: 340px;
  height: 380px;
}

.hero-center-graphic {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.graphic-circle {
  width: 200px;
  height: 200px;
  background: var(--white);
  border-radius: 50%;
  box-shadow:
    var(--shadow-xl),
    0 0 0 12px rgba(255, 214, 10, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: float1 5s ease-in-out infinite;
}

.shoe-svg {
  width: 140px;
  height: 100px;
}

.stat-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0, 0, 0, 0.04);
  z-index: 2;
  animation: float2 6s ease-in-out infinite;
}

.card-shoes {
  top: 20px;
  left: -20px;
  animation-delay: 0s;
}
.card-rating {
  top: 20px;
  right: -20px;
  animation-delay: 1.5s;
}
.card-years {
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 3s;
}

.stat-icon {
  font-size: 28px;
}

.stat-text {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-size: 22px;
  font-weight: 800;
  color: var(--black);
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  color: var(--gray-500);
  font-weight: 500;
}

/* SCROLL HINT */
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--gray-300);
  letter-spacing: 0.5px;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(6px);
  }
}

/* ═══════════════════ SERVICES ═══════════════════ */
.services {
  padding: 100px 0;
  background: var(--gray-50);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: var(--transition);
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: var(--yellow);
}

.service-icon-wrap {
  width: 60px;
  height: 60px;
  background: color-mix(in srgb, var(--icon-color) 15%, transparent);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 28px;
}

.service-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
}

.service-card p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 16px;
}

.service-from {
  font-size: 14px;
  color: var(--gray-700);
  font-weight: 500;
}

.service-from strong {
  color: var(--yellow-dark);
  font-weight: 700;
}

/* ═══════════════════ PRICELIST ═══════════════════ */
.pricelist {
  padding: 100px 0;
  background: var(--white);
}

/* DISCOUNT BANNER */
.discount-banner {
  background: linear-gradient(135deg, var(--black) 0%, #2d2d2d 100%);
  border-radius: var(--radius-xl);
  padding: 28px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-bottom: 56px;
  position: relative;
  overflow: hidden;
}

.discount-banner::before {
  content: "🏷️";
  position: absolute;
  font-size: 120px;
  right: -10px;
  top: -10px;
  opacity: 0.08;
}

.discount-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.discount-num {
  font-size: 48px;
  font-weight: 900;
  color: var(--yellow);
  letter-spacing: -2px;
  line-height: 1;
}

.discount-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.4;
}

.discount-desc strong {
  color: var(--white);
}

.discount-separator {
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.15);
}

.discount-note {
  position: absolute;
  bottom: 10px;
  right: 28px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

/* PRICE GRID */
.price-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.price-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-md);
  border: 1.5px solid var(--gray-100);
  transition: var(--transition);
  position: relative;
}

.price-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
  border-color: var(--yellow);
}

.price-card--featured {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}

.price-card--featured .price-card-desc,
.price-card--featured .price-label {
  color: rgba(255, 255, 255, 0.6);
}

.price-card--featured .price-value {
  color: var(--yellow);
}

.price-card--featured .price-card-note {
  color: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.1);
}

.price-card--featured:hover {
  border-color: var(--yellow);
}

.price-card-badge {
  position: absolute;
  top: -1px;
  right: 24px;
  background: var(--yellow);
  color: var(--black);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.price-card-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1.5px solid var(--gray-100);
}

.price-card--featured .price-card-header {
  border-color: rgba(255, 255, 255, 0.1);
}

.price-card-icon {
  font-size: 32px;
  flex-shrink: 0;
}

.price-card-title {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 4px;
}

.price-card--featured .price-card-title {
  color: var(--white);
}

.price-card-desc {
  font-size: 12px;
  color: var(--gray-500);
  font-weight: 500;
  line-height: 1.4;
}

.price-rows {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.price-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--gray-700);
  font-weight: 500;
}

.price-dot {
  width: 6px;
  height: 6px;
  background: var(--yellow);
  border-radius: 50%;
  flex-shrink: 0;
}

.price-value {
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
}

.price-card-note {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--gray-500);
  padding-top: 16px;
  border-top: 1px solid var(--gray-100);
}

.price-card-note svg {
  color: #f43f5e;
  flex-shrink: 0;
}

/* MINI CARDS */
.price-mini-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-mini-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-md);
  border: 1.5px solid var(--gray-100);
  display: flex;
  align-items: center;
  gap: 14px;
  transition: var(--transition);
}

.price-mini-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: var(--yellow);
}

.price-mini-icon {
  font-size: 28px;
  flex-shrink: 0;
}

.price-mini-content {
  flex: 1;
}

.price-mini-content h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 2px;
}

.price-mini-content p {
  font-size: 12px;
  color: var(--gray-500);
}

.price-mini-value {
  font-size: 17px;
  font-weight: 800;
  color: var(--yellow-dark);
  white-space: nowrap;
}

/* PRICELIST CTA */
.pricelist-cta {
  text-align: center;
  margin-top: 56px;
  padding-top: 48px;
  border-top: 1px solid var(--gray-100);
}

.pricelist-cta p {
  font-size: 17px;
  color: var(--gray-500);
  margin-bottom: 20px;
}

/* ═══════════════════ HOW IT WORKS ═══════════════════ */
.howto {
  padding: 100px 0;
  background: var(--yellow-pale);
}

.steps-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.step-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  flex: 1;
  min-width: 160px;
  max-width: 220px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: var(--transition);
}

.step-item:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
}

.step-num {
  font-size: 11px;
  font-weight: 700;
  color: var(--yellow-dark);
  letter-spacing: 2px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.step-icon {
  font-size: 36px;
  margin-bottom: 14px;
  display: block;
}

.step-item h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
}

.step-item p {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.5;
}

.step-arrow {
  font-size: 24px;
  color: var(--gray-300);
  flex-shrink: 0;
  align-self: center;
  margin-top: 8px;
}

/* ═══════════════════ CONTACT ═══════════════════ */
.contact {
  padding: 100px 0;
  background: var(--gray-50);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 40px;
  align-items: start;
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-block {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon-wrap {
  width: 44px;
  height: 44px;
  background: var(--yellow-light);
  color: var(--yellow-dark);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-block h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.contact-block p {
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.7;
}

.closed-note {
  color: #ef4444;
  font-weight: 500;
}

.wa-link {
  font-size: 16px;
  font-weight: 700;
  color: var(--green-wa);
  display: block;
  margin-bottom: 8px;
}

.wa-link:hover {
  text-decoration: underline;
}

.no-dm-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fef2f2;
  color: #ef4444;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid #fecaca;
}

/* MAP */
.map-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.map-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-700);
  padding: 10px 16px;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-100);
  width: fit-content;
  box-shadow: var(--shadow-sm);
}

.map-wrap iframe {
  box-shadow: var(--shadow-lg);
  width: 100%;
}

.map-open-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--yellow-dark);
  display: flex;
  align-items: center;
  gap: 4px;
}

.map-open-link:hover {
  text-decoration: underline;
}

/* ═══════════════════ FOOTER ═══════════════════ */
.footer {
  background: var(--black);
  color: rgba(255, 255, 255, 0.7);
  padding: 48px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-logo {
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
}

.footer-brand p {
  font-size: 13px;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--yellow);
}

.footer-copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
  text-align: right;
}

/* ═══════════════════ FLOATING WA BUTTON ═══════════════════ */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  background: var(--green-wa);
  border-radius: 100px;
  padding: 14px 20px 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.45);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.wa-float:hover {
  background: var(--green-wa-dark);
  transform: scale(1.05);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.55);
}

.wa-float-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
}

.wa-float-pulse {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--green-wa);
  animation: wa-pulse 2.5s ease-out infinite;
  z-index: -1;
}

@keyframes wa-pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

/* ═══════════════════ RESPONSIVE ═══════════════════ */

/* Tablet: 1024px */
@media (max-width: 1024px) {
  .hero-container {
    gap: 40px;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .price-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .price-mini-group {
    grid-column: span 2;
    flex-direction: row;
  }
  .price-mini-card {
    flex: 1;
  }
  .hero-card-stack {
    width: 280px;
    height: 320px;
  }
  .graphic-circle {
    width: 170px;
    height: 170px;
  }
}

/* Tablet Portrait: 768px */
@media (max-width: 768px) {
  :root {
    --nav-h: 64px;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    gap: 8px;
    box-shadow: var(--shadow-xl);
    border-bottom: 1px solid var(--gray-100);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-link {
    padding: 12px 16px;
    font-size: 16px;
    border-radius: var(--radius-md);
  }

  .hamburger {
    display: flex;
  }
  .btn-nav-cta {
    display: none;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .hero-badge {
    margin: 0 auto 24px;
  }
  .hero-sub {
    margin: 0 auto 28px;
  }
  .hero-info-bar {
    margin: 0 auto 36px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .hero-cta-group {
    justify-content: center;
  }
  .hero-visual {
    order: -1;
  }
  .hero-card-stack {
    width: 300px;
    height: 300px;
  }

  .hero-scroll-hint {
    display: none;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .discount-banner {
    flex-direction: column;
    gap: 20px;
    padding: 24px;
    text-align: center;
  }
  .discount-separator {
    width: 60px;
    height: 1px;
  }
  .discount-note {
    position: static;
    margin-top: 8px;
  }

  .price-grid {
    grid-template-columns: 1fr;
  }
  .price-mini-group {
    flex-direction: column;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .steps-row {
    gap: 8px;
  }
  .step-arrow {
    display: none;
  }
  .step-item {
    max-width: 100%;
    min-width: 140px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .footer-copy {
    text-align: left;
  }
}

/* Mobile: 480px */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero {
    padding-top: calc(var(--nav-h) + 32px);
  }

  .hero-title {
    letter-spacing: -1px;
  }

  .hero-info-bar {
    flex-direction: column;
    gap: 10px;
    padding: 14px;
    width: 100%;
  }
  .info-divider {
    display: none;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .discount-banner {
    border-radius: var(--radius-lg);
  }
  .discount-num {
    font-size: 40px;
  }

  .hero-card-stack {
    width: 260px;
    height: 280px;
  }
  .graphic-circle {
    width: 150px;
    height: 150px;
  }
  .stat-card {
    padding: 10px 14px;
  }
  .stat-num {
    font-size: 18px;
  }
  .stat-icon {
    font-size: 22px;
  }

  .steps-row {
    flex-direction: column;
    align-items: center;
  }
  .step-item {
    max-width: 100%;
    width: 100%;
  }

  .wa-float-label {
    display: none;
  }
  .wa-float {
    padding: 16px;
    border-radius: 50%;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 12px;
  }
}

/* ═══════════════════ SCROLLBAR ═══════════════════ */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--gray-50);
}
::-webkit-scrollbar-thumb {
  background: var(--gray-300);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gray-500);
}

/* ═══════════════════ SELECTION ═══════════════════ */
::selection {
  background: var(--yellow);
  color: var(--black);
}
