:root {
  --primary:  #0288d1;   /* brand blue — used for interactive elements */
  --yellow:   #ffd700;   /* hero CTA only */
  --pink:     #e91e63;   /* prices only */
  --dark:     #1a1a2e;   /* headings, footer bg */
  --text:     #374151;   /* body copy */
  --gray:     #f5f7fa;   /* section backgrounds */
  --border:   #e5e7eb;
  --light:    #ffffff;
}

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

body {
  font-family: 'Inter', system-ui, sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: var(--gray);
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

h1, h2, h3 { font-family: 'Playfair Display', serif; }
a { text-decoration: none; color: inherit; }

/* ── Header ─────────────────────────────────────────────────────────────── */
.header {
  position: sticky;
  top: 0;
  background: var(--dark);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  z-index: 1000;
  padding: 0.9rem 0;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

.logo-badge {
  display: inline-flex;
  align-items: center;
  background: #fff;
  border-radius: 8px;
  padding: 5px 8px;
  flex-shrink: 0;
}

.logo-img {
  height: 42px;
  width: auto;
  display: block;
}

.logo-wordmark {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.logo-company-name {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-name-primary {
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.07em;
  font-family: 'Playfair Display', serif;
}

.logo-name-secondary {
  font-size: 0.58rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.22em;
}

.logo-tagline-words {
  margin: 0;
  font-size: 0.6rem;
  font-style: italic;
  line-height: 1;
}

.tl-yellow { color: #ffd700; }
.tl-cyan   { color: #40c4ff; }
.tl-pink   { color: #ff4081; }

.nav {
  display: flex;
  gap: 2rem;
  font-weight: 500;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
}

.nav a { transition: color 0.2s; color: rgba(255,255,255,0.85); }
.nav a:hover { color: var(--primary); }

.btn-header {
  padding: 0.55rem 1.4rem;
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: translateX(-8px); }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── Floating WhatsApp ───────────────────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  z-index: 999;
  transition: transform 0.2s;
}

.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float svg { width: 34px; height: 34px; }

/* ── Hero ────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 88vh;
  min-height: 600px;
  max-height: 960px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.slider-wrapper {
  position: absolute;
  inset: 0;
}

.slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  will-change: opacity;
}

/* No-JS fallback — show first slide. Overridden once JS adds .slider-loaded */
.slider-wrapper:not(.slider-loaded) .slide:first-child { opacity: 1; }

.slide.active { opacity: 1; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(26,26,46,0.38) 0%, rgba(26,26,46,0.74) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  text-align: center;
  width: 100%;
}

.hero-content .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
}

.hero h1 {
  font-size: clamp(2.6rem, 7.5vw, 6rem);
  line-height: 1.08;
  margin-bottom: 1.2rem;
}

.hero h1.hero-tagline {
  font-size: clamp(2.3rem, 6vw, 4.6rem);
  line-height: 1.1;
  text-shadow: 0 2px 16px rgba(0,0,0,0.45);
}

.lead {
  font-size: clamp(1rem, 2.8vw, 1.5rem);
  max-width: 52ch;
  margin: 0 auto 2.5rem;
  opacity: 0.9;
  font-weight: 400;
}

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--yellow);
  color: var(--dark);
  box-shadow: 0 6px 20px rgba(255,215,0,0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(255,215,0,0.45);
}

.btn-whatsapp {
  display: block;
  text-align: center;
  width: 100%;
  margin-top: 1rem;
  background: #25D366;
  color: white;
}

.btn-whatsapp:hover { background: #20b858; }

.btn-cta {
  background: white;
  color: var(--primary);
  padding: 1.15rem 3rem;
  font-size: 1.1rem;
  box-shadow: 0 8px 28px rgba(0,0,0,0.15);
}

.btn-cta:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(0,0,0,0.22);
}

/* ── Trust Bar ───────────────────────────────────────────────────────────── */
.trust-bar {
  background: var(--dark);
  color: white;
  padding: 1.4rem 0;
}

.trust-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 500;
  font-size: 0.9rem;
}

.trust-item svg {
  width: 18px;
  height: 18px;
  color: var(--yellow);
  flex-shrink: 0;
}

/* ── Sections ────────────────────────────────────────────────────────────── */
.section { padding: 7rem 0; }

.section-title {
  text-align: center;
  font-size: clamp(1.9rem, 4.5vw, 2.7rem);
  color: var(--dark);
  margin-bottom: 3.5rem;
  position: relative;
  padding-bottom: 1.1rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 54px;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
}

/* ── Category Filter Tabs ────────────────────────────────────────────────── */
.filter-tabs {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 3rem;
  margin-top: -1rem;
}

.filter-btn {
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  border: 2px solid var(--border);
  background: transparent;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--text);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

/* ── Products ────────────────────────────────────────────────────────────── */
.products { background: var(--light); }

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 2rem;
}

.product-card {
  background: white;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

.product-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.card-content { padding: 1.4rem; }

.product-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.35rem;
  color: var(--dark);
}

.price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--pink);
  margin-bottom: 0.55rem;
}

.card-content p {
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.6;
}

/* Equal-height cards: Inquire button pinned to the bottom */
.product-card { display: flex; flex-direction: column; }
.card-content { flex: 1; display: flex; flex-direction: column; }
.card-content .btn-whatsapp { margin-top: auto; }
.card-content .card-tag { align-self: flex-start; }
.card-content p { margin-bottom: 1rem; }

.price-quote {
  color: var(--primary);
  font-size: 0.95rem;
}

.card-variants {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: -0.35rem 0 1rem;
}

.card-variants li {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 2px 9px;
  border-radius: 50px;
  background: var(--gray);
  border: 1px solid var(--border);
  color: var(--dark);
}

/* ── Catalog (categories, search, previews) ──────────────────────────────── */
.products-lead {
  text-align: center;
  color: var(--text);
  font-size: 1rem;
  max-width: 60ch;
  margin: -2.5rem auto 2.5rem;
}

.catalog-tools {
  position: sticky;
  top: var(--header-h, 72px);
  z-index: 5;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(8px);
  padding: 0.9rem 0;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.catalog-tools {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.catalog-tools .filter-tabs {
  flex: 1;
  flex-wrap: nowrap;
  justify-content: flex-start;
  overflow-x: auto;
  scrollbar-width: none;
  margin: 0;
}

.catalog-tools .filter-tabs::-webkit-scrollbar { display: none; }
.catalog-tools .filter-btn { white-space: nowrap; flex-shrink: 0; }

.filter-count {
  display: inline-block;
  min-width: 1.6em;
  margin-left: 0.3rem;
  padding: 0 0.4em;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  background: var(--gray);
  color: var(--text);
}

.filter-btn:hover .filter-count,
.filter-btn.active .filter-count {
  background: rgba(255,255,255,0.25);
  color: white;
}

.product-search {
  position: relative;
  flex: 0 0 270px;
}

.product-search svg {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: #9ca3af;
  pointer-events: none;
}

.product-search input {
  width: 100%;
  padding: 0.7rem 1rem 0.7rem 2.75rem;
  border: 2px solid var(--border);
  border-radius: 50px;
  font-family: inherit;
  font-size: 0.92rem;
  color: var(--dark);
  background: white;
  transition: border-color 0.2s;
}

.product-search input:focus {
  outline: none;
  border-color: var(--primary);
}

.product-category + .product-category { margin-top: 4rem; }

.category-head {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.4rem 1.25rem;
  margin-bottom: 1.75rem;
  padding-left: 1rem;
  border-left: 4px solid var(--primary);
}

.category-title {
  font-size: 1.6rem;
  color: var(--dark);
}

.category-lead {
  font-size: 0.92rem;
  color: #6b7280;
}

/* In the "All" view each category shows a preview of 8 cards */
.catalog.show-all .product-card:nth-child(n+9) { display: none; }

.btn-view-all {
  display: none;
  margin: 1.75rem auto 0;
  padding: 0.7rem 1.8rem;
  border-radius: 50px;
  border: 2px solid var(--primary);
  background: transparent;
  color: var(--primary);
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-view-all:hover { background: var(--primary); color: white; }
.catalog.show-all .btn-view-all { display: block; }

.no-results {
  text-align: center;
  padding: 3rem 1rem;
  color: #6b7280;
}

.no-results a { color: var(--primary); font-weight: 600; }

/* ── Gallery ─────────────────────────────────────────────────────────────── */
.gallery { background: var(--gray); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.2rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  aspect-ratio: 4 / 3;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(2, 136, 209, 0.22);
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-item:hover img { transform: scale(1.05); }
.gallery-item:hover::after { opacity: 1; }

/* ── Why Us ──────────────────────────────────────────────────────────────── */
.why-us { background: var(--light); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.why-card {
  background: var(--gray);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
}

.why-icon {
  width: 64px;
  height: 64px;
  background: rgba(2, 136, 209, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.why-icon svg {
  width: 26px;
  height: 26px;
  color: var(--primary);
}

.why-card h3 {
  font-size: 1.3rem;
  color: var(--dark);
  margin-bottom: 0.75rem;
}

.why-card p {
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ── Testimonials ────────────────────────────────────────────────────────── */
.testimonials {
  background: var(--gray);
  overflow: hidden;
}

.testimonials-desc {
  text-align: center;
  color: #6b7280;
  font-size: 1rem;
  margin-top: -2.5rem;
  margin-bottom: 3rem;
}

/* Marquee */
.marquee-wrapper {
  position: relative;
  overflow: hidden;
  padding: 0.5rem 0 1rem;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 35s linear infinite;
}

.marquee-wrapper:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes marquee-scroll {
  to { transform: translateX(-50%); }
}

/* Cards */
.testimonial-card {
  background: white;
  border-radius: 14px;
  padding: 1.75rem;
  width: 320px;
  flex-shrink: 0;
  margin-right: 1.5rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stars {
  color: #f59e0b;
  font-size: 1rem;
  letter-spacing: 3px;
}

.quote {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--text);
  font-style: italic;
  flex: 1;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  overflow: hidden;
  flex-shrink: 0;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.reviewer strong {
  display: block;
  font-size: 0.88rem;
  color: var(--dark);
}

.reviewer span {
  font-size: 0.78rem;
  color: #9ca3af;
}

/* Gradient fade edges */
.marquee-fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 180px;
  pointer-events: none;
  z-index: 2;
}

.marquee-fade--left {
  left: 0;
  background: linear-gradient(to right, var(--gray), transparent);
}

.marquee-fade--right {
  right: 0;
  background: linear-gradient(to left, var(--gray), transparent);
}

/* ── Clients (logo slider) ───────────────────────────────────────────────── */
.clients { background: var(--light); }

.clients-lead {
  text-align: center;
  color: var(--text);
  font-size: 1rem;
  max-width: 60ch;
  margin: -2.5rem auto 2.5rem;
}

.clients-marquee { padding: 0.5rem 0; }
.clients-marquee .marquee-track { animation-duration: 45s; }
.marquee-track--reverse { animation-direction: reverse; }
.clients-marquee .marquee-fade--left  { background: linear-gradient(to right, var(--light), transparent); }
.clients-marquee .marquee-fade--right { background: linear-gradient(to left, var(--light), transparent); }

.client-logo {
  flex: none;
  width: 170px;
  height: 120px;
  margin-right: 1.25rem;
  padding: 0.75rem;
  background: white;
  border: 1px solid var(--border);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.25s, transform 0.25s;
}

.client-logo:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}

.client-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

@media (max-width: 768px) {
  .clients-lead { margin-top: -1rem; font-size: 0.92rem; }
  .client-logo { width: 130px; height: 95px; margin-right: 0.9rem; }
  .clients-marquee .marquee-fade { width: 60px; }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
  .marquee-wrapper { overflow-x: auto; }
}

/* ── CTA ─────────────────────────────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, #0288d1 0%, #01579b 100%);
  color: white;
  text-align: center;
  padding: 8rem 1.5rem;
}

.cta-section h2 {
  font-size: clamp(1.8rem, 5vw, 3rem);
  margin-bottom: 1.1rem;
}

.cta-section p {
  font-size: 1.1rem;
  opacity: 0.88;
  margin-bottom: 2.5rem;
}

/* ── Footer ──────────────────────────────────────────────────────────────── */
.footer { background: var(--dark); color: white; }

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding: 4rem 0 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
  height: 44px;
  margin-bottom: 1rem;
  display: block;
}

.footer-brand p {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 28ch;
}

.footer-links h4,
.footer-contact h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1.2rem;
}

.footer-links a {
  display: block;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.6rem;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-links a:hover { color: white; }

.footer-contact span,
.footer-contact a {
  display: block;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.6rem;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-contact a:hover { color: white; }

.footer-bottom { padding: 1.8rem 0; }

.footer-bottom p {
  text-align: center;
  color: rgba(255,255,255,0.28);
  font-size: 0.85rem;
}

/* ── Hero outline button ─────────────────────────────────────────────────── */
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.7);
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.25s;
}

.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: white;
}

/* ── How It Works ────────────────────────────────────────────────────────── */
.how-it-works {
  background: var(--light);
  padding: 7rem 0;
}

.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.step {
  flex: 1;
  text-align: center;
  padding: 0 2rem;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.step h3 {
  font-size: 1.25rem;
  color: var(--dark);
  margin-bottom: 0.75rem;
}

.step p {
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.7;
}

.step-divider {
  width: 80px;
  height: 2px;
  background: var(--border);
  margin-top: 28px;
  flex-shrink: 0;
  position: relative;
}

.step-divider::after {
  content: '';
  position: absolute;
  right: -5px;
  top: -4px;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--border);
  border-right: 2px solid var(--border);
  transform: rotate(45deg);
}

/* ── Product card meta (turnaround + popular badge) ──────────────────────── */
.product-card { position: relative; }

.badge-popular {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--yellow);
  color: var(--dark);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 1;
}

.card-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.55rem;
}

.turnaround {
  font-size: 0.75rem;
  color: #9ca3af;
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
}

.card-tag {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.4rem;
}

.card-tag.indoor {
  background: rgba(2, 136, 209, 0.1);
  color: var(--primary);
}

.card-tag.outdoor {
  background: rgba(234, 88, 12, 0.1);
  color: #ea580c;
}

/* ── Packages ────────────────────────────────────────────────────────────── */
.packages { background: var(--gray); }

.packages-lead {
  text-align: center;
  color: var(--text);
  font-size: 1rem;
  margin-top: -2.5rem;
  margin-bottom: 3.5rem;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: start;
}

.package-card {
  background: white;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  border: 2px solid var(--border);
  position: relative;
  transition: box-shadow 0.3s;
}

.package-card:hover { box-shadow: 0 12px 36px rgba(0,0,0,0.1); }

.package-card.package-featured {
  border-color: var(--primary);
  box-shadow: 0 8px 32px rgba(2, 136, 209, 0.15);
}

.package-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.package-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.package-card h3 {
  font-size: 1.7rem;
  color: var(--dark);
  margin-bottom: 0.4rem;
}

.package-for {
  font-size: 0.85rem;
  color: #9ca3af;
  margin-bottom: 1.5rem;
}

.package-items {
  list-style: none;
  margin-bottom: 1.75rem;
}

.package-items li {
  font-size: 0.92rem;
  color: var(--text);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.package-items li:last-child { border-bottom: none; }

.package-items li::before {
  content: '✓';
  color: var(--primary);
  font-weight: 700;
  flex-shrink: 0;
}

.package-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1.25rem;
}

.package-featured .package-price { color: var(--primary); }

.btn-package {
  display: block;
  text-align: center;
  width: 100%;
  padding: 0.85rem;
  border-radius: 50px;
  border: 2px solid var(--primary);
  color: var(--primary);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s;
}

.btn-package:hover {
  background: var(--primary);
  color: white;
}

.btn-package-featured {
  display: block;
  text-align: center;
  width: 100%;
  padding: 0.85rem;
  border-radius: 50px;
  background: var(--primary);
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s;
}

.btn-package-featured:hover { background: #0277bd; }

/* ── FAQ ─────────────────────────────────────────────────────────────────── */
.faq { background: var(--light); }

.faq-list {
  max-width: 740px;
  margin: 0 auto;
}

.faq-item { border-bottom: 1px solid var(--border); }

.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.4rem 0;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 0.2s;
}

.faq-q:hover { color: var(--primary); }

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gray);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.3s, background 0.2s;
  line-height: 1;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--primary);
  color: white;
}

.faq-a {
  display: none;
  padding: 0 2rem 1.4rem 0;
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.75;
}

.faq-item.open .faq-a { display: block; }

/* ── Footer: updated for 4-column layout ─────────────────────────────────── */
.footer-inner {
  grid-template-columns: 2fr 1fr 1fr 1fr;
}

/* ── Responsive: Tablet ──────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-brand p { max-width: 100%; }

  .steps { flex-direction: column; align-items: center; }
  .step-divider { width: 2px; height: 40px; margin: 0 auto; }
  .step-divider::after {
    right: -4px;
    top: auto;
    bottom: -5px;
    border-top: none;
    border-bottom: 2px solid var(--border);
    transform: rotate(135deg);
  }

  .packages-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }

  .catalog-tools { flex-direction: column; align-items: stretch; gap: 0.75rem; }
  .catalog-tools .filter-tabs { flex: none; }
  .product-search { flex: none; }
}

/* ── Responsive: Mobile ──────────────────────────────────────────────────── */
@media (max-width: 768px) {
  /* Header */
  .nav-toggle { display: flex; }
  .logo-wordmark { display: none; }
  .logo-badge { padding: 4px 6px; }
  .logo-img { height: 36px; }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--dark);
    padding: 0.5rem 1.5rem 1.5rem;
    gap: 0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
    border-top: 1px solid rgba(255,255,255,0.1);
  }

  .nav.open { display: flex; }

  .nav a {
    padding: 0.9rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-size: 1rem;
    color: rgba(255,255,255,0.85);
  }

  .nav a:last-child { border-bottom: none; }

  .btn-header { display: none; }

  /* Hero */
  .hero { height: 78vh; min-height: 480px; }

  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 0.85rem;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  /* Sections */
  .section { padding: 3.5rem 0; }
  .how-it-works { padding: 3.5rem 0; }
  .section-title { margin-bottom: 2rem; }
  .cta-section { padding: 4rem 1.5rem; }

  /* Trust bar — 2×2 grid */
  .trust-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 0.5rem;
    padding: 0 0.5rem;
  }

  /* Products */
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .product-card img { height: 160px; }

  /* Catalog */
  .products-lead { margin-top: -1rem; font-size: 0.92rem; }
  .catalog-tools { padding: 0.75rem 0; }
  .catalog-tools .filter-tabs {
    margin-left: -1.5rem;
    margin-right: -1.5rem;
    padding: 0 1.5rem;
  }
  .product-category + .product-category { margin-top: 3rem; }
  .category-title { font-size: 1.35rem; }
  .card-content { padding: 1rem; }
  .product-card h3 { font-size: 1.05rem; }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  /* Footer */
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 3rem 0 2rem;
  }

  .footer-brand { grid-column: 1; }
}

@media (max-width: 480px) {
  /* Single-column products on very small phones */
  .product-grid { grid-template-columns: 1fr; }
  .product-card img { height: 200px; }

  /* Section spacing */
  .section { padding: 3rem 0; }
  .how-it-works { padding: 3rem 0; }
  .cta-section { padding: 3rem 1rem; }

  /* Trust bar — single column */
  .trust-inner {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; }

  /* Floating WhatsApp — smaller on tiny screens */
  .whatsapp-float { width: 52px; height: 52px; bottom: 16px; right: 16px; }
  .whatsapp-float svg { width: 28px; height: 28px; }
}
