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

:root {
  --red: #e63946;
  --dark: #111827;
  --mid: #374151;
  --light: #6b7280;
  --bg: #ffffff;
  --bg2: #f9fafb;
  --border: #e5e7eb;
  --radius: 16px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--dark);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ── NAVBAR ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 8px rgba(0,0,0,.06);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon-fallback svg { display: block; }

.logo-text-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-main {
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 2px;
  color: var(--dark);
}

.logo-sub {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--red);
}

.logo-tag {
  font-size: 7px;
  font-weight: 500;
  letter-spacing: 1.5px;
  color: var(--light);
  text-transform: uppercase;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--mid);
  padding: 6px 12px;
  border-radius: 8px;
  transition: color .2s, background .2s;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--dark);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: .3s;
}

/* ── MAIN / APP ── */
#app { flex: 1; }

/* ── PAGE HERO HEADER ── */
.page-hero {
  text-align: center;
  padding: 100px 24px 60px;
}

.page-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--dark);
}

.page-hero h1 span {
  color: transparent;
  -webkit-text-stroke: 1px;
}

.page-hero p {
  margin-top: 20px;
  font-size: 18px;
  color: var(--light);
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* ── HOME PAGE ── */
.home-hero {
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px;
  gap: 60px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  padding: 8px 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--mid);
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}

.hero-title {
  font-size: clamp(3rem, 5.5vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--dark);
  margin-bottom: 24px;
}

.hero-title .red { color: var(--red); }

.hero-text {
  font-size: 17px;
  color: var(--light);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 40px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--dark);
  color: #fff;
  padding: 14px 32px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s, transform .2s;
}

.btn-primary:hover {
  background: #000;
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--dark);
  padding: 14px 32px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid var(--dark);
  transition: .2s;
  margin-left: 16px;
}

.btn-outline:hover {
  background: var(--dark);
  color: #fff;
}

.hero-image {
  border-radius: 20px;
  overflow: hidden;
  background: var(--bg2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 20px;
  max-height: 520px;
}

/* Home features strip */
.features-strip {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 24px;
}

.features-strip .inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.feature-item {
  text-align: center;
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 24px;
}

.feature-item h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.feature-item p {
  font-size: 13px;
  color: var(--light);
  line-height: 1.6;
}

/* Home products preview */
.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
}

.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-sub {
  font-size: 16px;
  color: var(--light);
  max-width: 560px;
  line-height: 1.7;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

/* Generic card */
.card {
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  background: #fff;
  overflow: hidden;
  transition: box-shadow .2s, transform .2s;
}

.card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,.10);
  transform: translateY(-4px);
}

.card-img {
  aspect-ratio: 4/3;
  background: var(--bg2);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-body {
  padding: 20px 24px 24px;
}

.card-body h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 6px;
}

.card-body p {
  font-size: 14px;
  color: var(--light);
  line-height: 1.6;
}

/* ── ABOUT PAGE ── */
.about-hero-wrap {
  text-align: center;
  padding: 100px 24px 0;
  position: relative;
}

.about-hero-wrap h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 900;
  color: var(--dark);
  display: inline;
}

.about-hero-wrap h1 .ghost {
  color: #fce4e4;
  -webkit-text-stroke: 0;
}

.about-intro {
  max-width: 700px;
  margin: 20px auto 80px;
  font-size: 18px;
  color: var(--light);
  line-height: 1.75;
}

.about-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-grid.reverse { direction: rtl; }
.about-grid.reverse > * { direction: ltr; }

.about-text h2 {
  font-size: 2rem;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 16px;
}

.about-text p {
  font-size: 15px;
  color: var(--light);
  line-height: 1.8;
  margin-bottom: 12px;
}

.about-img {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--bg2);
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.values-section {
  background: var(--bg2);
  padding: 80px 24px;
}

.values-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.value-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid var(--border);
}

.value-card .icon { font-size: 32px; margin-bottom: 16px; }
.value-card h3 { font-size: 18px; font-weight: 800; margin-bottom: 10px; color: var(--dark); }
.value-card p { font-size: 14px; color: var(--light); line-height: 1.7; }

/* ── SERVICES PAGE ── */
.services-hero-wrap {
  text-align: center;
  padding: 100px 24px 0;
}

.services-hero-wrap h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 900;
  color: var(--dark);
  display: inline;
}

.services-hero-wrap h1 .purple { color: #c4b5fd; }

.services-intro {
  max-width: 620px;
  margin: 20px auto 60px;
  font-size: 18px;
  color: var(--light);
  line-height: 1.75;
}

.services-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  background: #fff;
  transition: box-shadow .2s, transform .2s;
}

.service-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,.08);
  transform: translateY(-4px);
}

.service-icon {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
  background: var(--bg2);
}

.service-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 14px;
  color: var(--light);
  line-height: 1.7;
}

/* ── RELATIVE PAGE ── */
.relative-hero {
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 80px 48px;
  background: linear-gradient(to right, rgba(0,0,0,.75) 40%, rgba(0,0,0,.3)),
    url('https://images.unsplash.com/photo-1578301978693-85fa9c0320b9?w=1400') center/cover no-repeat;
  color: #fff;
  position: relative;
}

.relative-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 100px;
  padding: 8px 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 28px;
  color: #fff;
}

.relative-hero h1 {
  font-size: clamp(2.8rem, 5.5vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 24px;
  max-width: 800px;
}

.relative-hero p {
  font-size: 18px;
  opacity: .85;
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: var(--dark);
  padding: 14px 32px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: .2s;
}

.btn-white:hover { background: #f1f5f9; transform: translateY(-2px); }

.relative-features {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* ── RELATION PAINTS PAGE ── */
.relation-hero-wrap {
  text-align: center;
  padding: 100px 24px 0;
}

.relation-hero-wrap h1 {
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 900;
  color: var(--dark);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.1;
}

.relation-intro {
  max-width: 680px;
  margin: 24px auto 80px;
  font-size: 17px;
  color: var(--light);
  line-height: 1.75;
}

/* ── FAQ PAGE ── */
.faq-hero-wrap {
  text-align: center;
  padding: 100px 24px 60px;
}

.faq-hero-wrap h1 {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 900;
  color: var(--dark);
}

.faq-hero-wrap h1 .teal { color: #5eead4; }

.faq-container {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px 100px;
}

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

.faq-question {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
}

.faq-toggle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
  transition: .2s;
  font-weight: 400;
  color: var(--mid);
}

.faq-item.open .faq-toggle { background: var(--dark); color: #fff; transform: rotate(45deg); }

.faq-answer {
  font-size: 15px;
  color: var(--light);
  line-height: 1.8;
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding-top: 16px;
}

/* ── CONTACT PAGE ── */
.contact-hero-wrap {
  text-align: center;
  padding: 100px 24px 60px;
}

.contact-hero-wrap h1 {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 900;
  color: var(--dark);
}

.contact-hero-wrap p {
  margin-top: 16px;
  font-size: 17px;
  color: var(--light);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.contact-grid {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info h2 { font-size: 24px; font-weight: 800; margin-bottom: 24px; color: var(--dark); }

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.info-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--bg2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.info-item h4 { font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.info-item p { font-size: 14px; color: var(--light); line-height: 1.6; }

.contact-form h2 { font-size: 24px; font-weight: 800; margin-bottom: 24px; color: var(--dark); }

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--mid);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  color: var(--dark);
  outline: none;
  transition: border-color .2s;
  background: #fff;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--dark);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.btn-submit {
  width: 100%;
  padding: 14px;
  background: var(--dark);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: background .2s;
}

.btn-submit:hover { background: #000; }

/* ── FOOTER ── */
.footer {
  background: #111827;
  color: #9ca3af;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 24px 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 18px;
  font-weight: 700;
  color: #e5e7eb;
  margin-bottom: 12px;
}

.footer-desc { font-size: 14px; line-height: 1.7; }

.footer-links h4,
.footer-contact h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #e5e7eb;
  margin-bottom: 20px;
}

.footer-links ul { list-style: none; }

.footer-links ul li { margin-bottom: 10px; }

.footer-links ul li a {
  color: #9ca3af;
  text-decoration: none;
  font-size: 14px;
  transition: color .2s;
}

.footer-links ul li a:hover { color: #fff; }

.footer-contact p {
  font-size: 14px;
  margin-bottom: 10px;
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid #1f2937;
  padding: 20px 24px;
  text-align: center;
  font-size: 13px;
  color: #4b5563;
}

/* ── LOGO IMAGE ── */
.logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

/* ── HERO CTAS ── */
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-call {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 100px;
  padding: 10px 20px 10px 14px;
  text-decoration: none;
  transition: border-color .2s, box-shadow .2s;
}

.btn-call:hover { border-color: var(--dark); box-shadow: 0 4px 16px rgba(0,0,0,.08); }

.call-icon { font-size: 22px; }

.btn-call div { display: flex; flex-direction: column; }

.call-label { font-size: 11px; font-weight: 600; color: var(--light); text-transform: uppercase; letter-spacing: 1px; line-height: 1; }
.call-number { font-size: 15px; font-weight: 800; color: var(--dark); line-height: 1.4; }

/* ── DIFFERENCE SECTION ── */
.difference-section { background: #fff; }

.diff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.diff-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  background: #fff;
  transition: box-shadow .2s, transform .2s;
}

.diff-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,.08); transform: translateY(-4px); }

.diff-icon { font-size: 36px; margin-bottom: 16px; }
.diff-card h3 { font-size: 16px; font-weight: 800; color: var(--dark); margin-bottom: 10px; }
.diff-card p { font-size: 14px; color: var(--light); line-height: 1.7; }

/* ── RELATION FOR LIFE BANNER ── */
.rl-banner {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  padding: 40px 24px 0;
  text-align: center;
}

.rl-script {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 2.4rem;
  color: #fff;
  margin-bottom: 32px;
  letter-spacing: 1px;
}

.rl-footer-bar {
  background: #4a1a8c;
  padding: 16px 24px;
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  font-size: 13px;
  font-weight: 600;
  color: #e9d5ff;
  letter-spacing: .5px;
}

/* ── LEADERS SECTION ── */
.leaders-section { background: #fff; }

.leaders-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.leader-card {
  border-radius: 20px;
  background: #fafafa;
  border: 1.5px solid var(--border);
  padding: 40px 28px 32px;
  text-align: center;
  transition: box-shadow .2s, transform .2s;
}

.leader-card:hover { box-shadow: 0 12px 36px rgba(0,0,0,.08); transform: translateY(-4px); }

.leader-card--featured {
  background: linear-gradient(135deg, #f5f3ff, #ede9fe);
  border-color: #c4b5fd;
}

.leader-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  color: #9ca3af;
  margin: 0 auto 20px;
}

.leader-card--featured .leader-avatar { background: #ddd6fe; color: #7c3aed; }

.leader-card h3 { font-size: 18px; font-weight: 800; color: var(--dark); margin-bottom: 6px; }
.leader-card p { font-size: 14px; color: var(--light); }

/* ── PRODUCT CARDS (Relative page) ── */
.product-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  transition: box-shadow .2s, transform .2s;
}

.product-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,.10); transform: translateY(-4px); }

.product-img-wrap {
  padding: 32px 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 220px;
}

.product-bucket {
  width: 140px;
  height: 160px;
  border-radius: 50% 50% 20% 20% / 30% 30% 20% 20%;
  border: 3px solid rgba(0,0,0,.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px 8px;
  position: relative;
  box-shadow: 4px 8px 20px rgba(0,0,0,.2), inset 0 2px 6px rgba(255,255,255,.2);
  text-align: center;
  gap: 4px;
}

.bucket-logo { margin-bottom: 4px; }

.bucket-brand {
  font-size: 9px;
  font-weight: 900;
  color: rgba(255,255,255,.9);
  letter-spacing: 1px;
  text-align: center;
  line-height: 1.2;
}

.bucket-brand span { font-size: 8px; letter-spacing: 2px; opacity: .8; }

.bucket-name {
  font-size: 10px;
  font-weight: 900;
  color: #fff;
  text-align: center;
  line-height: 1.3;
  margin-top: 4px;
}

.bucket-sub {
  font-size: 7px;
  color: rgba(255,255,255,.8);
  text-align: center;
  line-height: 1.4;
}

.bucket-badge {
  font-size: 7px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
  color: #fff;
  margin-top: 4px;
  text-align: center;
  line-height: 1.3;
}

.product-info { padding: 18px 22px 24px; border-top: 1px solid var(--border); }
.product-info h3 { font-size: 16px; font-weight: 800; color: var(--dark); margin-bottom: 6px; }
.product-info p { font-size: 13px; color: var(--light); line-height: 1.6; }

/* ── FEATURED PRODUCT (Relative page) ── */
.featured-product-section {
  background: #f9fafb;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0;
  overflow: hidden;
}

.featured-product-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

.featured-product-img {
  background: #f0f0f0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 400px;
}

.featured-product-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 40px;
}

.featured-product-img-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fp-bucket {
  width: 240px;
  height: 280px;
  border-radius: 50% 50% 24px 24px / 30% 30% 24px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 8px 16px 40px rgba(0,0,0,.25), inset 0 3px 8px rgba(255,255,255,.2);
}

.fp-bucket-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px;
  text-align: center;
}

.fp-eco-badge {
  margin-top: 10px;
  background: rgba(255,255,255,.2);
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 100px;
  padding: 3px 10px;
  font-size: 9px;
  color: #fff;
  font-weight: 600;
}

.featured-product-info {
  padding: 60px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-badge {
  display: inline-block;
  background: var(--dark);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 5px 14px;
  border-radius: 6px;
  margin-bottom: 20px;
  width: fit-content;
}

.featured-product-info h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 18px;
  line-height: 1.1;
}

.featured-product-info p {
  font-size: 16px;
  color: var(--light);
  line-height: 1.75;
  margin-bottom: 24px;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--mid);
  font-weight: 500;
}

.feature-list li::before {
  content: '✓';
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--dark);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

/* ── RP PRODUCT CARDS (Relation & Relative pages) ── */
.rp-cards-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.rp-card {
  border-radius: 14px;
  background: #fff;
  border: 1.5px solid var(--border);
  overflow: hidden;
  transition: box-shadow .2s, transform .2s;
  position: relative;
}

.rp-card::before {
  content: '';
  display: block;
  height: 4px;
  background: var(--card-border, #e5e7eb);
  border-radius: 14px 14px 0 0;
}

.rp-card:hover {
  box-shadow: 0 10px 36px rgba(0,0,0,.10);
  transform: translateY(-4px);
}

.rp-card-img {
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  min-height: 200px;
}

.rp-card-img img {
  max-width: 160px;
  max-height: 180px;
  width: 100%;
  object-fit: contain;
  filter: drop-shadow(2px 6px 12px rgba(0,0,0,.12));
}

.rp-card-body {
  padding: 16px 18px 22px;
  border-top: 1px solid var(--border);
  background: #fff;
  text-align: center;
}

.rp-card-body h3 {
  font-size: 15px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 6px;
  line-height: 1.3;
}

.rp-card-body p {
  font-size: 13px;
  color: var(--light);
  line-height: 1.5;
}

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, .45);
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, .55);
}

/* ── RESPONSIVE ── */
@media (max-width: 1200px) {
  .rp-cards-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1024px) {
  .diff-grid { grid-template-columns: repeat(2, 1fr); }
  .features-strip .inner { grid-template-columns: repeat(3, 1fr); }
  .rp-cards-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .home-hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-image { display: none; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-grid.reverse { direction: ltr; }
  .features-strip .inner { grid-template-columns: repeat(2, 1fr); }
  .cards-grid, .services-grid, .values-grid, .relative-features, .leaders-grid { grid-template-columns: 1fr; }
  .diff-grid { grid-template-columns: repeat(2, 1fr); }
  .rp-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .featured-product-inner { grid-template-columns: 1fr; }
  .featured-product-info { padding: 40px 32px; }
  .footer-container { grid-template-columns: 1fr; }
  .rl-footer-bar { gap: 20px; }
}

@media (max-width: 640px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--border); padding: 16px 24px; gap: 4px; }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .features-strip .inner { grid-template-columns: 1fr; }
  .relative-hero { padding: 48px 24px; }
  .rp-cards-grid { grid-template-columns: 1fr 1fr; padding: 40px 16px 60px; gap: 14px; }
  .diff-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--border); padding: 16px 24px; gap: 4px; }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .features-strip .inner { grid-template-columns: 1fr; }
  .relative-hero { padding: 48px 24px; }
}
