/* =============================================
   HOME PAGE STYLES
   (Auto-extracted from style.css)
   ============================================= */

/* Hero Section - Editorial Full Viewport */
.hero-editorial {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 800px;
  display: flex;
  align-items: center;
  background-color: transparent;
  overflow: hidden;
}

.hero-center-object {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(550px, 90vw);
  height: 70vh; /* Reduced from 85vh so 1366x768 screens aren't overwhelmed */
  max-height: 700px;
  z-index: 5;
  pointer-events: none;
}

.gsap-center-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  will-change: opacity, transform;
  animation: hero-float 4s ease-in-out infinite;
}

/* Make the 3rd image perfectly balanced with the others */
.gsap-center-img:nth-child(3) {
  height: 80%;
}

.gsap-center-img.active {
  opacity: 1;
}

/* Typography Blocks */
.text-block-top-left {
  position: absolute;
  top: 15%;
  left: 12%;
  z-index: 4;
}

.text-block-center-right {
  position: absolute;
  top: 40%;
  right: 12%;
  text-align: right;
  z-index: 6; /* Floating above the image slightly */
}

.font-light {
  font-weight: 300;
}
.font-bold {
  font-weight: 600;
}

/* CTA */
.hero-cta-anchor {
  position: absolute;
  top: 40%;
  left: 12%;
  z-index: 10;
}

.button-ink {
  background-color: var(--color-ink-button);
  color: var(--color-on-ink-button);
  border: none;
  cursor: pointer;
  font-weight: 500;
  transition:
    background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    color 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.button-ink:hover {
  background-color: var(--color-primary);
  color: var(--color-on-primary);
  box-shadow: 0 8px 24px rgba(71, 112, 194, 0.3);
  opacity: 1;
}

.pill-btn {
  border-radius: var(--rounded-full);
  padding: 14px 32px;
  display: inline-flex;
  align-items: center;
}

/* Annotations */
.hero-hotspot {
  position: absolute;
  display: flex;
  align-items: center;
  z-index: 10;
}

.hotspot-left {
  top: 55%;
  left: 22%;
}

.hotspot-right {
  top: 65%;
  right: 22%;
}

.hotspot-line {
  position: relative;
  width: 40px;
  height: 1px;
  background-color: var(--color-hairline);
  margin: 0 var(--spacing-sm);
}

.hotspot-dot {
  position: absolute;
  width: 14px;
  height: 14px;
  background-color: #ffffff;
  border: 1.5px solid var(--color-primary);
  border-radius: 50%;
  top: -7px;
  box-shadow: 0 0 0 0 rgba(71, 112, 194, 0.4);
  animation: hotspot-breathe 2.5s infinite cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hotspot-dot::after {
  content: '';
  width: 5px;
  height: 5px;
  background-color: var(--color-primary);
  border-radius: 50%;
}

@keyframes hotspot-breathe {
  0% {
    box-shadow: 0 0 0 0 rgba(71, 112, 194, 0.5);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(71, 112, 194, 0);
    transform: scale(1.15);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(71, 112, 194, 0);
    transform: scale(1);
  }
}

.line-left .hotspot-dot {
  right: -7px;
}
.line-right .hotspot-dot {
  left: -7px;
}

/* Stats Block */
.hero-stats-block {
  position: absolute;
  bottom: 8%;
  left: 5%;
  z-index: 10;
}

.massive-number {
  position: absolute;
  bottom: -40px;
  left: -20px;
  font-size: 200px;
  font-weight: 600;
  line-height: 0.8;
  color: var(--color-ink-deep);
  opacity: 0.03;
  z-index: -1;
  pointer-events: none;
}

.mt-sm {
  margin-top: var(--spacing-sm);
}

.text-subtle {
  color: var(--color-slate);
  line-height: 1.6;
}

/* Side Navs */
.hero-nav-left {
  position: absolute;
  top: 25%;
  left: 3%;
  z-index: 10;
}

.hero-nav-left ul li {
  font-size: 10px;
  color: var(--color-slate);
  margin-bottom: var(--spacing-md);
  position: relative;
}

.hero-nav-left ul li.active {
  color: var(--color-ink-deep);
  font-weight: 600;
}

.hero-nav-left ul li.active::before {
  content: '';
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 1px;
  background-color: var(--color-ink-deep);
}

.hero-nav-right {
  position: absolute;
  top: 20%;
  right: 3%;
  height: 70%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
}

.sparkle-icon {
  font-size: 24px;
  color: var(--color-ink-deep);
}

.social-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--color-surface-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-sm);
  color: var(--color-ink-deep);
  transition:
    transform 0.3s ease,
    background-color 0.3s ease,
    color 0.3s ease;
  text-decoration: none;
}

.social-circle:hover {
  transform: translateY(-4px);
  background-color: var(--color-primary);
  color: white;
}

.scroll-down-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-ink);
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 8px;
}

@keyframes bounceDown {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(6px);
  }
}

.scroll-down-circle svg {
  animation: bounceDown 2s infinite ease-in-out;
}

/* Bottom Reveal Blur Bar */
.bottom-blur-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.8), transparent);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  mask-image: linear-gradient(to top, black 20%, transparent 100%);
  -webkit-mask-image: linear-gradient(to top, black 20%, transparent 100%);
  pointer-events: none;
  z-index: 998;
}

.gsap-hero-text,
.gsap-hero-fade,
.gsap-hotspot {
  opacity: 0;
  will-change: transform, opacity;
}

/* ==========================================================================
   Clinical Partner Slider Section
   ========================================================================== */

.partner-section {
  position: relative;
  padding: var(--spacing-section) 0 var(--spacing-section-sm) 5%;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xl);
  z-index: 5;
}

.partner-header {
  position: relative;
  width: 100%;
  padding-right: 5%;
  margin-bottom: 48px;
}

.partner-desc {
  position: absolute;
  right: 5%;
  bottom: 0;
  max-width: 320px;
}

.partner-slider-container {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 60px;
}

.partner-nav {
  display: flex;
  gap: 16px;
  flex: 0 0 calc(20% - 40px);
  justify-content: flex-start;
}

.partner-arrow-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-ink-deep);
  cursor: pointer;
  transition: all 0.3s ease;
}

.partner-arrow-btn:hover {
  background: rgba(18, 20, 24, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-color: rgba(18, 20, 24, 0.1);
  color: white;
}

.partner-track {
  flex: 1; /* Force track to fill remaining width and touch the right edge */
  width: 100%;
  display: flex;
  gap: 0px;
  align-items: flex-end;
  overflow-x: auto;
  padding: 40px 20px 40px 20px;
  margin-top: -40px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 20px;
  scroll-padding-right: 20px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.partner-track::-webkit-scrollbar {
  display: none;
}

.partner-card {
  flex: 0 0 max(300px, calc((100% + 20px) / 3));
  height: 420px;
  background-color: rgba(220, 230, 240, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  scroll-snap-align: start;
  transition:
    background-color 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    border-color 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform, opacity;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  flex-direction: column;
  cursor: pointer;
  text-align: right;
  transform-origin: bottom center;
  transform: scale(0.94);
}

.partner-card.active {
  background-color: rgba(255, 255, 255, 0.95);
  transform: scale(1);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.partner-card-desc {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s ease;
  margin-top: 0;
}

.partner-card.active .partner-card-desc {
  opacity: 1;
  max-height: 100px;
  margin-top: 12px;
}

.card-bg-number {
  position: absolute;
  bottom: -40px;
  right: -10px;
  font-size: 200px;
  font-weight: 300;
  line-height: 0.8;
  color: var(--color-ink-deep);
  opacity: 0.08;
  pointer-events: none;
  letter-spacing: -12px;
  transition: opacity 0.5s ease;
}

.partner-card.active .card-bg-number {
  opacity: 0.15;
}

/* Hero floating animation */
@keyframes hero-float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .partner-section {
    padding-left: 0;
    padding-right: 0;
  }
  .partner-header {
    padding-left: 5%;
    padding-right: 5%;
  }
  .partner-desc {
    position: relative;
    right: 0;
    margin-top: 30px;
  }
  .partner-slider-container {
    flex-direction: column;
    align-items: flex-start;
  }
  .partner-nav {
    padding-left: 5%;
  }
  .partner-track {
    padding-left: 5%;
    padding-right: 5%;
    scroll-padding-left: 5%;
  }
  .partner-card {
    flex: 0 0 280px;
    height: 380px;
    padding: 30px;
  }
}

/* ==========================================================================
   Marquee Section
   ========================================================================== */

.marquee-wrapper {
  overflow: hidden;
  width: 100%;
  padding: 4vw 0;
}

@media (max-width: 1024px) {
  .marquee-wrapper {
    padding: var(--spacing-section) 0;
  }
}

.marquee-section {
  width: 110vw;
  margin-left: -5vw;
  transform: rotate(-2deg);
  background: linear-gradient(135deg, #f0f4f8 0%, #dce4ea 100%);
  padding: 24px 0;
  display: flex;
  white-space: nowrap;
  border-top: 1px solid rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow:
    0 12px 32px rgba(18, 20, 24, 0.04),
    inset 0 2px 0 rgba(255, 255, 255, 0.6);
}

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

.marquee-content {
  display: flex;
  align-items: center;
}

.marquee-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--color-ink-deep);
  margin: 0 20px;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
}

.marquee-dot {
  color: var(--color-accent);
  font-size: 20px;
  margin-left: 20px;
}

.marquee-capsule {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 24px;
  border-radius: 100px;
  background-color: rgba(0, 0, 0, 0.03);
  color: var(--color-ink-deep);
  font-size: 16px;
  font-weight: 500;
  margin: 0 12px;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

@media (max-width: 1024px) {
  .marquee-section {
    padding: 16px 0;
  }
  .marquee-text {
    font-size: 16px;
    margin: 0 12px;
  }
  .marquee-capsule {
    font-size: 14px;
    padding: 4px 16px;
    margin: 0 8px;
  }
  .marquee-dot {
    font-size: 16px;
    margin-left: 12px;
  }
}

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

/* ==========================================================================
   Categories Section
   ========================================================================== */

.category-section {
  position: relative;
  overflow: hidden;
  padding: var(--spacing-section) 0;
}

.slider-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  padding: 0 5%;
}

.category-nav {
  display: flex;
  gap: 16px;
}

.category-track-wrapper {
  position: relative;
}

.category-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: auto;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
  /* Align padding to match the global 5% grid */
  padding: 40px 5%;
  scroll-padding-left: 5%;
  scroll-padding-right: 5%;
  margin-top: -40px;
}

.category-track::-webkit-scrollbar {
  display: none;
}

.category-card {
  /* Default: 5 cards per view */
  flex: 0 0 calc((90vw - 80px) / 5);
  display: flex;
  flex-direction: column;
  gap: 16px;
  scroll-snap-align: start;
  text-decoration: none;
}

@media (max-width: 1440px) {
  .category-card {
    /* 4 cards per view */
    flex: 0 0 calc((90vw - 60px) / 4);
  }
}

@media (max-width: 1200px) {
  .category-card {
    /* 3 cards per view */
    flex: 0 0 calc((90vw - 40px) / 3);
  }
}

@media (max-width: 1024px) {
  .category-card {
    /* 2 cards per view */
    flex: 0 0 calc((90vw - 20px) / 2);
  }
}

@media (max-width: 660px) {
  .slider-category-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 40px;
  }
  .slider-category-title {
    font-size: 36px;
    line-height: 1.1;
  }
  .category-nav {
    display: none;
  }
  .category-card {
    /* Larger, more premium cards on mobile (1.5 cards visible) */
    flex: 0 0 max(240px, 70vw);
  }
}

.category-img-container {
  width: 100%;
  aspect-ratio: 5/5;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  background-color: #ffffff;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
}

.category-card:hover .category-img-container {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.1);
}

.category-img-container::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.02);
  z-index: 1;
  pointer-events: none;
  transition: background-color 0.4s ease;
}

.category-img-container::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 70%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.5) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg);
  transition: none;
  z-index: 2;
  pointer-events: none;
}

.category-card:hover .category-img-container::after {
  left: 150%;
  transition: left 1s ease-out;
}

.category-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom center;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 0;
  display: block;
}

.category-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0 4px;
}

.category-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-ink-deep);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  transition: color 0.3s ease;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.category-action-btn {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 50%;
  background-color: transparent;
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: var(--color-ink-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.category-card:hover .category-action-btn {
  background-color: var(--color-ink-deep);
  border-color: var(--color-ink-deep);
  color: white;
  transform: translateX(4px);
}

/* Vibrant Pastel Backgrounds */
.cat-bg-1 {
  background-color: rgba(52, 143, 138, 0.12);
}
.cat-bg-2 {
  background-color: rgba(195, 73, 39, 0.12);
}
.cat-bg-3 {
  background-color: rgba(246, 141, 112, 0.12);
}
.cat-bg-4 {
  background-color: rgba(217, 62, 106, 0.12);
}
.cat-bg-5 {
  background-color: rgba(253, 185, 52, 0.12);
}
.cat-bg-6 {
  background-color: rgba(128, 108, 101, 0.12);
}
.cat-bg-7 {
  background-color: rgba(0, 103, 178, 0.12);
}
.cat-bg-8 {
  background-color: rgba(165, 70, 134, 0.12);
}
.cat-bg-9 {
  background-color: rgba(1, 165, 79, 0.12);
}
.cat-bg-10 {
  background-color: rgba(183, 214, 61, 0.12);
}
.cat-bg-11 {
  background-color: rgba(142, 143, 142, 0.12);
}
.cat-bg-12 {
  background-color: rgba(228, 201, 53, 0.12);
}

/* --- OUR PRODUCTS SECTION --- */
.product-section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 24px;
  padding: 0 5%;
}
.product-section-title {
  text-align: left;
}
.product-tabs {
  display: inline-flex;
  gap: 4px;
  background: linear-gradient(135deg, #f0f4f8 0%, #dce4ea 100%);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow:
    0 8px 16px rgba(18, 20, 24, 0.04),
    inset 0 2px 0 rgba(255, 255, 255, 0.6);
  border-radius: 100px;
  padding: 6px;
}
.tab-btn {
  background: transparent;
  border: none;
  border-radius: 100px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-ink-light);
  cursor: pointer;
  padding: 8px 24px;
  transition: all 0.3s ease;
}
.tab-btn:hover {
  color: var(--color-ink-deep);
}
.tab-btn.active {
  background: rgba(18, 20, 24, 0.85);
  color: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.tab-content {
  animation: fadeIn 0.5s ease-in-out;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Utility for making whole card clickable */
.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  content: '';
}

/* --- ABOUT COMPANY SECTION & SHOP HEADER --- */
.shop-header-card,
#about-company {
  background: linear-gradient(135deg, #f0f4f8 0%, #dce4ea 100%);
  border-radius: 32px;
  margin: var(--spacing-section-lg) 5% var(--spacing-section-sm);
  padding: clamp(32px, 6vw, 80px) clamp(32px, 5vw, 64px);
  box-shadow:
    0 24px 48px rgba(18, 20, 24, 0.06),
    inset 0 2px 0 rgba(255, 255, 255, 0.8),
    inset 0 0 24px rgba(255, 255, 255, 0.4);
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.shop-header-card {
  text-align: center;
  margin: 100px 5% 25px;
  padding: clamp(32px, 4vw, 56px) clamp(24px, 4vw, 48px);
}

.shop-header-card::before,
#about-company::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 80% -20%, rgba(255, 255, 255, 0.8) 0%, transparent 50%);
  pointer-events: none;
}

.shop-header-card > * {
  position: relative;
  z-index: 2;
}

.about-split-layout {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: clamp(48px, 6vw, 80px);
  position: relative;
  z-index: 2;
}

.about-huge-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--color-ink-deep);
  margin: 0;
  text-align: right;
}

.about-huge-title strong {
  font-weight: 700;
}

.about-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 48px;
}

.about-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

@media (max-width: 1024px) {
  .about-split-layout {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }
  /* Flatten the DOM visually so we can freely reorder children */
  .about-left,
  .about-right,
  .about-text-top,
  .about-text-bottom {
    display: contents;
  }
  .about-text-top img {
    order: 1;
    margin-bottom: 0 !important;
    align-self: flex-start;
  }
  .about-huge-title {
    order: 2;
    text-align: left;
    margin-bottom: 8px;
    width: 100%;
  }
  .about-huge-title br {
    display: none;
  }
  .about-text-top p {
    order: 3;
    margin-bottom: 0 !important;
  }
  .about-text-bottom p {
    order: 4;
    margin-bottom: 0 !important;
  }
  .about-text-bottom button {
    order: 5;
    align-self: flex-start;
  }
}

/* ==========================================================================
   Core Promises Section
   ========================================================================== */

#core-promises {
  /* Transparent section on webGL bg */
}

.promises-split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 8vw, 120px);
  align-items: start;
}

.promises-left {
  display: flex;
  flex-direction: column;
  align-self: start;
  position: sticky;
  top: 120px;
}

.promises-huge-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(48px, 6vw, 100px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--color-ink-deep);
  margin: 0 0 96px;
}

/* Accordion */
.accordion {
  display: flex;
  flex-direction: column;
}

.accordion-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 32px 0;
}
.accordion-item:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 24px;
}

.accordion-title-wrap {
  display: flex;
  align-items: center;
  gap: 24px;
}

.accordion-num {
  font-size: 16px;
  color: var(--color-stone);
  opacity: 0.5;
  font-family: 'Space Grotesk', sans-serif;
}

.accordion-title {
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 400;
  color: var(--color-ink-deep);
  margin: 0;
  transition: color 0.3s ease;
}

.accordion-icon {
  color: var(--color-ink);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  transform: rotate(90deg); /* Points down-right initially */
}

.accordion-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.accordion-content-inner {
  min-height: 0;
  padding-top: 0;
  padding-left: 44px; /* align with title text */
  transition:
    padding-top 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.4s ease;
  opacity: 0;
}

/* Active State */
.accordion-item.active .accordion-icon {
  transform: rotate(0deg); /* Points up-right when active */
}
.accordion-item.active .accordion-content {
  grid-template-rows: 1fr;
}
.accordion-item.active .accordion-content-inner {
  padding-top: 16px;
  opacity: 1;
}
.accordion-item.active .accordion-title {
  color: var(--color-primary);
}

@media (max-width: 1024px) {
  .promises-split-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .promises-huge-title {
    margin: 0 0 32px; /* Reduced from 96px */
  }
  .promises-left {
    position: static; /* Disable sticky scrolling when stacked vertically */
  }
}

@media (max-width: 660px) {
  .promises-split-layout {
    gap: 32px;
  }
  .promises-huge-title {
    margin: 0 0 24px;
  }
}

/* ==========================================================================
   Trust & Benefits Section
   ========================================================================== */

#trust-benefits {
  /* Fully transparent wrapper */
}

#trust-benefits .card-icon-feature {
  background: linear-gradient(135deg, #f0f4f8 0%, #dce4ea 100%);
  border-radius: 32px;
  padding: 48px 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s ease,
    background 0.4s ease;
  position: relative;
  overflow: hidden;
  z-index: 2;
  height: 100%;
  box-shadow:
    0 24px 48px rgba(18, 20, 24, 0.06),
    inset 0 2px 0 rgba(255, 255, 255, 0.8),
    inset 0 0 24px rgba(255, 255, 255, 0.4);
}

#trust-benefits .card-icon-feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 80% -20%, rgba(255, 255, 255, 0.8) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

#trust-benefits .card-icon-feature:hover {
  background: #ffffff;
  transform: translateY(-8px);
  box-shadow:
    0 32px 64px rgba(18, 20, 24, 0.1),
    inset 0 2px 0 rgba(255, 255, 255, 0.8),
    inset 0 0 24px rgba(255, 255, 255, 0.4);
}

#trust-benefits .card-icon-feature svg {
  color: var(--color-primary);
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  transition: transform 0.4s ease;
  position: relative;
  z-index: 2;
}

#trust-benefits .card-icon-feature:hover svg {
  transform: scale(1.1);
}

#trust-benefits .card-icon-feature h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--color-ink-deep);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 2;
}

#trust-benefits .card-icon-feature p {
  color: var(--color-ink-light);
  line-height: 1.6;
  margin: 0;
  position: relative;
  z-index: 2;
}

@media (max-width: 660px) {
  #trust-benefits .grid-4 {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ==========================================================================
   Reviews Marquee Section
   ========================================================================== */

#reviews {
  margin: var(--spacing-section-sm) 0 var(--spacing-section-lg);
}

@keyframes reviews-marquee-scroll {
  from {
    transform: translateX(0);
  }
  /* Translate exactly 50% of the total width + half the gap for perfect looping */
  to {
    transform: translateX(calc(-50% - (var(--marquee-gap) / 2)));
  }
}

.reviews-marquee-wrapper {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  width: 100%;
}

.reviews-marquee-track {
  --marquee-gap: 32px;
  display: flex;
  width: max-content;
  gap: var(--marquee-gap);
  padding: 0 calc(var(--marquee-gap) / 2);
  animation: reviews-marquee-scroll 40s linear infinite;
}

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

/* Review Card Style */
.review-card {
  width: 400px;
  flex: 0 0 auto;
  background: linear-gradient(135deg, #f0f4f8 0%, #dce4ea 100%);
  border-radius: 24px;
  padding: 40px;
  white-space: normal;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);

  cursor: grab;
  position: relative;
  overflow: hidden;
}

.review-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 80% -20%, rgba(255, 255, 255, 0.8) 0%, transparent 50%);
  pointer-events: none;
}

.review-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ffffff;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 1;
}

.review-card > * {
  position: relative;
  z-index: 2;
}

.review-card:active {
  cursor: grabbing;
}

.review-card:hover {
  /* transform removed to keep it grounded */
}

.review-card:hover::after {
  opacity: 1;
}

.review-stars {
  display: flex;
  gap: 4px;
  color: var(--color-secondary);
  margin-bottom: 24px;
}

.review-stars svg {
  width: 20px;
  height: 20px;
}

.review-quote {
  font-size: 18px;
  line-height: 1.6;
  color: var(--color-ink-deep);
  margin-bottom: 32px;
  font-style: italic;
}

.review-author {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-ink);
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .reviews-marquee-track {
    --marquee-gap: 20px;
  }
  .review-card {
    width: 340px;
    padding: 32px;
  }
}

@media (max-width: 660px) {
  .reviews-marquee-track {
    --marquee-gap: 16px;
  }
  .review-card {
    width: 320px;
    padding: 24px;
  }
  #reviews .slider-category-title span {
    display: block;
  }
}

/* --- CONTACT SECTION --- */
#contact {
  background: linear-gradient(135deg, #f0f4f8 0%, #dce4ea 100%);
  border-radius: 32px;
  margin: var(--spacing-section-lg) 5% var(--spacing-section-sm);
  padding: clamp(32px, 6vw, 80px) clamp(32px, 5vw, 64px);
  box-shadow:
    0 24px 48px rgba(18, 20, 24, 0.06),
    inset 0 2px 0 rgba(255, 255, 255, 0.8),
    inset 0 0 24px rgba(255, 255, 255, 0.4);
  position: relative;
  overflow: hidden;
}

#contact::before {
  display: none;
}

.contact-split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-hero);
  position: relative;
  z-index: 2;
}

.contact-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-huge-title {
  font-size: clamp(48px, 8vw, 96px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--color-ink-deep);
  margin-bottom: var(--spacing-section);
}

.contact-addresses {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: var(--spacing-section);
}

.address-block h4 {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-ink-deep);
  margin-bottom: 4px;
}

.address-block p {
  font-size: 12px;
  color: var(--color-ink-light);
  line-height: 1.4;
}

.contact-email {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 400;
  color: var(--color-ink-deep);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.contact-email:hover {
  opacity: 0.7;
}

.contact-right {
  display: flex;
  flex-direction: column;
}

.contact-socials {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  margin-bottom: var(--spacing-section);
}

.social-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-ink-deep);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.3s ease,
    background 0.3s ease;
  text-decoration: none;
}

.social-btn:hover {
  transform: translateY(-4px);
  background: var(--color-primary);
}

.social-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.contact-form-intro {
  font-size: 16px;
  color: var(--color-ink-deep);
  line-height: 1.5;
  max-width: 300px;
  margin-bottom: 48px;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 32px;
}

.contact-input-group {
  position: relative;
}

.contact-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(18, 20, 24, 0.15);
  padding: 8px 0;
  font-size: 18px;
  color: var(--color-ink-deep);
  transition: border-color 0.3s ease;
  font-family: var(--font-family);
}

.contact-input::placeholder {
  color: rgba(18, 20, 24, 0.3);
  font-weight: 300;
}

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

.contact-submit-wrapper {
  grid-column: 1 / -1;
  margin-top: 16px;
}

.contact-submit-btn {
  background: var(--color-ink-deep);
  color: white;
  border: none;
  border-radius: 100px;
  padding: 16px 48px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition:
    background 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-submit-btn:hover {
  background: var(--color-primary);
  box-shadow: 0 8px 24px rgba(71, 112, 194, 0.3);
}

/* ==========================================================================
   RESPONSIVENESS: HERO SECTION
   ========================================================================== */

/* 1. Laptops and smaller desktops (max-width: 1440px) */
@media (max-width: 1440px) {
  .hero-editorial .display-lg {
    font-size: 40px;
  }
  .hero-center-object {
    width: 400px;
    height: 60vh;
    min-height: 400px;
  }
  .hotspot-right {
    right: 15%;
  }
}

/* 2. Tablet Landscape / Small Laptop (max-width: 1024px) */
@media (max-width: 1024px) {
  .hero-editorial {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 100px 24px 60px;
  }

  .text-block-top-left {
    position: relative;
    top: auto;
    left: auto;
    order: 1;
    z-index: 10;
    margin-bottom: 24px;
    width: 100%;
  }

  .hero-cta-anchor {
    position: relative;
    top: auto;
    left: auto;
    order: 2;
    z-index: 10;
    margin-bottom: 32px;
  }

  .hero-center-object {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    height: 45vh;
    min-height: 350px;
    width: 100%;
    max-width: 550px;
    margin: 0 auto 32px auto;
    order: 3;
  }

  .text-block-center-right {
    position: relative;
    top: auto;
    right: auto;
    text-align: left;
    order: 4;
    z-index: 10;
    margin-bottom: 0;
    width: 100%;
  }

  .hero-stats-block {
    position: relative;
    top: auto;
    left: auto;
    bottom: auto;
    order: 5;
    z-index: 10;
    margin-top: 24px;
    width: 100%;
  }

  .hero-hotspot,
  .hero-nav-left,
  .hero-nav-right,
  .massive-number {
    display: none;
  }
}

/* 3. Mobile (max-width: 660px) */
@media (max-width: 660px) {
  .hero-editorial .display-lg {
    font-size: 32px;
  }
  .hero-center-object {
    height: 40vh;
    min-height: 300px;
  }
}

/* Reviews section */
.reviews-section { overflow: hidden; }
.reviews-section-header { text-align: center; margin-bottom: 48px; }

/* FAQs section */
.faqs-section { padding-left: 5%; padding-right: 5%; }
.faqs-title { font-size: clamp(40px, 5vw, 80px); }
.faqs-description { margin-bottom: 32px; max-width: 400px; }
.accordion-content-inner { padding-left: 0; }

/* Tab content hidden by default (JS toggles .active) */
.tab-content { display: none; }
.tab-content.active { display: block; }

/* About section */
.about-logo-img { height: 36px; margin-bottom: 24px; opacity: 0.9; }
.about-body-mb { margin-bottom: 24px; }

/* Trust & benefits section */
.trust-benefits-section {
  padding-left: 5%;
  padding-right: 5%;
  padding-bottom: var(--spacing-section-lg);
}

/* Price range footer row */
.price-range-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 16px; }
