/* ============================================================
   PLANET RETAIL — EAN UPC CODES
   Premium Blue + White Design System
   eanupccodes.com
   ============================================================ */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --blue-primary:    #1a56db;
  --blue-dark:       #1132a8;
  --blue-deeper:     #0a1f6e;
  --blue-light:      #e8f0fe;
  --blue-mid:        #3b82f6;
  --white:           #ffffff;
  --off-white:       #f7f9fc;
  --grey-light:      #eef1f7;
  --grey-mid:        #c5cdd8;
  --grey-text:       #6b7280;
  --dark-text:       #0f172a;
  --heading:         #111827;
  --wa-green:        #25d366;
  --wa-dark:         #128c7e;
  --success:         #16a34a;
  --badge-bg:        #f0f4ff;

  --radius-sm:       6px;
  --radius-md:       12px;
  --radius-lg:       20px;
  --radius-xl:       28px;

  --shadow-sm:       0 1px 4px rgba(15,23,42,.07);
  --shadow-md:       0 4px 20px rgba(15,23,42,.10);
  --shadow-lg:       0 8px 40px rgba(26,86,219,.14);
  --shadow-xl:       0 20px 60px rgba(26,86,219,.18);

  --transition:      0.25s ease;
  --font-main:       'Inter', 'Segoe UI', Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  color: var(--dark-text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--blue-primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--blue-dark); }
ul { list-style: none; }

/* ---------- TYPOGRAPHY ---------- */
h1,h2,h3,h4,h5 {
  font-family: var(--font-main);
  line-height: 1.25;
  color: var(--heading);
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.4rem); letter-spacing: -0.02em; }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.45rem); }
h4 { font-size: 1.1rem; }
p  { color: var(--grey-text); line-height: 1.75; }

.text-white, .text-white h1, .text-white h2, .text-white h3,
.text-white p, .text-white li { color: var(--white) !important; }

/* ---------- UTILITIES ---------- */
.container { width: 92%; max-width: 1180px; margin: 0 auto; }
.container-narrow { width: 92%; max-width: 820px; margin: 0 auto; }
.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 50px 0; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.text-center { text-align: center; }
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--badge-bg); color: var(--blue-primary);
  border: 1.5px solid #c7d8fc; border-radius: 999px;
  font-size: .78rem; font-weight: 600; padding: 5px 14px;
  letter-spacing: .02em; text-transform: uppercase;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; font-family: var(--font-main); font-weight: 600;
  font-size: .97rem; border: none; cursor: pointer;
  border-radius: var(--radius-md); padding: 14px 28px;
  transition: all var(--transition); text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue-primary); color: var(--white);
  box-shadow: 0 4px 18px rgba(26,86,219,.35);
}
.btn-primary:hover {
  background: var(--blue-dark); transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(26,86,219,.45); color: var(--white);
}
.btn-wa {
  background: var(--wa-green); color: var(--white);
  box-shadow: 0 4px 18px rgba(37,211,102,.35);
}
.btn-wa:hover {
  background: var(--wa-dark); transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,.45); color: var(--white);
}
.btn-outline {
  background: transparent; color: var(--blue-primary);
  border: 2px solid var(--blue-primary);
}
.btn-outline:hover {
  background: var(--blue-primary); color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-white {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.15); color: var(--white);
}
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-sm { padding: 10px 20px; font-size: .88rem; }

/* ---------- NAVIGATION ---------- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,.95); backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(197,205,216,.5);
  transition: all var(--transition);
}
.navbar.scrolled {
  box-shadow: var(--shadow-md);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px; text-decoration: none;
}
.nav-logo-text {
  font-size: 1.25rem; font-weight: 800; color: var(--blue-primary);
  letter-spacing: -.02em; line-height: 1.1;
}
.nav-logo-sub {
  font-size: .68rem; font-weight: 500; color: var(--grey-text);
  letter-spacing: .04em; text-transform: uppercase;
  display: block; margin-top: 1px;
}
.nav-logo-icon {
  width: 40px; height: 40px; background: var(--blue-primary);
  border-radius: 10px; display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
}
.nav-links {
  display: flex; align-items: center; gap: 6px;
}
.nav-links a {
  color: var(--dark-text); font-weight: 500; font-size: .93rem;
  padding: 8px 14px; border-radius: var(--radius-sm);
  transition: all var(--transition); text-decoration: none;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--blue-primary); background: var(--blue-light);
}
.nav-cta { margin-left: 8px; }

/* Mobile menu */
.nav-hamburger {
  display: none; background: none; border: none; cursor: pointer;
  padding: 6px; border-radius: var(--radius-sm);
  flex-direction: column; gap: 5px;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--dark-text); border-radius: 2px;
  transition: all var(--transition);
}
.mobile-menu {
  display: none; flex-direction: column; gap: 4px;
  padding: 16px 0 20px; border-top: 1px solid var(--grey-light);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--dark-text); font-weight: 500; padding: 10px 0;
  border-bottom: 1px solid var(--grey-light);
}

/* ---------- HERO SECTION ---------- */
.hero {
  background: linear-gradient(135deg, var(--blue-deeper) 0%, var(--blue-primary) 60%, var(--blue-mid) 100%);
  padding: 140px 0 90px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Crect x='0' y='0' width='2' height='60'/%3E%3Crect x='10' y='0' width='2' height='60'/%3E%3Crect x='20' y='0' width='2' height='60'/%3E%3Crect x='30' y='0' width='2' height='60'/%3E%3Crect x='40' y='0' width='2' height='60'/%3E%3Crect x='50' y='0' width='2' height='60'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center; position: relative;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.25);
  border-radius: 999px; padding: 7px 16px; margin-bottom: 24px;
  font-size: .8rem; font-weight: 600; color: rgba(255,255,255,.9);
  letter-spacing: .04em; text-transform: uppercase;
}
.hero h1 {
  color: var(--white); margin-bottom: 20px;
  text-shadow: 0 2px 12px rgba(0,0,0,.15);
}
.hero-sub {
  color: rgba(255,255,255,.8) !important; font-size: 1.15rem;
  margin-bottom: 36px; max-width: 500px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust {
  display: flex; gap: 24px; margin-top: 40px; flex-wrap: wrap;
}
.hero-trust-item {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,.75); font-size: .88rem; font-weight: 500;
}
.hero-trust-item svg { opacity: .85; }

/* Barcode visual */
.hero-visual {
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.barcode-card {
  background: rgba(255,255,255,.1); backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-xl); padding: 36px 40px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,.2);
}
.barcode-svg-wrap { margin: 0 auto 16px; }
.barcode-label {
  color: rgba(255,255,255,.7); font-size: .82rem; font-weight: 500;
  letter-spacing: .06em; text-transform: uppercase;
}
.barcode-number {
  color: var(--white); font-size: 1.1rem; font-weight: 700;
  letter-spacing: .12em; margin-top: 6px; font-family: monospace;
}
.floating-badge {
  position: absolute; background: var(--white); border-radius: var(--radius-md);
  padding: 10px 16px; box-shadow: var(--shadow-lg);
  font-size: .82rem; font-weight: 600; color: var(--blue-primary);
  white-space: nowrap; animation: float 3s ease-in-out infinite;
}
.floating-badge.top-right { top: 10%; right: -5%; animation-delay: 0s; }
.floating-badge.bottom-left { bottom: 15%; left: -8%; animation-delay: 1.5s; }
@keyframes float {
  0%,100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

/* ---------- TRUST BAR ---------- */
.trust-bar {
  background: var(--off-white); border-top: 1px solid var(--grey-light);
  border-bottom: 1px solid var(--grey-light); padding: 28px 0;
}
.trust-bar-inner {
  display: flex; gap: 0; flex-wrap: wrap;
  justify-content: center; align-items: center;
}
.trust-item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 32px; text-align: left;
  border-right: 1px solid var(--grey-light);
}
.trust-item:last-child { border-right: none; }
.trust-item-icon {
  width: 42px; height: 42px; background: var(--blue-light);
  border-radius: 10px; display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
  color: var(--blue-primary);
}
.trust-item-text strong {
  display: block; font-size: 1.3rem; font-weight: 800;
  color: var(--blue-primary); line-height: 1.2;
}
.trust-item-text span {
  font-size: .8rem; color: var(--grey-text); font-weight: 500;
}

/* ---------- SECTION HEADERS ---------- */
.section-header { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section-header h2 { margin: 12px 0 16px; }
.section-header p { font-size: 1.05rem; }

/* ---------- SERVICES GRID ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white); border: 1.5px solid var(--grey-light);
  border-radius: var(--radius-lg); padding: 32px 28px;
  transition: all var(--transition); cursor: default;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--blue-primary);
  transform: scaleX(0); transition: transform var(--transition);
}
.service-card:hover {
  transform: translateY(-4px); box-shadow: var(--shadow-lg);
  border-color: #c7d8fc;
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 52px; height: 52px; background: var(--blue-light);
  border-radius: var(--radius-md); display: flex; align-items: center;
  justify-content: center; margin-bottom: 20px; color: var(--blue-primary);
  font-size: 1.5rem;
}
.service-card h3 { margin-bottom: 10px; font-size: 1.12rem; }
.service-card p { font-size: .93rem; }
.service-tag {
  display: inline-block; margin-top: 14px;
  background: var(--badge-bg); color: var(--blue-primary);
  border-radius: 999px; padding: 4px 12px; font-size: .78rem; font-weight: 600;
}

/* ---------- HOW IT WORKS ---------- */
.how-bg { background: var(--off-white); }
.steps-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px; position: relative;
}
.step-card {
  text-align: center; padding: 32px 24px;
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); border: 1.5px solid var(--grey-light);
  transition: all var(--transition);
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.step-num {
  width: 48px; height: 48px; background: var(--blue-primary);
  border-radius: 50%; color: var(--white); font-size: 1.2rem;
  font-weight: 800; display: flex; align-items: center;
  justify-content: center; margin: 0 auto 16px;
}
.step-card h3 { margin-bottom: 8px; font-size: 1.05rem; }
.step-card p { font-size: .9rem; }

/* ---------- PRICING TABLE ---------- */
.pricing-bg { background: var(--off-white); }
.pricing-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.pricing-table {
  width: 100%; border-collapse: collapse; min-width: 620px;
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-md);
}
.pricing-table thead tr {
  background: linear-gradient(135deg, var(--blue-deeper), var(--blue-primary));
  color: var(--white);
}
.pricing-table th {
  padding: 18px 20px; text-align: left; font-size: .88rem;
  font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
}
.pricing-table td {
  padding: 16px 20px; font-size: .95rem;
  border-bottom: 1px solid var(--grey-light);
  vertical-align: middle;
}
.pricing-table tbody tr:last-child td { border-bottom: none; }
.pricing-table tbody tr:hover { background: var(--blue-light); }
.pricing-table tbody tr.featured {
  background: linear-gradient(90deg, #e8f0fe 0%, #f0f4ff 100%);
}
.pricing-table tbody tr.featured td { font-weight: 600; }
.price-qty { font-weight: 800; color: var(--heading); font-size: 1.05rem; }
.price-total { font-weight: 800; color: var(--blue-primary); font-size: 1.1rem; }
.price-per { font-size: .85rem; color: var(--grey-text); }
.price-save {
  display: inline-block; background: #dcfce7; color: #15803d;
  border-radius: 999px; padding: 3px 10px;
  font-size: .76rem; font-weight: 700;
}
.price-popular {
  display: inline-flex; align-items: center; gap: 4px;
  background: var(--blue-primary); color: var(--white);
  border-radius: 999px; padding: 4px 12px;
  font-size: .76rem; font-weight: 700; white-space: nowrap;
}
.table-cta { text-align: center; margin-top: 28px; }
.bulk-cta {
  background: linear-gradient(135deg, var(--blue-deeper) 0%, var(--blue-primary) 100%);
  border-radius: var(--radius-lg); padding: 32px 40px;
  text-align: center; margin-top: 32px;
  box-shadow: var(--shadow-lg);
}

/* ---------- FEATURES / WHAT YOU GET ---------- */
.features-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.feature-item {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--white); border-radius: var(--radius-md);
  padding: 20px; border: 1.5px solid var(--grey-light);
  transition: all var(--transition);
}
.feature-item:hover { border-color: #c7d8fc; box-shadow: var(--shadow-sm); }
.feature-check {
  width: 28px; height: 28px; background: #dcfce7; border-radius: 8px;
  color: #16a34a; display: flex; align-items: center;
  justify-content: center; flex-shrink: 0; margin-top: 2px;
  font-size: 1rem;
}
.feature-item h4 { font-size: .97rem; margin-bottom: 4px; }
.feature-item p { font-size: .88rem; }

/* ---------- MARKETPLACE LOGOS ---------- */
.marketplace-section { background: var(--off-white); }
.marketplace-logos {
  display: flex; gap: 20px; flex-wrap: wrap;
  justify-content: center; align-items: center; margin-top: 36px;
}
.mp-badge {
  background: var(--white); border: 1.5px solid var(--grey-light);
  border-radius: var(--radius-md); padding: 14px 24px;
  font-weight: 700; font-size: .95rem; color: var(--dark-text);
  display: flex; align-items: center; gap: 10px;
  transition: all var(--transition);
}
.mp-badge:hover { border-color: var(--blue-primary); box-shadow: var(--shadow-sm); }

/* ---------- TESTIMONIALS / SOCIAL PROOF ---------- */
.testimonials-bg { background: var(--white); }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: var(--off-white); border-radius: var(--radius-lg);
  padding: 28px 24px; border: 1.5px solid var(--grey-light);
  transition: all var(--transition);
}
.testimonial-card:hover { border-color: #c7d8fc; box-shadow: var(--shadow-md); }
.testimonial-stars {
  color: #f59e0b; font-size: 1rem; margin-bottom: 14px;
}
.testimonial-text {
  font-size: .95rem; line-height: 1.7; color: var(--dark-text);
  margin-bottom: 18px; font-style: italic;
}
.testimonial-author {
  display: flex; align-items: center; gap: 12px;
}
.author-avatar {
  width: 40px; height: 40px; background: var(--blue-primary);
  border-radius: 50%; color: var(--white); font-weight: 800;
  font-size: .95rem; display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
}
.author-name { font-weight: 700; font-size: .93rem; color: var(--heading); }
.author-role { font-size: .8rem; color: var(--grey-text); }

/* ---------- FAQ SECTION ---------- */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border: 1.5px solid var(--grey-light); border-radius: var(--radius-md);
  margin-bottom: 12px; overflow: hidden; transition: all var(--transition);
  background: var(--white);
}
.faq-item.open { border-color: var(--blue-primary); box-shadow: var(--shadow-sm); }
.faq-question {
  padding: 20px 24px; cursor: pointer; display: flex;
  justify-content: space-between; align-items: center; gap: 16px;
  font-weight: 600; font-size: .97rem; color: var(--heading);
  background: none; border: none; width: 100%; text-align: left;
  transition: background var(--transition);
}
.faq-question:hover { background: var(--blue-light); }
.faq-icon {
  width: 28px; height: 28px; background: var(--blue-light);
  border-radius: 50%; color: var(--blue-primary); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 700; transition: transform var(--transition);
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .4s ease, padding .3s ease;
  font-size: .95rem; color: var(--grey-text); line-height: 1.75;
  padding: 0 24px;
}
.faq-item.open .faq-answer {
  max-height: 400px; padding: 0 24px 22px;
}

/* ---------- CTA BANNER ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--blue-deeper) 0%, var(--blue-primary) 60%, var(--blue-mid) 100%);
  border-radius: var(--radius-xl); padding: 64px 48px;
  text-align: center; position: relative; overflow: hidden;
  margin: 0 auto;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Crect x='0' y='0' width='2' height='60'/%3E%3Crect x='10' y='0' width='2' height='60'/%3E%3Crect x='20' y='0' width='2' height='60'/%3E%3Crect x='30' y='0' width='2' height='60'/%3E%3Crect x='40' y='0' width='2' height='60'/%3E%3Crect x='50' y='0' width='2' height='60'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-banner > * { position: relative; }
.cta-banner h2 { color: var(--white); margin-bottom: 14px; }
.cta-banner p { color: rgba(255,255,255,.8); font-size: 1.08rem; margin-bottom: 32px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- FOOTER ---------- */
footer {
  background: var(--blue-deeper); color: rgba(255,255,255,.7);
  padding: 60px 0 28px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 48px;
}
.footer-brand h3 {
  color: var(--white); font-size: 1.2rem; margin-bottom: 10px;
}
.footer-brand p {
  color: rgba(255,255,255,.6); font-size: .9rem; line-height: 1.7;
  margin-bottom: 20px;
}
.footer-col h4 {
  color: var(--white); font-size: .88rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase; margin-bottom: 16px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: rgba(255,255,255,.6); font-size: .9rem;
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--white); }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 10px;
  color: rgba(255,255,255,.65); font-size: .88rem;
  margin-bottom: 12px; line-height: 1.5;
}
.footer-contact-item svg { margin-top: 3px; flex-shrink: 0; }
.footer-divider {
  border: none; border-top: 1px solid rgba(255,255,255,.1); margin-bottom: 24px;
}
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
}
.footer-bottom p { font-size: .85rem; color: rgba(255,255,255,.5); margin: 0; }
.footer-bottom-links {
  display: flex; gap: 20px; flex-wrap: wrap;
}
.footer-bottom-links a {
  font-size: .85rem; color: rgba(255,255,255,.5);
}
.footer-bottom-links a:hover { color: var(--white); }
.footer-wa-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--wa-green); color: var(--white);
  border-radius: var(--radius-md); padding: 12px 20px;
  font-weight: 600; font-size: .9rem; text-decoration: none;
  transition: all var(--transition);
}
.footer-wa-btn:hover { background: var(--wa-dark); color: var(--white); }

/* ---------- FLOATING WA BUTTON ---------- */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 9000;
  width: 60px; height: 60px; background: var(--wa-green);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,.5);
  cursor: pointer; text-decoration: none;
  transition: all var(--transition); animation: pulse-wa 2s infinite;
}
.wa-float:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 30px rgba(37,211,102,.6);
}
@keyframes pulse-wa {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,.5); }
  50% { box-shadow: 0 4px 36px rgba(37,211,102,.75); }
}
.wa-float svg { width: 30px; height: 30px; fill: var(--white); }

/* ---------- PAGE HERO (inner pages) ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--blue-deeper) 0%, var(--blue-primary) 100%);
  padding: 120px 0 60px; text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: 14px; }
.page-hero p { color: rgba(255,255,255,.75); font-size: 1.1rem; max-width: 560px; margin: 0 auto; }
.breadcrumb {
  display: flex; gap: 8px; align-items: center;
  justify-content: center; margin-bottom: 16px;
  font-size: .83rem; color: rgba(255,255,255,.6);
}
.breadcrumb a { color: rgba(255,255,255,.6); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb-sep { opacity: .5; }

/* ---------- CONTACT CARDS ---------- */
.contact-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; }
.contact-form-card, .contact-info-card {
  background: var(--white); border-radius: var(--radius-xl);
  padding: 40px; border: 1.5px solid var(--grey-light);
  box-shadow: var(--shadow-sm);
}
.form-group { margin-bottom: 22px; }
.form-group label {
  display: block; font-size: .88rem; font-weight: 600;
  color: var(--heading); margin-bottom: 8px;
}
.form-control {
  width: 100%; padding: 12px 16px; font-size: .95rem;
  border: 1.5px solid var(--grey-mid); border-radius: var(--radius-md);
  background: var(--white); color: var(--dark-text);
  transition: border var(--transition), box-shadow var(--transition);
  outline: none; font-family: var(--font-main);
}
.form-control:focus {
  border-color: var(--blue-primary);
  box-shadow: 0 0 0 3px rgba(26,86,219,.12);
}
select.form-control { cursor: pointer; }
textarea.form-control { resize: vertical; min-height: 110px; }
.contact-wa-big {
  display: flex; align-items: center; gap: 16px;
  background: #f0fff4; border: 2px solid #86efac;
  border-radius: var(--radius-lg); padding: 22px 24px; margin-bottom: 24px;
  text-decoration: none; transition: all var(--transition);
}
.contact-wa-big:hover { background: #dcfce7; transform: translateY(-2px); }
.wa-icon-big {
  width: 52px; height: 52px; background: var(--wa-green);
  border-radius: 14px; display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
}
.wa-text h4 { color: var(--heading); font-size: 1rem; margin-bottom: 2px; }
.wa-text p { color: var(--grey-text); font-size: .88rem; margin: 0; }
.info-item {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px 0; border-bottom: 1px solid var(--grey-light);
}
.info-item:last-child { border-bottom: none; }
.info-icon {
  width: 40px; height: 40px; background: var(--blue-light);
  border-radius: 10px; display: flex; align-items: center;
  justify-content: center; color: var(--blue-primary); flex-shrink: 0;
}
.info-item h5 { font-size: .88rem; color: var(--grey-text); margin-bottom: 2px; }
.info-item p { font-size: .93rem; color: var(--heading); margin: 0; line-height: 1.4; }

/* ---------- POLICY PAGES ---------- */
.policy-content {
  max-width: 820px; margin: 0 auto;
  background: var(--white); border-radius: var(--radius-xl);
  padding: 48px; box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--grey-light);
}
.policy-content h2 { font-size: 1.3rem; color: var(--blue-primary); margin: 32px 0 12px; }
.policy-content h2:first-child { margin-top: 0; }
.policy-content p { margin-bottom: 14px; font-size: .96rem; }
.policy-content ul { margin: 12px 0 16px 20px; list-style: disc; }
.policy-content ul li { color: var(--grey-text); font-size: .96rem; margin-bottom: 8px; }
.policy-last-updated {
  background: var(--blue-light); border-radius: var(--radius-md);
  padding: 12px 18px; font-size: .88rem; color: var(--blue-primary);
  font-weight: 600; margin-bottom: 28px; display: inline-block;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .hero { padding: 110px 0 60px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .trust-item { padding: 10px 16px; border-right: none; border-bottom: 1px solid var(--grey-light); width: 100%; }
  .trust-bar-inner { flex-direction: column; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-banner { padding: 44px 24px; }
  .section-pad { padding: 56px 0; }
  .policy-content { padding: 28px 20px; }
}
@media (max-width: 480px) {
  .hero-btns { flex-direction: column; }
  .cta-btns { flex-direction: column; align-items: center; }
  .btn-lg { width: 100%; text-align: center; }
}

/* ---------- SCROLL ANIMATIONS ---------- */
.fade-in {
  opacity: 0; transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: .1s; }
.fade-in-delay-2 { transition-delay: .2s; }
.fade-in-delay-3 { transition-delay: .3s; }
.fade-in-delay-4 { transition-delay: .4s; }
