/* ===================== TOKENS ===================== */
:root {
  /* Light Peach/Salmon theme — matching storeofpets.com reference */
  --bg-main: #fce8e0;
  /* warm peach background */
  --bg-section: #fad5c8;
  /* slightly deeper peach for alternating sections */
  --bg-card: #ffffff;
  /* white cards */
  --bg-card-alt: #fff5f2;
  /* very light peach cards */
  --bg-dark: #1a0a2e;
  /* deep purple-dark for footer/CTA */

  --brand: #4a35a0;
  /* logo purple — primary brand */
  --brand-dark: #2e1f7a;
  /* darker purple */
  --brand-light: #7c5cbf;
  /* lighter purple */
  --brand-pale: #ede8f8;
  /* very pale purple tint */

  --text-primary: #1a0a2e;
  /* dark purple-black */
  --text-body: #3d2c5e;
  /* mid-purple body text */
  --text-muted: #8b7aaa;
  /* muted purple */
  --text-light: #f0eaff;
  /* light lavender for dark sections */

  --accent: #4a35a0;
  /* purple accent */
  --accent-hover: #2e1f7a;
  /* darker on hover */

  --white: #ffffff;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 36px;

  --shadow-card: 0 4px 24px rgba(74, 53, 160, 0.12);
  --shadow-hover: 0 12px 40px rgba(74, 53, 160, 0.22);
  --shadow-dark: 0 8px 32px rgba(0, 0, 0, 0.35);
}

/* ===================== RESET / BASE ===================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg-main);
  color: var(--text-primary);
  overflow-x: hidden;
  position: relative;
}

section {
  position: relative;
  z-index: 1;
}

h1,
h2,
h3 {
  font-family: 'Cormorant Garamond', serif;
}

/* ===================== NAVBAR ===================== */
.navbar-custom {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 14px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(20px);
  background: rgba(252, 232, 224, 0.88);
  border-bottom: 1px solid rgba(74, 53, 160, 0.12);
  transition: all 0.4s;
}

.navbar-custom.scrolled {
  padding: 10px 5%;
  background: rgba(252, 232, 224, 0.97);
  box-shadow: 0 2px 20px rgba(74, 53, 160, 0.1);
}

.nav-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  display: flex;
  align-items: center;
}

.nav-logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  display: block;
  /* Original logo has black bg — we make it transparent & show brand purple */
  /*filter: brightness(0) saturate(100%) invert(21%) sepia(60%) saturate(800%) hue-rotate(230deg) brightness(0.9);*/
  transition: filter 0.3s, opacity 0.3s;
}

.nav-logo-img:hover {
  filter: brightness(0) saturate(100%) invert(15%) sepia(80%) saturate(1000%) hue-rotate(235deg) brightness(0.8);
  opacity: 0.85;
}

.nav-brand span {
  color: var(--brand);
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-body);
  text-decoration: none;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--brand);
}

.nav-cta {
  background: var(--brand) !important;
  color: #fff !important;
  padding: 9px 22px;
  border-radius: 50px;
  font-weight: 600 !important;
  letter-spacing: 0.08em;
  transition: all 0.3s !important;
}

.nav-cta:hover {
  background: var(--brand-dark) !important;
  box-shadow: 0 4px 20px rgba(74, 53, 160, 0.4) !important;
  transform: translateY(-1px);
}

.nav-hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--brand);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ===================== TICKER ===================== */
.ticker-wrap {
  background: linear-gradient(90deg, var(--brand), var(--brand-light));
  border-bottom: 1px solid rgba(74, 53, 160, 0.3);
  padding: 10px 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  z-index: 2;
  margin-top: 68px;
}

.ticker-inner {
  display: inline-flex;
  gap: 60px;
  animation: ticker 28s linear infinite;
}

.ticker-item {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 10px;
}

.ticker-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ===================== HERO ===================== */
.hero {
  min-height: 100vh;
  padding: 100px 5% 80px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(ellipse 60% 80% at 10% 60%, rgba(250, 190, 170, 0.6) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 90% 20%, rgba(200, 180, 240, 0.25) 0%, transparent 60%),
    linear-gradient(150deg, #fce8e0 0%, #fad8cc 50%, #f5cdc0 100%);
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  right: -120px;
  bottom: -80px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74, 53, 160, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 20px;
}

.hero-eyebrow::before {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--brand);
}

.hero-title {
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 1.05;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.hero-title .italic-gold {
  font-style: italic;
  color: var(--brand);
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.7;
  max-width: 440px;
  margin: 20px 0 36px;
  font-weight: 400;
}

/* Buttons */
.btn-primary-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 15px 32px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-primary-gold:hover {
  background: var(--brand-dark);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 36px rgba(74, 53, 160, 0.4);
  color: #fff;
}

.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--brand);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 50px;
  border: 2px solid var(--brand);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.35s;
  margin: 0px 5px;
}

.btn-outline-gold:hover {
  background: var(--brand);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(74, 53, 160, 0.3);
}

/* Hero stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 48px;
  padding-top: 30px;
  border-top: 1px solid rgba(74, 53, 160, 0.15);
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-num {
  font-family: 'DM Sans', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--brand);
  line-height: 1;
}

.stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.stat-num .star {
  font-size: 28px;
  margin-left: 2px;
}

.stat-divider {
  width: 1px;
  height: 22px;
  background: rgba(74, 53, 160, 0.2);
}

.stat-item.horizontal {
  display: flex;
  align-items: center;
  gap: 10px;
}

.stat-item:hover {
  transform: translateY(-2px);
  transition: 0.3s;
}

/* Hero image grid */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 14px;
  position: relative;
}

.hero-grid::before {
  content: '';
  position: absolute;
  inset: -40px;
  background: radial-gradient(ellipse at center, rgba(74, 53, 160, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.hero-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: var(--shadow-card);
}

.hero-card:hover {
  transform: scale(1.04) translateY(-4px);
  z-index: 2;
  box-shadow: var(--shadow-hover);
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.hero-card:hover img {
  transform: scale(1.08);
}

.hero-card.large {
  grid-row: span 2;
}

.hero-card-label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(252, 232, 224, 0.92);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(74, 53, 160, 0.25);
  color: var(--brand);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 50px;
}

.hero-card-qr {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(74, 53, 160, 0.2);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.65rem;
  color: var(--brand);
}

/* ===================== PRODUCTS ===================== */
.section-products {
  padding: 100px 5%;
  background: var(--bg-main);
}

.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  margin-bottom: 16px;
}

.section-eyebrow::before,
.section-eyebrow::after {
  content: '';
  flex: 1;
  max-width: 60px;
  height: 2px;
  background: var(--brand);
  opacity: 0.4;
}

.eyebrow-text {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--brand);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  text-align: center;
  color: var(--text-primary);
  line-height: 1.15;
  margin-bottom: 60px;
}

/* Product cards */
.product-card {
  background: var(--bg-card);
  border: 1px solid rgba(74, 53, 160, 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
  box-shadow: var(--shadow-card);
}

.product-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-hover);
  border-color: rgba(74, 53, 160, 0.3);
}

.product-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-card:hover .product-card-img {
  transform: scale(1.07);
}

.product-card-body {
  padding: 20px;
}

.product-badge {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  background: var(--brand-pale);
  border: 1px solid rgba(74, 53, 160, 0.25);
  color: var(--brand);
  margin-bottom: 10px;
}

.product-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.product-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 400;
}

.product-descs {
  font-size: 14px;
  color: var(--text-body);
  font-weight: 600;
}

.product-names {
  font-family: serif !important;
  font-size: 12px;
  font-weight: 700 !important;
  color: var(--brand) !important;
  margin-bottom: 6px;
}

/* ===================== WHY PARTNER ===================== */
.section-why {
  padding: 100px 5%;
  background: var(--bg-section);
}

.why-card {
  background: var(--bg-card);
  border: 1px solid rgba(74, 53, 160, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.4s;
  height: 100%;
  box-shadow: var(--shadow-card);
}

.why-card:hover {
  border-color: rgba(74, 53, 160, 0.3);
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.why-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s;
}

.why-card:hover .why-card-img {
  transform: scale(1.05);
}

.why-card-body {
  padding: 28px;
}

.why-card-title {
  font-family: serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 12px;
}

.why-card-text {
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.7;
}

/* ===================== CATEGORIES ===================== */
.section-categories {
  padding: 100px 5%;
  background: var(--bg-main);
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
}

.cat-card {
  background: var(--bg-card);
  border: 1px solid rgba(74, 53, 160, 0.1);
  border-radius: var(--radius-md);
  padding: 28px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-align: center;
  box-shadow: 0 2px 12px rgba(74, 53, 160, 0.07);
}

.cat-card:hover {
  background: var(--brand-pale);
  border-color: rgba(74, 53, 160, 0.35);
  transform: translateY(-8px) scale(1.04);
  box-shadow: var(--shadow-hover);
}

.cat-icon {
  font-size: 2rem;
  filter: drop-shadow(0 2px 8px rgba(74, 53, 160, 0.2));
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cat-card:hover .cat-icon {
  transform: scale(1.2) rotate(-5deg);
}

.cat-name {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-body);
  transition: color 0.3s;
}

.cat-card:hover .cat-name {
  color: var(--brand);
}

/* ===================== SHOWCASE ===================== */
.section-showcase {
  padding: 100px 5%;
  background: var(--bg-section);
}

.showcase-hero-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 500px;
  box-shadow: var(--shadow-hover);
}

.showcase-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.showcase-hero-wrap:hover .showcase-hero-img {
  transform: scale(1.04);
}

.showcase-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(26, 10, 46, 0.7) 100%);
}

.showcase-hero-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border: 1px solid var(--brand);
  border-radius: var(--radius-sm);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--brand);
  font-family: serif;
  font-size: 1.1rem;
  font-weight: 600;
}

.showcase-hero-info {
  position: absolute;
  bottom: 24px;
  left: 24px;
}

.showcase-hero-info h3 {
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 4px;
  font-weight: 600;
}

.showcase-hero-info p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
}

.sub-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.showcase-sub {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  height: 237px;
  cursor: pointer;
  box-shadow: var(--shadow-card);
}

.showcase-sub img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.showcase-sub:hover img {
  transform: scale(1.07);
}

.showcase-sub-label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(252, 232, 224, 0.92);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(74, 53, 160, 0.3);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
}

.novelty-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 8px;
}

.novelty-cell {
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}

.novelty-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.novelty-cell:hover img {
  transform: scale(1.1);
}

/* ===================== B2B SECTION ===================== */
.section-b2b {
  padding: 100px 5%;
  background:
    radial-gradient(ellipse 70% 60% at 20% 50%, rgba(74, 53, 160, 0.06) 0%, transparent 60%),
    var(--bg-main);
}

.b2b-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.b2b-stat-card {
  background: var(--bg-card);
  border: 1px solid rgba(74, 53, 160, 0.15);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  transition: all 0.3s;
  box-shadow: var(--shadow-card);
}

.b2b-stat-card:hover {
  border-color: rgba(74, 53, 160, 0.4);
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.b2b-stat-num {
  font-family: serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--brand);
  line-height: 1;
  margin-bottom: 6px;
}

.b2b-stat-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.b2b-checklist {
  list-style: none;
  margin-bottom: 36px;
}

.b2b-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(74, 53, 160, 0.08);
  font-size: 0.9rem;
  color: var(--text-body);
  font-weight: 400;
}

.b2b-checklist li:last-child {
  border-bottom: none;
}

.check-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  background: #4f2c73;
  border: 1px solid rgb(250 231 223);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 0.7rem;
  margin-top: 1px;
}

/* ===================== TRUST STRIP ===================== */
.trust-strip {
  padding: 70px 5%;
  background: var(--bg-section);
  border-top: 1px solid rgba(74, 53, 160, 0.12);
  border-bottom: 1px solid rgba(74, 53, 160, 0.12);
}

.trust-card {
  background: var(--bg-card);
  border: 1px solid rgba(74, 53, 160, 0.1);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  height: 100%;
  transition: all 0.35s;
  box-shadow: var(--shadow-card);
}

.trust-card:hover {
  background: var(--brand-pale);
  border-color: rgba(74, 53, 160, 0.3);
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.trust-icon {
  font-size: 2.2rem;
  margin-bottom: 18px;
  display: block;
}

.trust-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 10px;
}

.trust-text {
  font-size: 0.85rem;
  color: var(--text-body);
  line-height: 1.7;
}

/* ===================== CTA ===================== */
.section-cta {
  padding: 120px 5%;
  background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand) 60%, var(--brand-light) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.section-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.cta-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

.cta-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 560px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

/* Override button colours inside the purple CTA */
.section-cta .btn-primary-gold {
  background: #fff;
  color: var(--brand);
}

.section-cta .btn-primary-gold:hover {
  background: var(--bg-main);
  color: var(--brand-dark);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.25);
}

.section-cta .btn-outline-gold {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
}

.section-cta .btn-outline-gold:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border-color: #fff;
}

.contact-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 48px;
}

.contact-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  padding: 12px 22px;
  font-size: 0.82rem;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s;
}

.contact-chip:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
  transform: translateY(-2px);
}

.contact-chip i {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

/* ===================== FOOTER ===================== */
footer {
  background: var(--brand-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 36px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
}

.footer-brand span {
  color: rgba(255, 255, 255, 0.7);
}

.footer-copy {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.06em;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #fff;
}

/* ===================== SCROLL TO TOP ===================== */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 20px rgba(74, 53, 160, 0.45);
  transition: all 0.3s;
  opacity: 0;
  pointer-events: none;
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: all;
}

.scroll-top:hover {
  background: var(--brand-dark);
  transform: translateY(-3px);
}

/* ===================== MISC / UTILS ===================== */
.overflow-hidden {
  overflow: hidden;
}

.float-leaf {
  position: absolute;
  pointer-events: none;
  opacity: 0.04;
  font-size: 10rem;
  user-select: none;
}

.gold-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--brand), transparent);
  margin: 16px 0;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 991px) {
  .cat-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .hero-grid {
    display: none;
  }

  .hero {
    padding-top: 120px;
    padding-bottom: 60px;
  }

  .hero-title {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-hamburger {
    display: block;
  }

  .cat-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .b2b-stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 20px;
  }

  footer {
    flex-direction: column;
    text-align: center;
  }

  .sub-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .b2b-stats-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 756px) {
  .hero-stats {
    gap: 6px !important;
  }
}

/* =====CTA MOBILE FIX ===== */
@media (max-width: 768px) {
  .section-cta {
    padding: 80px 15px;
  }

  .cta-title {
    font-size: 2rem;
    line-height: 1.2;
  }

  .cta-sub {
    font-size: 0.9rem;
    padding: 0 10px;
  }

  .section-cta .d-flex {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .section-cta .btn-primary-gold,
  .section-cta .btn-outline-gold {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .contact-chips {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .contact-chip {
    width: 100%;
    max-width: 320px;
    justify-content: center;
    text-align: center;
    word-break: break-word;
  }
}