:root {
  --bg: #f6f7f9;
  --bg-deep: #07080d;
  --panel: rgba(255, 255, 255, 0.84);
  --panel-solid: #ffffff;
  --text: #111318;
  --muted: #646b78;
  --line: rgba(17, 19, 24, 0.1);
  --dark-line: rgba(255, 255, 255, 0.14);
  --accent: #0ea36f;
  --accent-dark: #08734f;
  --gold: #d8b45a;
  --shadow: 0 20px 60px rgba(8, 11, 18, 0.12);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 80% 0%, rgba(216, 180, 90, 0.14), transparent 28rem),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 48%, #ffffff 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

.why-formex-bar {
  position: sticky;
  top: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  min-height: 48px;
  padding: 8px max(clamp(18px, 4vw, 28px), calc((100vw - 1180px) / 2 + 28px));
  color: #fff;
  background:
    radial-gradient(circle at 8% 50%, rgba(216, 180, 90, 0.26), transparent 16rem),
    linear-gradient(90deg, #07080d, #151a24 56%, #07080d);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 34px rgba(8, 11, 18, 0.16);
  overflow: hidden;
}

.why-formex-bar strong {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border: 1px solid rgba(216, 180, 90, 0.42);
  border-radius: 999px;
  padding: 6px 12px;
  color: #f7e8b4;
  background: rgba(216, 180, 90, 0.1);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.why-formex-marquee {
  position: relative;
  min-width: 0;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.why-formex-track {
  display: flex;
  width: max-content;
  gap: 10px;
  animation: whyFormexMarquee 46s linear infinite;
}

.why-formex-track span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 6px 12px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.82rem;
  font-weight: 800;
  white-space: nowrap;
}

.why-formex-bar:hover .why-formex-track {
  animation-play-state: paused;
}

.site-header {
  position: sticky;
  top: 48px;
  z-index: 30;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  width: 18px;
  height: 24px;
  border-radius: 6px;
  background: linear-gradient(145deg, #12151d, #4a5060);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.25);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: #111318;
  transition: transform 0.25s ease;
}

.menu-toggle.open span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.menu-toggle.open span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.nav-link,
.nav-whatsapp {
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 0.9rem;
  font-weight: 700;
}

.nav-link {
  color: var(--muted);
}

.nav-whatsapp {
  color: #fff;
  background: var(--accent);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  align-items: center;
  gap: clamp(32px, 7vw, 90px);
  max-width: 1180px;
  min-height: calc(100vh - 120px);
  margin: 0 auto;
  padding: clamp(54px, 9vw, 118px) clamp(18px, 4vw, 28px) 70px;
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 20px;
  font-size: clamp(3rem, 8vw, 6.4rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-text {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(1.02rem, 2vw, 1.26rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  padding: 14px 20px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover,
.product-card:hover {
  transform: translateY(-3px);
}

.btn-primary {
  color: #fff;
  background: #111318;
  box-shadow: 0 16px 34px rgba(17, 19, 24, 0.18);
}

.btn-secondary {
  color: #fff;
  background: var(--accent);
  box-shadow: 0 16px 34px rgba(14, 163, 111, 0.2);
}

.btn-outline {
  color: #111318;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.74);
}

.hero-visual {
  position: relative;
  display: grid;
  min-height: 540px;
  place-items: center;
  border-radius: 34px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0)),
    radial-gradient(circle at 70% 30%, rgba(216, 180, 90, 0.42), transparent 14rem),
    #080a10;
  box-shadow: var(--shadow);
}

.hero-carousel {
  position: relative;
  z-index: 2;
  width: min(76vw, 430px);
  aspect-ratio: 0.76;
  overflow: hidden;
  border: 1px solid var(--dark-line);
  border-radius: 36px;
  background: #111318;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.42);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.04) translateX(18px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1) translateX(0);
}

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

.hero-slide::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.42)),
    radial-gradient(circle at 68% 16%, rgba(255, 255, 255, 0.24), transparent 9rem);
}

.carousel-dots {
  position: absolute;
  z-index: 4;
  bottom: 82px;
  left: 50%;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}

.carousel-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}

.carousel-dot.active {
  width: 28px;
  background: #fff;
}

.hero-glow,
.floating-phone {
  position: absolute;
  pointer-events: none;
}

.hero-glow {
  z-index: 1;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  filter: blur(26px);
  opacity: 0.48;
}

.hero-glow-one {
  top: 46px;
  right: 34px;
  background: rgba(216, 180, 90, 0.68);
  animation: driftGlow 7s ease-in-out infinite;
}

.hero-glow-two {
  left: 22px;
  bottom: 54px;
  background: rgba(14, 163, 111, 0.4);
  animation: driftGlow 8s ease-in-out infinite reverse;
}

.floating-phone {
  z-index: 3;
  width: 76px;
  height: 138px;
  border: 5px solid rgba(255, 255, 255, 0.22);
  border-radius: 18px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.02));
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.28);
}

.floating-phone-one {
  top: 64px;
  left: 42px;
  transform: rotate(-13deg);
  animation: floatShape 5.5s ease-in-out infinite;
}

.floating-phone-two {
  right: 48px;
  bottom: 110px;
  width: 62px;
  height: 112px;
  transform: rotate(15deg);
  animation: floatShape 6.2s ease-in-out infinite reverse;
}

.phone-stack {
  position: relative;
  width: min(72vw, 360px);
  height: 480px;
}

.phone {
  position: absolute;
  width: 220px;
  height: 430px;
  border-radius: 42px;
  border: 9px solid #181b23;
  background: #111318;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.38);
}

.phone-back {
  left: 6px;
  top: 42px;
  transform: rotate(-12deg);
  background:
    radial-gradient(circle at 54px 54px, #151821 0 18px, #2e3340 19px 27px, transparent 28px),
    radial-gradient(circle at 54px 112px, #151821 0 18px, #2e3340 19px 27px, transparent 28px),
    radial-gradient(circle at 112px 54px, #151821 0 18px, #2e3340 19px 27px, transparent 28px),
    linear-gradient(145deg, #e7e0d2, #9eabb8);
}

.phone-front {
  right: 16px;
  top: 12px;
  transform: rotate(8deg);
  background:
    radial-gradient(circle at 48% 32%, rgba(216, 180, 90, 0.52), transparent 7rem),
    linear-gradient(165deg, #111318 0%, #20263a 42%, #0a0c12 100%);
  animation: floatPhone 5s ease-in-out infinite;
}

.dynamic-island {
  position: absolute;
  top: 18px;
  left: 50%;
  width: 82px;
  height: 24px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #040508;
}

.screen-glow {
  position: absolute;
  inset: 74px 30px auto;
  height: 150px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.24), transparent);
  filter: blur(8px);
}

.hero-note {
  position: absolute;
  right: 20px;
  bottom: 20px;
  display: grid;
  gap: 4px;
  max-width: 220px;
  padding: 16px;
  color: #fff;
  border: 1px solid var(--dark-line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.hero-note span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.82rem;
}

.filters-section,
.category-section,
.shop-section,
.steps-section,
.testimonials-section,
.faq-section,
.final-cta {
  max-width: 1180px;
  margin: 0 auto;
  padding: 70px clamp(18px, 4vw, 28px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 24px;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.05;
}

.section-heading p:last-child {
  color: var(--muted);
}

.product-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--panel);
}

.tab {
  min-height: 42px;
  padding: 10px 16px;
  border: 0;
  border-radius: 999px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-weight: 800;
}

.tab.active {
  color: #fff;
  background: #111318;
}

.search-wrap {
  flex: 0 1 360px;
}

.search-wrap input {
  width: 100%;
  min-height: 54px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  outline: none;
  background: rgba(255, 255, 255, 0.86);
}

.search-wrap input:focus {
  border-color: rgba(14, 163, 111, 0.55);
  box-shadow: 0 0 0 4px rgba(14, 163, 111, 0.12);
}

.results-meta {
  min-height: 24px;
  margin-bottom: 20px;
  color: var(--muted);
  font-weight: 700;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--panel-solid);
  box-shadow: 0 12px 38px rgba(8, 11, 18, 0.08);
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease, box-shadow 0.2s ease;
}

.product-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.product-card.is-visible:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 48px rgba(8, 11, 18, 0.13);
}

.gallery {
  padding: 14px;
  background: linear-gradient(145deg, #f8f9fb, #e9edf2);
}

.main-image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 16px;
  background: #dfe4eb;
}

.thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 8px;
}

.thumb {
  width: 100%;
  aspect-ratio: 1;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 11px;
  overflow: hidden;
  background: #eef1f5;
  cursor: pointer;
}

.thumb.active {
  border-color: var(--accent);
}

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

.card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px;
}

.condition {
  width: fit-content;
  margin-bottom: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  color: #15120a;
  background: rgba(216, 180, 90, 0.22);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.condition.brand-new {
  color: #053a29;
  background: rgba(14, 163, 111, 0.14);
}

.product-card h3 {
  margin-bottom: 8px;
  font-size: 1.35rem;
}

.detail-list {
  display: grid;
  gap: 8px;
  margin: 0 0 18px;
  padding: 0;
  color: var(--muted);
  list-style: none;
  line-height: 1.45;
}

.detail-list strong {
  color: #111318;
}

.price-note {
  margin: auto 0 16px;
  color: #111318;
  font-weight: 800;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  border-radius: 14px;
  color: #fff;
  background: var(--accent);
  font-weight: 900;
  transition: background 0.2s ease, transform 0.2s ease;
}

.whatsapp-btn:hover {
  background: var(--accent-dark);
}

.empty-state {
  grid-column: 1 / -1;
  padding: 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  background: var(--panel-solid);
  text-align: center;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.category-card {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: clamp(24px, 4vw, 34px);
  color: #fff;
  background:
    radial-gradient(circle at 84% 22%, rgba(216, 180, 90, 0.32), transparent 13rem),
    linear-gradient(145deg, #090b10, #222936);
  box-shadow: 0 18px 48px rgba(8, 11, 18, 0.14);
  cursor: pointer;
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.65s ease, transform 0.65s ease, box-shadow 0.25s ease;
}

.category-card::after {
  position: absolute;
  right: 28px;
  bottom: -72px;
  width: 205px;
  height: 245px;
  border: 0;
  border-radius: 30px;
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.18)), url("images/16-1.jpg") center / cover;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  transform: rotate(10deg);
}

.category-card::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(90deg, rgba(8, 10, 16, 0.86) 0%, rgba(8, 10, 16, 0.5) 54%, rgba(8, 10, 16, 0.08) 100%);
  pointer-events: none;
}

.category-card:nth-child(2) {
  background:
    radial-gradient(circle at 78% 24%, rgba(14, 163, 111, 0.34), transparent 14rem),
    linear-gradient(145deg, #111318, #404958);
}

.category-card:nth-child(2)::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.18)), url("images/brand17.jpg") center / cover;
}

.category-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 70px rgba(8, 11, 18, 0.22);
}

.category-card span {
  position: relative;
  z-index: 2;
  display: inline-flex;
  margin-bottom: 36px;
  border: 1px solid var(--dark-line);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.category-card h3 {
  position: relative;
  z-index: 2;
  max-width: 340px;
  font-size: clamp(1.7rem, 4vw, 2.55rem);
}

.category-card p {
  position: relative;
  z-index: 2;
  max-width: 340px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.category-card button {
  position: relative;
  z-index: 2;
  min-height: 44px;
  margin-top: 12px;
  border: 0;
  border-radius: 999px;
  padding: 10px 15px;
  color: #111318;
  background: #fff;
  cursor: pointer;
  font-weight: 900;
}

.steps,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.step,
.testimonial-card,
.faq-item {
  min-width: 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.84);
}

.step,
.shop-section,
.reveal,
.testimonial-card,
.faq-item {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.step.is-visible,
.shop-section.is-visible,
.reveal.is-visible,
.testimonial-card.is-visible,
.faq-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.step span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: #111318;
  font-weight: 900;
}

.step h3 {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.step p,
.footer p {
  color: var(--muted);
  line-height: 1.6;
}

.shop-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 1.22fr);
  align-items: center;
  gap: clamp(24px, 5vw, 58px);
}

.shop-copy p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.7;
}

.shop-copy .btn {
  margin-top: 12px;
}

.shop-gallery {
  display: block;
}

.shop-gallery img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.66), rgba(255, 255, 255, 0)),
    linear-gradient(135deg, #111318, #596271);
  box-shadow: 0 14px 38px rgba(8, 11, 18, 0.1);
}

.shop-gallery img:first-child {
  min-height: 380px;
}

.steps {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.testimonial-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonial-card p {
  color: var(--muted);
  line-height: 1.7;
}

.testimonial-card strong {
  display: block;
  margin-top: 18px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  padding: 0;
  overflow: hidden;
}

.faq-item button {
  display: flex;
  width: 100%;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  border: 0;
  padding: 18px 20px;
  color: #111318;
  background: transparent;
  cursor: pointer;
  font-weight: 900;
  text-align: left;
}

.faq-item button::after {
  content: "+";
  font-size: 1.4rem;
}

.faq-item.open button::after {
  content: "-";
}

.faq-item p {
  max-height: 0;
  margin: 0;
  padding: 0 20px;
  overflow: hidden;
  color: var(--muted);
  line-height: 1.7;
  transition: max-height 0.25s ease, padding 0.25s ease;
}

.faq-item.open p {
  max-height: 180px;
  padding: 0 20px 20px;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  margin-top: 36px;
  border-radius: 32px;
  color: #fff;
  background:
    radial-gradient(circle at 82% 16%, rgba(14, 163, 111, 0.42), transparent 16rem),
    linear-gradient(145deg, #090b10, #242b38);
  box-shadow: 0 24px 70px rgba(8, 11, 18, 0.18);
}

.final-cta h2 {
  margin-bottom: 10px;
}

.final-cta p:not(.eyebrow) {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

.sticky-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  padding: 10px 16px 10px 10px;
  border-radius: 999px;
  color: #fff;
  background: var(--accent);
  box-shadow: 0 18px 44px rgba(14, 163, 111, 0.34);
  animation: pulseWhatsapp 2.4s ease-in-out infinite;
}

.sticky-whatsapp span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 999px;
  color: var(--accent);
  background: #fff;
  font-weight: 900;
}

.sticky-whatsapp strong {
  font-size: 0.92rem;
}

.footer {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(220px, 0.7fr) minmax(280px, 0.9fr);
  gap: 24px;
  max-width: none;
  margin: 70px 0 0;
  padding: 54px max(clamp(18px, 4vw, 28px), calc((100vw - 1180px) / 2 + 28px)) 74px;
  color: #fff;
  background:
    radial-gradient(circle at 80% 10%, rgba(216, 180, 90, 0.2), transparent 24rem),
    #07080d;
}

.footer-brand {
  margin-bottom: 12px;
}

.footer p {
  color: rgba(255, 255, 255, 0.68);
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.footer-actions a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  border-radius: 999px;
  padding: 10px 14px;
  color: #111318;
  background: #fff;
  font-weight: 900;
}

.footer-panel {
  padding: 20px;
  border: 1px solid var(--dark-line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
}

.footer-title {
  margin-bottom: 14px;
}

.footer-panel ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.72);
  list-style: none;
}

address {
  display: grid;
  gap: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-style: normal;
  line-height: 1.5;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@keyframes floatPhone {
  0%,
  100% {
    transform: translateY(0) rotate(8deg);
  }
  50% {
    transform: translateY(-12px) rotate(8deg);
  }
}

@keyframes whyFormexMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes pulseWhatsapp {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-5px) scale(1.03);
  }
}

@keyframes driftGlow {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(-16px, 12px, 0) scale(1.08);
  }
}

@keyframes floatShape {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -15px;
  }
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-visual {
    min-height: 460px;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steps,
  .testimonial-grid,
  .shop-section {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .shop-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .why-formex-bar {
    grid-template-columns: 1fr;
    gap: 6px;
    min-height: 76px;
    padding-block: 8px;
  }

  .why-formex-bar strong {
    width: fit-content;
    min-height: 26px;
    font-size: 0.7rem;
  }

  .why-formex-track {
    animation-duration: 58s;
  }

  .why-formex-track span {
    min-height: 28px;
    font-size: 0.76rem;
  }

  .site-header {
    top: 76px;
    padding-inline: 14px;
  }

  .menu-toggle {
    display: block;
  }

  .nav {
    position: relative;
  }

  .nav-actions {
    position: absolute;
    top: calc(100% + 13px);
    right: 0;
    left: 0;
    display: grid;
    gap: 8px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 50px rgba(8, 11, 18, 0.12);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.22s ease, transform 0.22s ease;
  }

  .nav-actions.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .brand span:last-child {
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .nav-link,
  .nav-whatsapp {
    display: flex;
    justify-content: center;
  }

  h1 {
    font-size: 3.15rem;
  }

  .hero {
    padding-top: 44px;
    min-height: auto;
  }

  .hero-visual {
    min-height: 390px;
    border-radius: 24px;
  }

  .hero-carousel {
    width: min(82vw, 310px);
    border-radius: 28px;
  }

  .carousel-dots {
    bottom: 74px;
  }

  .floating-phone-one {
    left: 18px;
  }

  .floating-phone-two {
    right: 18px;
  }

  .phone-stack {
    width: 280px;
    height: 370px;
  }

  .phone {
    width: 170px;
    height: 326px;
    border-radius: 34px;
    border-width: 7px;
  }

  .hero-note {
    left: 16px;
    right: 16px;
    max-width: none;
  }

  .product-controls {
    align-items: stretch;
    flex-direction: column;
  }

  .tabs {
    width: 100%;
    border-radius: 18px;
  }

  .tab {
    flex: 1;
    min-width: 92px;
  }

  .search-wrap {
    flex-basis: auto;
  }

  .product-grid,
  .steps,
  .category-grid,
  .testimonial-grid,
  .final-cta,
  .shop-gallery,
  .footer {
    grid-template-columns: 1fr;
  }

  .final-cta {
    border-radius: 24px;
  }

  .shop-gallery img:first-child {
    min-height: 240px;
  }

  .footer {
    padding-bottom: 96px;
  }

  .sticky-whatsapp {
    right: 12px;
    bottom: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Formex Communications premium local SEO sections */
.local-section,
.map-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 70px clamp(18px, 4vw, 28px);
}

.local-card {
  padding: clamp(26px, 5vw, 48px);
  border: 1px solid var(--line);
  border-radius: 32px;
  color: #fff;
  background:
    radial-gradient(circle at 88% 12%, rgba(216, 180, 90, 0.34), transparent 18rem),
    linear-gradient(145deg, #080a10, #242b38);
  box-shadow: 0 24px 70px rgba(8, 11, 18, 0.16);
}

.local-card p:not(.eyebrow) {
  max-width: 830px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.05rem;
  line-height: 1.8;
}

.local-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.local-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 38px rgba(8, 11, 18, 0.06);
}

.local-grid p {
  color: var(--muted);
  line-height: 1.7;
}

.category-grid-six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.category-grid-six .category-card {
  min-height: 230px;
}

.category-grid-six .category-card::after {
  width: 150px;
  height: 185px;
  opacity: 0.82;
}

.map-section iframe {
  display: block;
  width: 100%;
  min-height: 420px;
  border: 0;
  border-radius: 28px;
  box-shadow: 0 18px 48px rgba(8, 11, 18, 0.12);
}

@media (max-width: 980px) {
  .category-grid-six {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .local-grid,
  .category-grid-six,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .map-section iframe {
    min-height: 320px;
  }
}

/* Premium conversion upgrades */
.counter-section,
.trust-section,
.deals-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 34px clamp(18px, 4vw, 28px);
}

.counter-section {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: -34px;
  position: relative;
  z-index: 4;
}

.counter-section article {
  padding: 20px;
  border: 1px solid rgba(216, 180, 90, 0.2);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 45px rgba(8, 11, 18, 0.1);
  backdrop-filter: blur(14px);
}

.counter-section strong {
  display: block;
  margin-bottom: 4px;
  font-size: clamp(1.55rem, 4vw, 2.4rem);
  line-height: 1;
}

.counter-section span {
  color: var(--muted);
  font-weight: 800;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.trust-item {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.78));
  box-shadow: 0 14px 42px rgba(8, 11, 18, 0.08);
}

.trust-icon {
  display: inline-grid;
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  place-items: center;
  border-radius: 14px;
  color: #111318;
  background: linear-gradient(145deg, #f6e5a8, #d8b45a);
  font-weight: 900;
}

.trust-item p { color: var(--muted); line-height: 1.65; }

.card-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0 0 12px;
}

.card-badges span,
.verified {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  padding: 6px 9px;
  color: #064832;
  background: rgba(14, 163, 111, 0.12);
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.deals-section {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: 20px;
  align-items: stretch;
}

.deal-copy,
.deal-cards article {
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 30px;
  color: #fff;
  background:
    radial-gradient(circle at 88% 0%, rgba(216,180,90,.34), transparent 16rem),
    linear-gradient(145deg, #07080d, #222a38);
  box-shadow: 0 24px 70px rgba(8, 11, 18, .18);
}

.deal-copy { padding: clamp(26px, 5vw, 44px); }
.deal-copy p:not(.eyebrow) { color: rgba(255,255,255,.72); line-height: 1.75; }
.deal-cards { display: grid; gap: 12px; }
.deal-cards article { padding: 22px; background: linear-gradient(145deg, #111318, #293242); }
.deal-cards span { color: #f6e5a8; font-weight: 900; text-transform: uppercase; font-size: .74rem; letter-spacing: .1em; }
.deal-cards p { margin: 0; color: rgba(255,255,255,.7); }

.sticky-call {
  position: fixed;
  right: 18px;
  bottom: 86px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 10px 16px 10px 10px;
  border-radius: 999px;
  color: #111318;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 18px 44px rgba(8, 11, 18, 0.18);
  font-weight: 900;
}

.sticky-call span { display: inline-grid; width: 34px; height: 34px; place-items: center; border-radius: 999px; background: #111318; color: #fff; }

.mobile-bottom-cta { display: none; }

@media (max-width: 680px) {
  .counter-section,
  .trust-grid,
  .deals-section { grid-template-columns: 1fr; }
  .counter-section { margin-top: 0; padding-top: 10px; }
  .filters-section, .category-section, .shop-section, .steps-section, .testimonials-section, .faq-section, .final-cta, .local-section, .map-section { padding-block: 46px; }
  .product-grid { gap: 14px; }
  .sticky-call, .sticky-whatsapp { display: none; }
  .mobile-bottom-cta {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: 10px;
    z-index: 50;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(255,255,255,.94);
    box-shadow: 0 18px 50px rgba(8, 11, 18, 0.18);
    backdrop-filter: blur(16px);
  }
  .mobile-bottom-cta a { display: grid; min-height: 44px; place-items: center; border-radius: 14px; background: #111318; color: #fff; font-size: .85rem; font-weight: 900; }
  .mobile-bottom-cta a:nth-child(2) { background: var(--accent); }
}

/* Premium polish pass */
.why-formex-bar {
  min-height: 54px;
  gap: 24px;
  background:
    radial-gradient(circle at 9% 50%, rgba(255, 214, 102, 0.36), transparent 18rem),
    linear-gradient(90deg, #05060a 0%, #111827 42%, #052e25 100%);
  border-bottom: 1px solid rgba(246, 229, 168, 0.18);
}

.why-formex-bar strong {
  min-height: 34px;
  padding: 8px 16px;
  color: #15120a;
  background: linear-gradient(135deg, #fff4bd, #d8b45a 56%, #f8e7a8);
  border-color: rgba(255, 244, 189, 0.74);
  box-shadow: 0 0 0 4px rgba(216, 180, 90, 0.13), 0 10px 26px rgba(216, 180, 90, 0.24);
}

.why-formex-track {
  gap: 18px;
  animation-duration: 64s;
}

.why-formex-track span {
  min-height: 34px;
  padding: 8px 16px;
  color: rgba(255, 255, 255, 0.94);
  background: linear-gradient(180deg, rgba(255,255,255,.14), rgba(255,255,255,.055));
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12);
}

.why-formex-track span::before {
  content: "✦";
  margin-right: 9px;
  color: #f6e5a8;
  font-size: .74rem;
}

.site-header {
  top: 54px;
}

.hero,
.category-section,
.filters-section,
.trust-section,
.shop-section,
.testimonials-section,
.final-cta,
.local-section,
.map-section,
.steps-section {
  scroll-margin-top: 124px;
}

.category-card,
.product-card,
.trust-item,
.step,
.testimonial-card,
.local-grid article {
  border-color: rgba(17, 19, 24, 0.08);
}

.category-card button {
  max-width: 100%;
  white-space: normal;
  text-align: center;
  box-shadow: 0 12px 26px rgba(0,0,0,.16);
}

.category-card button:hover,
.btn:hover,
.footer-whatsapp:hover,
.footer-actions a:hover {
  transform: translateY(-2px);
}

.product-card,
.trust-item,
.step,
.testimonial-card,
.local-grid article {
  box-shadow: 0 16px 44px rgba(8, 11, 18, 0.075);
}

.footer {
  grid-template-columns: minmax(260px, 1.45fr) repeat(3, minmax(190px, .75fr));
  align-items: stretch;
  gap: 18px;
  padding-top: 64px;
  background:
    radial-gradient(circle at 12% 0%, rgba(216, 180, 90, 0.22), transparent 24rem),
    radial-gradient(circle at 88% 18%, rgba(14, 163, 111, 0.24), transparent 22rem),
    linear-gradient(135deg, #05060a 0%, #101722 48%, #050907 100%);
}

.footer-main,
.footer-panel {
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.045));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 22px 60px rgba(0,0,0,.18);
}

.footer-main {
  padding: 24px;
}

.footer p {
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.74);
}

.footer-whatsapp {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 17px;
  color: #fff;
  background: linear-gradient(135deg, #0ea36f, #10b981);
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(14, 163, 111, .25);
  transition: transform .2s ease, box-shadow .2s ease;
}

.footer-panel a {
  color: inherit;
}

.footer-panel li,
.footer-panel span {
  color: rgba(255,255,255,.76);
}

.footer-panel li a:hover,
.footer-panel a:hover {
  color: #f6e5a8;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding-top: 8px;
  color: rgba(255,255,255,.58);
  font-size: .9rem;
}

@media (max-width: 980px) {
  .footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .why-formex-bar {
    min-height: 82px;
  }

  .site-header {
    top: 82px;
  }

  .why-formex-track {
    gap: 14px;
    animation-duration: 72s;
  }

  .why-formex-track span {
    padding-inline: 14px;
    font-size: .78rem;
  }

  .footer {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .footer-bottom {
    display: grid;
  }
}

/* Premium blog and GEO/AI SEO content */
.blog-section,
.blog-page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 70px clamp(18px, 4vw, 28px);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.blog-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--panel-solid);
  box-shadow: 0 18px 48px rgba(8, 11, 18, 0.08);
  transition: transform .22s ease, box-shadow .22s ease;
}

.blog-card:hover { transform: translateY(-6px); box-shadow: 0 26px 70px rgba(8, 11, 18, 0.14); }
.blog-card img { display: block; width: 100%; aspect-ratio: 16 / 10; object-fit: cover; background: #e8edf2; }
.blog-card > div { display: flex; flex: 1; flex-direction: column; padding: 20px; }
.blog-tag { width: fit-content; margin-bottom: 13px; border-radius: 999px; padding: 7px 10px; color: #053a29; background: rgba(14, 163, 111, 0.12); font-size: .72rem; font-weight: 900; text-transform: uppercase; letter-spacing: .06em; }
.blog-card h3 { font-size: 1.35rem; line-height: 1.18; }
.blog-card p { color: var(--muted); line-height: 1.65; }
.blog-meta { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: auto; color: var(--muted); font-weight: 800; }
.blog-meta a { display: inline-flex; min-height: 42px; align-items: center; border-radius: 999px; padding: 10px 14px; color: #fff; background: #111318; }

.blog-hero { padding-bottom: 32px; }
.blog-breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; color: var(--muted); font-weight: 800; }
.blog-hero h1 { max-width: 920px; font-size: clamp(2.45rem, 6vw, 4.8rem); }
.blog-author { color: var(--muted); font-weight: 800; }
.blog-layout { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 28px; align-items: start; }
.blog-content { padding: clamp(22px, 4vw, 42px); border: 1px solid var(--line); border-radius: 32px; background: rgba(255,255,255,.92); box-shadow: 0 18px 48px rgba(8, 11, 18, 0.08); }
.blog-content h2 { margin-top: 34px; font-size: clamp(1.65rem, 3vw, 2.35rem); }
.blog-content h3 { margin-top: 22px; font-size: 1.2rem; }
.blog-content p, .blog-content li { color: var(--muted); line-height: 1.8; }
.blog-content a { color: var(--accent-dark); font-weight: 900; }
.answer-box, .takeaways, .blog-cta, .blog-sidebar { border: 1px solid rgba(14,163,111,.18); border-radius: 24px; padding: 22px; background: linear-gradient(180deg, rgba(14,163,111,.08), rgba(216,180,90,.08)); }
.takeaways ul { margin-bottom: 0; }
.blog-table { width: 100%; border-collapse: collapse; margin: 18px 0; overflow: hidden; border-radius: 18px; }
.blog-table th, .blog-table td { padding: 14px; border: 1px solid var(--line); text-align: left; vertical-align: top; }
.blog-table th { color: #fff; background: #111318; }
.blog-cta { margin-top: 34px; color: #fff; background: radial-gradient(circle at 85% 0%, rgba(216,180,90,.36), transparent 14rem), linear-gradient(145deg, #080a10, #1f2937); }
.blog-cta p { color: rgba(255,255,255,.75); }
.blog-sidebar { position: sticky; top: 142px; display: grid; gap: 12px; background: #fff; }
.blog-sidebar a { color: var(--accent-dark); font-weight: 900; }
.blog-faq details { border-bottom: 1px solid var(--line); padding: 14px 0; }
.blog-faq summary { cursor: pointer; font-weight: 900; }
@media (max-width: 980px) { .blog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } .blog-layout { grid-template-columns: 1fr; } .blog-sidebar { position: static; } }
@media (max-width: 680px) { .blog-grid { grid-template-columns: 1fr; } .blog-section, .blog-page { padding-block: 46px; } .blog-content { border-radius: 24px; } }
