/* =============================================
   EASYBOX – Casillero Internacional
   Brand Colors: Navy #0d1b3e | Green #4db848
   ============================================= */

:root {
  --navy: #0d1b3e;
  --navy-light: #162550;
  --navy-dark: #080f22;
  --green: #4db848;
  --green-dark: #3a9a35;
  --green-light: #6dcf68;
  --white: #ffffff;
  --gray-100: #f5f7fa;
  --gray-200: #e8ecf2;
  --gray-400: #9aa5b8;
  --gray-700: #3d4a5c;
  --text: #1a2236;
  --shadow: 0 4px 24px rgba(13,27,62,0.12);
  --shadow-lg: 0 12px 48px rgba(13,27,62,0.18);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { line-height: 1.2; font-weight: 800; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }
p { font-size: 1rem; line-height: 1.75; }

/* ── LAYOUT ── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn-primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(77,184,72,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
}
.btn-lg { padding: 18px 36px; font-size: 1.1rem; }
.btn-whatsapp {
  background: #25d366;
  color: var(--white);
  border-color: #25d366;
}
.btn-whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.35);
}

/* ── TAGS ── */
.tag {
  display: inline-block;
  background: rgba(77,184,72,0.15);
  color: var(--green);
  border: 1px solid rgba(77,184,72,0.3);
  border-radius: 50px;
  padding: 4px 14px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.tag-white {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}

/* ── SECTION HEADER ── */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}
.section-header h2 { color: var(--navy); margin-bottom: 16px; }
.section-header p { color: var(--gray-700); font-size: 1.1rem; }

/* ════════════════════════════
   NAVBAR
════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  background: rgba(13,27,62,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
}
.navbar.scrolled {
  padding: 10px 0;
  background: rgba(13,27,62,0.99);
  box-shadow: 0 4px 24px rgba(0,0,0,0.25);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 64px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo-img {
  height: 52px;
  width: auto;
  display: block;
  object-fit: contain;
}
.footer-logo-text {
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}
.footer-logo-text span { color: var(--green); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  color: rgba(255,255,255,0.8);
  font-size: 0.92rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.08); }
.nav-cta {
  background: var(--green) !important;
  color: var(--white) !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  padding: 10px 20px !important;
}
.nav-cta:hover { background: var(--green-dark) !important; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 65px;
  left: 0;
  right: 0;
  background: var(--navy);
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  z-index: 999;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-weight: 500;
}
.mobile-menu a:last-child { border-bottom: none; }

/* ════════════════════════════
   HERO
════════════════════════════ */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, #102040 100%);
  display: flex;
  align-items: center;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(77,184,72,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(77,184,72,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-content { }
.hero-content h1 {
  color: var(--white);
  margin-bottom: 24px;
}
.hero-content h1 .highlight { color: var(--green); }
.hero-content p {
  color: rgba(255,255,255,0.8);
  font-size: 1.15rem;
  margin-bottom: 36px;
  max-width: 520px;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  gap: 40px;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 32px;
}
.stat-item { }
.stat-number {
  font-size: 2rem;
  font-weight: 900;
  color: var(--green);
  line-height: 1;
}
.stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}
/* Hero visual */
.hero-visual {
  position: relative;
}
.hero-card-main {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 32px;
  backdrop-filter: blur(10px);
}
.address-box {
  background: var(--navy-dark);
  border: 1px solid rgba(77,184,72,0.3);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 20px;
}
.address-label {
  font-size: 0.75rem;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.address-text {
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 700;
}
.address-sub {
  color: rgba(255,255,255,0.5);
  font-size: 0.82rem;
  margin-top: 4px;
}
.hero-flags {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}
.flag-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50px;
  padding: 6px 14px;
  color: rgba(255,255,255,0.9);
  font-size: 0.88rem;
  font-weight: 600;
}
.hero-brands-mini {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.brand-mini-chip {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 10px 8px;
  text-align: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.75rem;
  font-weight: 700;
  transition: var(--transition);
}
.brand-mini-chip:hover {
  background: rgba(77,184,72,0.1);
  border-color: rgba(77,184,72,0.3);
  color: var(--green);
}
.floating-badge {
  position: absolute;
  background: var(--green);
  color: var(--white);
  border-radius: 50px;
  padding: 8px 16px;
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(77,184,72,0.4);
  white-space: nowrap;
}
.badge-1 { top: -16px; right: 24px; }
.badge-2 { bottom: -16px; left: 24px; }

/* ════════════════════════════
   TRUST BAR
════════════════════════════ */
.trust-bar {
  background: var(--gray-100);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  padding: 20px 0;
  overflow: hidden;
}
.trust-track {
  display: flex;
  align-items: center;
  gap: 48px;
  animation: scroll-trust 30s linear infinite;
  width: max-content;
}
.trust-track:hover { animation-play-state: paused; }
@keyframes scroll-trust {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gray-700);
  font-size: 0.9rem;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0.7;
  transition: var(--transition);
}
.trust-item:hover { opacity: 1; }
.trust-icon { font-size: 1.4rem; }
.trust-divider {
  width: 4px;
  height: 4px;
  background: var(--gray-400);
  border-radius: 50%;
}

/* ════════════════════════════
   SERVICES
════════════════════════════ */
.services { background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.service-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  transition: var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card-inner {
  padding: 48px 40px;
  height: 100%;
}
.service-card.usa {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
}
.service-card.china {
  background: linear-gradient(135deg, #c41e3a 0%, #8b0000 100%);
  color: var(--white);
}
.service-flag {
  font-size: 3.5rem;
  margin-bottom: 16px;
  display: block;
}
.service-card h3 {
  color: var(--white);
  margin-bottom: 12px;
  font-size: 1.8rem;
}
.service-card p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 24px;
}
.service-features {
  margin-bottom: 32px;
}
.service-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.85);
  font-size: 0.92rem;
  padding: 6px 0;
}
.service-feature::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  font-size: 0.7rem;
  flex-shrink: 0;
  font-weight: 700;
}
.service-card.usa .service-feature::before { background: rgba(77,184,72,0.3); color: var(--green-light); }
.service-address {
  background: rgba(0,0,0,0.2);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-top: 24px;
  font-size: 0.88rem;
}
.service-address strong { color: var(--white); display: block; margin-bottom: 4px; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.5px; opacity: 0.7; }
.service-address span { color: rgba(255,255,255,0.9); font-weight: 600; }

/* ════════════════════════════
   HOW IT WORKS
════════════════════════════ */
.how-it-works { background: var(--gray-100); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 44px;
  left: 12.5%;
  width: 75%;
  height: 2px;
  background: linear-gradient(90deg, var(--green) 0%, var(--navy) 100%);
  z-index: 0;
}
.step-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  position: relative;
  z-index: 1;
  transition: var(--transition);
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.step-number {
  width: 56px;
  height: 56px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 900;
  margin: 0 auto 20px;
  border: 4px solid var(--white);
  box-shadow: 0 0 0 2px var(--green);
}
.step-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}
.step-card h4 { color: var(--navy); margin-bottom: 8px; }
.step-card p { color: var(--gray-700); font-size: 0.9rem; }

/* ════════════════════════════
   BRANDS
════════════════════════════ */
.brands-section { background: var(--white); }
.brands-intro {
  text-align: center;
  margin-bottom: 48px;
}
.brands-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 40px;
}
.brands-tab {
  padding: 10px 24px;
  border-radius: 50px;
  border: 2px solid var(--gray-200);
  background: var(--white);
  color: var(--gray-700);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
}
.brands-tab.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}
.brands-tab:hover:not(.active) {
  border-color: var(--navy);
  color: var(--navy);
}
.brands-panel { display: none; }
.brands-panel.active { display: block; }
.brands-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.brand-card {
  background: var(--gray-100);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 24px 16px;
  text-align: center;
  transition: var(--transition);
  cursor: default;
}
.brand-card:hover {
  border-color: var(--green);
  background: rgba(77,184,72,0.05);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.brand-emoji { font-size: 2.4rem; margin-bottom: 10px; display: block; }
.brand-name { font-weight: 800; color: var(--navy); font-size: 0.95rem; }
.brand-sub { color: var(--gray-400); font-size: 0.75rem; margin-top: 2px; }

/* ════════════════════════════
   BENEFITS
════════════════════════════ */
.benefits {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  color: var(--white);
}
.benefits .section-header h2 { color: var(--white); }
.benefits .section-header p { color: rgba(255,255,255,0.7); }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.benefit-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
}
.benefit-card:hover {
  background: rgba(77,184,72,0.1);
  border-color: rgba(77,184,72,0.3);
  transform: translateY(-4px);
}
.benefit-icon {
  font-size: 2.8rem;
  margin-bottom: 20px;
  display: block;
}
.benefit-card h4 { color: var(--white); margin-bottom: 10px; font-size: 1.15rem; }
.benefit-card p { color: rgba(255,255,255,0.7); font-size: 0.92rem; }

/* ════════════════════════════
   TESTIMONIALS
════════════════════════════ */
.testimonials { background: var(--gray-100); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  position: relative;
  transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 5rem;
  color: var(--green);
  opacity: 0.2;
  font-family: Georgia, serif;
  line-height: 1;
}
.stars {
  color: #f5a623;
  font-size: 1rem;
  margin-bottom: 16px;
}
.testimonial-text {
  color: var(--gray-700);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 44px;
  height: 44px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.author-name { font-weight: 700; color: var(--navy); font-size: 0.92rem; }
.author-city { color: var(--gray-400); font-size: 0.8rem; }

/* ════════════════════════════
   OFFICES
════════════════════════════ */
.offices { background: var(--white); }
.offices-filter {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter-btn {
  padding: 8px 20px;
  border-radius: 50px;
  border: 2px solid var(--gray-200);
  background: var(--white);
  color: var(--gray-700);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn.active, .filter-btn:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}
.offices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.office-card {
  background: var(--gray-100);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.office-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--green);
}
.office-card:hover {
  border-color: var(--green);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.office-city {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--green);
  font-weight: 700;
  margin-bottom: 4px;
}
.office-name { font-weight: 800; color: var(--navy); font-size: 1rem; margin-bottom: 8px; }
.office-address { color: var(--gray-700); font-size: 0.85rem; line-height: 1.5; margin-bottom: 12px; }
.office-phones { display: flex; flex-direction: column; gap: 4px; }
.office-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--navy);
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
  text-decoration: none;
}
.office-phone:hover { color: var(--green); }
.office-phone svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ════════════════════════════
   FAQ
════════════════════════════ */
.faq-section { background: var(--gray-100); }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 960px;
  margin: 0 auto;
}
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.faq-question {
  padding: 20px 24px;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: var(--transition);
  user-select: none;
}
.faq-question:hover { background: var(--gray-100); }
.faq-question.open { color: var(--green); }
.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  transition: var(--transition);
}
.faq-question.open .faq-icon { background: var(--green); transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-answer.open { max-height: 300px; }
.faq-answer-inner {
  padding: 0 24px 20px;
  color: var(--gray-700);
  font-size: 0.92rem;
  line-height: 1.7;
  border-top: 1px solid var(--gray-200);
  padding-top: 16px;
}

/* ════════════════════════════
   CTA FINAL
════════════════════════════ */
.cta-final {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, #0a2a18 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(77,184,72,0.1) 0%, transparent 70%);
}
.cta-final h2 { color: var(--white); margin-bottom: 20px; position: relative; }
.cta-final p { color: rgba(255,255,255,0.75); font-size: 1.15rem; max-width: 560px; margin: 0 auto 40px; position: relative; }
.cta-final-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* ════════════════════════════
   WHATSAPP FLOAT
════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
.wa-bubble {
  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.5);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}
.wa-bubble:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.6); }
.wa-bubble svg { width: 30px; height: 30px; fill: white; }
.wa-pulse {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: 50%;
  background: rgba(37,211,102,0.4);
  animation: wa-pulse 2s infinite;
}
@keyframes wa-pulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}
.wa-tooltip {
  background: var(--navy);
  color: var(--white);
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: var(--shadow);
  display: none;
  position: absolute;
  right: 74px;
  bottom: 8px;
}
.wa-float:hover .wa-tooltip { display: block; }
.wa-tooltip::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -6px;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-right: none;
  border-left-color: var(--navy);
}

/* ════════════════════════════
   FOOTER
════════════════════════════ */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
  align-items: start;
}
.footer-brand .logo-text {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--white);
}
.footer-brand .logo-text span { color: var(--green); }
.footer-brand p {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  margin: 12px 0 20px;
  max-width: 280px;
}
.footer-usa-addr {
  background: rgba(255,255,255,0.05);
  border-left: 3px solid var(--green);
  padding: 12px 16px;
  border-radius: 0 8px 8px 0;
  margin-bottom: 16px;
  font-size: 0.85rem;
}
.footer-usa-addr strong { color: var(--white); display: block; font-size: 0.75rem; letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 4px; opacity: 0.6; }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.social-link svg { width: 20px; height: 20px; fill: rgba(255,255,255,0.75); transition: var(--transition); }
.social-link:hover { transform: translateY(-3px); }
.social-link.wa:hover  { background: #25d366; }
.social-link.ig:hover  { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.social-link.fb:hover  { background: #1877f2; }
.social-link.tt:hover  { background: #010101; }
.social-link:hover svg { fill: #fff; }
.footer-col h5 {
  color: var(--white);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  font-weight: 700;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--green); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.82rem; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a {
  color: rgba(255,255,255,0.4);
  font-size: 0.82rem;
  transition: var(--transition);
}
.footer-legal a:hover { color: var(--green); }

/* ════════════════════════════
   PRICING CALLOUT
════════════════════════════ */
.pricing-callout {
  background: var(--white);
  border: 2px solid var(--green);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 900px;
  margin: 48px auto 0;
  box-shadow: 0 4px 20px rgba(77,184,72,0.12);
}
.pricing-text h3 { color: var(--navy); margin-bottom: 8px; }
.pricing-text p { color: var(--gray-700); font-size: 0.95rem; }
.pricing-highlight {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--green);
  white-space: nowrap;
  line-height: 1;
}
.pricing-highlight span {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-400);
  text-align: center;
  margin-top: 4px;
}

/* ════════════════════════════
   RESPONSIVE
════════════════════════════ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
  .services-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
  .brands-grid { grid-template-columns: repeat(4, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .offices-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero { padding-top: 72px; min-height: auto; padding-bottom: 48px; }
  .hero-stats { gap: 24px; }
  .stat-number { font-size: 1.6rem; }
  .steps-grid { grid-template-columns: 1fr; }
  .brands-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .offices-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .pricing-callout { flex-direction: column; text-align: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .brands-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-brands-mini { grid-template-columns: repeat(3, 1fr); }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .cta-final-buttons { flex-direction: column; align-items: center; }
  .brands-tabs { flex-wrap: wrap; }
}

/* ════════════════════════════
   BLOG SECTION
════════════════════════════ */
.blog-section { background: var(--gray-100); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-card-img {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-emoji { font-size: 3.5rem; }
.blog-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-tag {
  display: inline-block;
  background: rgba(77,184,72,0.1);
  color: var(--green-dark);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 10px;
}
.blog-card-body h3 { font-size: 1rem; color: var(--navy); margin-bottom: 10px; line-height: 1.4; }
.blog-card-body h3 a { color: inherit; transition: var(--transition); }
.blog-card-body h3 a:hover { color: var(--green); }
.blog-card-body p { color: var(--gray-700); font-size: 0.88rem; flex: 1; margin-bottom: 16px; }
.blog-read-more { color: var(--green); font-weight: 700; font-size: 0.88rem; transition: var(--transition); }
.blog-read-more:hover { color: var(--green-dark); }
@media (max-width: 1024px) { .blog-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 640px) { .blog-grid { grid-template-columns: 1fr; } }

/* ── ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }
.fade-up:nth-child(5) { transition-delay: 0.4s; }
.fade-up:nth-child(6) { transition-delay: 0.5s; }

/* ── SCHEMA / Structured Data helper ── */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}
