/**
 * Purpose: Home Page Styles (Hero Section)
 * Responsibilities: Premium Hero layout, sophisticated background overlays, polished typing animation, luxury buttons.
 * Dependencies: css/global.css
 * Version: 3.0.0
 */

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  background-image: url('https://res.cloudinary.com/vwrjamwn/image/upload/v1784937108/IMG-20260724-WA0051_pe8kgh.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: var(--header-height);
  isolation: isolate; 
}

/* Inner wrapper for the main hero text content — fills the viewport */
.hero__main {
  display: flex;
  align-items: center;
  /*
   * MOBILE SCROLL FIX: Use svh (small viewport height) instead of vh.
   * On mobile browsers, 100vh includes the area behind the address bar.
   * When the address bar hides/shows during scroll, 100vh recalculates,
   * shifting all content below and causing the "snap-back" scroll bug.
   * 100svh = viewport with URL bar visible = CONSTANT value = no layout shifts.
   */
  min-height: calc(100vh - var(--header-height));   /* Fallback for older browsers */
  min-height: calc(100svh - var(--header-height));  /* Stable on all mobile browsers */
  width: 100%;
  /* padding-block: var(--hero-padding-block-start-mobile) var(--hero-padding-block-end-mobile); */
}

@media (min-width: 768px) {
  .hero__main {
    padding-block: var(--hero-padding-block-start-tablet) var(--hero-padding-block-end-tablet);
  }
}

@media (min-width: 1024px) {
  .hero__main {
    padding-block: var(--hero-padding-block-start-desktop) var(--hero-padding-block-end-desktop);
  }
}

/* Sophisticated Multi-Layer Overlay for Depth and Readability */
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--hero-overlay-mobile);
}

@media (min-width: 768px) {
  .hero__overlay {
    background: var(--hero-overlay-desktop);
  }
}

.hero__content {
  width: 100%;
  max-width: 800px;
  color: var(--color-surface);
  padding-inline: var(--space-3);
  /* Elegant entry animation */
  animation: hero-fade-up 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
  transform: translateY(30px);
}

@media (min-width: 640px) {
  .hero__content {
    padding-inline-start: var(--space-4);
    padding-inline-end: 0;
  }
}

@keyframes hero-fade-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================================================
   Typography Hierarchy
   ========================================================================== */
.hero__subtitle {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em; /* Wider tracking for premium luxury feel */
  color: var(--color-accent);
  margin-bottom: var(--space-3);
  display: block;
}

.hero__title {
  /* Fluid scaling: 1.5rem on 320px → 4.5rem on wide desktop */
  font-size: clamp(1.5rem, 4vw + 0.5rem, 4.5rem);
  font-weight: 800;
  color: var(--color-surface);
  margin-bottom: var(--space-4);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

@media (min-width: 640px) {
  .hero__title {
    margin-bottom: var(--space-6);
  }
}

.hero__description {
  font-size: clamp(1rem, 1.5vw + 0.2rem, 1.125rem);
  color: rgba(255, 255, 255, 0.9); /* Improved contrast */
  margin-bottom: var(--space-8);
  max-width: 540px; /* Optimal reading width */
  line-height: 1.7;
  font-weight: 400;
}

@media (min-width: 768px) {
  .hero__description {
    margin-bottom: var(--space-12);
  }
}

/* ==========================================================================
   Premium CTA Buttons
   ========================================================================== */
.hero__actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  flex-wrap: wrap;
  align-items: stretch;
}

@media (min-width: 480px) {
  .hero__actions {
    align-items: center;
  }
}

@media (min-width: 640px) {
  .hero__actions {
    flex-direction: row;
    gap: var(--space-4);
  }
}

@media (min-width: 768px) {
  .hero__actions {
    gap: var(--space-6);
  }
}

.hero__btn-primary {
  background: linear-gradient(135deg, var(--color-accent) 0%, #d4af37 100%);
  color: var(--color-surface);
  padding: var(--space-3) var(--space-6);
  font-weight: 700;
  font-size: var(--text-sm);
  letter-spacing: 0.05em;
  box-shadow: 0 4px 14px 0 rgba(184, 134, 11, 0.4);
  min-height: 48px;
  border-radius: var(--radius-pill);
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: transform var(--duration-base) var(--ease-standard),
              box-shadow var(--duration-base) var(--ease-standard),
              background var(--duration-base) var(--ease-standard);
}

@media (min-width: 640px) {
  .hero__btn-primary {
    padding: var(--space-4) var(--space-10);
    font-size: var(--text-base);
    min-height: 54px;
  }
}

.hero__btn-primary:hover {
  background: linear-gradient(135deg, #d4af37 0%, var(--color-accent) 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(184, 134, 11, 0.35);
}

.hero__btn-primary:active {
  transform: translateY(0);
}

.hero__btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--color-surface);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: var(--space-3) var(--space-6);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius-pill);
  min-height: 48px;
  backdrop-filter: blur(8px);
  transition: background-color var(--duration-base) var(--ease-standard),
              border-color var(--duration-base) var(--ease-standard),
              color var(--duration-base) var(--ease-standard),
              transform var(--duration-base) var(--ease-standard);
}

@media (min-width: 640px) {
  .hero__btn-outline {
    padding: var(--space-4) var(--space-10);
    font-size: var(--text-base);
    min-height: 54px;
  }
}

.hero__btn-outline:hover {
  background-color: var(--color-surface); 
  border-color: var(--color-surface);
  color: var(--color-primary);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.15);
}

.hero__btn-outline:active {
  transform: translateY(0);
}



/* ==========================================================================
   Refined Pure CSS Typing Animation
   ========================================================================== */
.hero__typing-wrapper {
  position: relative;
  display: inline-block;
  vertical-align: bottom;
  height: 1.1em;
  color: var(--color-accent);
  /* The wrapper sizes itself to 100% of the parent to prevent overflow */
  width: 100%;
  max-width: 100%;
  /* Fluid scaling: fits on one line even at 320px */
  font-size: clamp(1rem, 3.8vw, 4.5rem);
}

.hero__typing-word {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  white-space: nowrap;
  width: 0;
  max-width: 100%; /* Never overflow the wrapper */
  border-right: 2px solid transparent;
  opacity: 0;
  /* 'steps' provides the typewriter feel */
  animation-timing-function: steps(30, end), step-end;
}

/* 5 words, 5s each = 25s loop */
.hero__typing-word:nth-child(1) { animation: type1 25s infinite, blink 0.8s infinite; }
.hero__typing-word:nth-child(2) { animation: type2 25s infinite, blink 0.8s infinite; }
.hero__typing-word:nth-child(3) { animation: type3 25s infinite, blink 0.8s infinite; }
.hero__typing-word:nth-child(4) { animation: type4 25s infinite, blink 0.8s infinite; }
.hero__typing-word:nth-child(5) { animation: type5 25s infinite, blink 0.8s infinite; }

/* 
  Elegant typing logic:
  - Type in (0% to 6%)
  - Hold and blink (6% to 18%)
  - Fade out elegantly instead of erasing backwards (18% to 19.5%)
  - Reset (20%)
*/
@keyframes type1 {
  0% { width: 0; opacity: 1; visibility: visible; }
  6%, 18% { width: 40ch; opacity: 1; visibility: visible; }
  19.5% { width: 40ch; opacity: 0; visibility: visible; }
  20%, 100% { width: 0; opacity: 0; visibility: hidden; }
}

@keyframes type2 {
  0%, 19.9% { width: 0; opacity: 0; visibility: hidden; }
  20% { width: 0; opacity: 1; visibility: visible; }
  26%, 38% { width: 40ch; opacity: 1; visibility: visible; }
  39.5% { width: 40ch; opacity: 0; visibility: visible; }
  40%, 100% { width: 0; opacity: 0; visibility: hidden; }
}

@keyframes type3 {
  0%, 39.9% { width: 0; opacity: 0; visibility: hidden; }
  40% { width: 0; opacity: 1; visibility: visible; }
  46%, 58% { width: 40ch; opacity: 1; visibility: visible; }
  59.5% { width: 40ch; opacity: 0; visibility: visible; }
  60%, 100% { width: 0; opacity: 0; visibility: hidden; }
}

@keyframes type4 {
  0%, 59.9% { width: 0; opacity: 0; visibility: hidden; }
  60% { width: 0; opacity: 1; visibility: visible; }
  66%, 78% { width: 40ch; opacity: 1; visibility: visible; }
  79.5% { width: 40ch; opacity: 0; visibility: visible; }
  80%, 100% { width: 0; opacity: 0; visibility: hidden; }
}

@keyframes type5 {
  0%, 79.9% { width: 0; opacity: 0; visibility: hidden; }
  80% { width: 0; opacity: 1; visibility: visible; }
  86%, 98% { width: 40ch; opacity: 1; visibility: visible; }
  99.5% { width: 40ch; opacity: 0; visibility: visible; }
  100% { width: 0; opacity: 0; visibility: hidden; }
}

@keyframes blink {
  0%, 100% { border-color: transparent; }
  50% { border-color: var(--color-accent); }
}


/* ==========================================================================
   Hero "What We Do" Sub-Section — Streamlined 3-Card Layout
   ========================================================================== */
.hero-services {
  position: relative;
  width: 100%;
  padding: var(--space-12) 0 var(--space-16);
  z-index: 1;
}

@media (min-width: 768px) {
  .hero-services {
    padding: var(--space-16) 0 var(--space-24);
  }
}

/* Soft divider line above the section */
.hero-services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(90%, var(--container-max-width));
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(184, 134, 11, 0.4) 50%, transparent 100%);
}

.hero-services {
  position: relative;
  width: 100%;
  padding: var(--space-10) 0 var(--space-10);
  z-index: 1;
  margin-top: clamp(0.5rem, 2vw, 2rem);
  border-top: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

@media (min-width: 640px) {
  .hero-services {
    padding: calc(var(--space-12) + 0.5rem) 0 var(--space-12);
  }
}

@media (min-width: 768px) {
  .hero-services {
    padding: calc(var(--space-16) + 1rem) 0 var(--space-16);
  }
}

.hero-services__header {
  text-align: center;
  max-width: 760px;
  margin-inline: auto;
  margin-bottom: var(--space-6);
  padding: var(--space-5) var(--space-3);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  animation: hero-fade-up 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
  opacity: 0;
  transform: translateY(20px);
}

@media (min-width: 640px) {
  .hero-services__header {
    padding: var(--space-6) var(--space-4);
    border-radius: var(--radius-2xl);
    margin-bottom: var(--space-8);
  }
}

@media (min-width: 768px) {
  .hero-services__header {
    margin-bottom: var(--space-12);
  }
}

@media (min-width: 1920px) {
  .hero-services__header {
    max-width: 800px;
  }
}

.hero-services__label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-accent);
  margin-bottom: var(--space-3);
}

.hero-services__label::before,
.hero-services__label::after {
  content: '';
  width: 24px;
  height: 1px;
  background-color: var(--color-accent);
  opacity: 0.5;
}

.hero-services__heading {
  font-size: var(--text-h2);
  font-family: var(--font-heading);
  font-weight: var(--font-weight-bold);
  color: var(--color-surface);
  letter-spacing: var(--tracking-tight);
  margin-bottom: var(--space-4);
  line-height: var(--line-height-snug);
}

.hero-services__description {
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.78);
  line-height: var(--line-height-base);
  margin-bottom: 0;
}

/* Services Grid — Optimized for exactly 3 cards */
.hero-services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  max-width: var(--container-max-width);
  margin-inline: auto;
}

@media (min-width: 640px) {
  .hero-services__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
  }
}

@media (min-width: 1024px) {
  .hero-services__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
  }
}

/* Premium Glassmorphism Card — Enhanced proportions */
.hero-services__card {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  min-height: 100%;
  transition: transform var(--duration-base) var(--ease-standard),
              background var(--duration-base) var(--ease-standard),
              border-color var(--duration-base) var(--ease-standard),
              box-shadow var(--duration-base) var(--ease-standard);
  opacity: 0;
  transform: translateY(24px);
  will-change: transform, opacity;
}

.hero-services__card:nth-child(2) {
  animation-delay: 0.12s;
}

.hero-services__card:nth-child(3) {
  animation-delay: 0.24s;
}

.hero-services__card.is-visible {
  animation: service-card-enter 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@media (max-width: 640px) {
  .hero-services__card {
    padding: var(--space-6);
  }

  .hero-services__card-title {
    font-size: 1.05rem;
  }

  .hero-services__card-text {
    font-size: 0.95rem;
  }

  .hero-services__trust {
    margin-top: var(--space-8);
    gap: var(--space-4);
  }

  .hero-services__trust-item {
    font-size: 0.9rem;
  }
}

@keyframes service-card-enter {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (hover: hover) {
  .hero-services__card:hover {
    background: rgba(255, 255, 255, 0.13);
    border-color: rgba(184, 134, 11, 0.35);
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25),
                0 0 0 1px rgba(184, 134, 11, 0.15);
  }
}

.hero-services__card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  background: rgba(184, 134, 11, 0.12);
  margin-bottom: var(--space-6);
  flex-shrink: 0;
  transition: background var(--duration-base) var(--ease-standard),
              transform var(--duration-base) var(--ease-standard);
}

.hero-services__card:hover .hero-services__card-icon {
  background: rgba(184, 134, 11, 0.2);
  transform: scale(1.05);
}

.hero-services__card-icon svg {
  width: 28px;
  height: 28px;
  color: var(--color-accent);
}

.hero-services__card-title {
  font-size: var(--text-lg);
  font-family: var(--font-heading);
  font-weight: var(--font-weight-semibold);
  color: var(--color-surface);
  letter-spacing: var(--tracking-normal);
  margin-bottom: var(--space-3);
}

.hero-services__card-text {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.65);
  line-height: var(--line-height-loose);
  margin-bottom: 0;
}

/* Bottom trust bar */
.hero-services__trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-6);
  margin-top: var(--space-12);
  padding-top: var(--space-8);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  animation: hero-fade-up 1.4s cubic-bezier(0.16, 1, 0.3, 1) 1s forwards;
  opacity: 0;
  transform: translateY(20px);
}

.hero-services__trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: var(--font-weight-medium);
  color: rgba(255, 255, 255, 0.6);
}

.hero-services__trust-item svg {
  width: 18px;
  height: 18px;
  color: var(--color-accent);
  flex-shrink: 0;
}


/* ==========================================================================
   Featured Products Section
   ========================================================================== */
.products {
  background-color: var(--color-background);
  position: relative;
  overflow: hidden;
}

/* Subtle decorative element */
.products::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: var(--radius-circle);
  background: radial-gradient(circle, rgba(184, 134, 11, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

@media (min-width: 768px) {
  .products::before {
    top: -200px;
    right: -200px;
  }
}

.products__header {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: var(--space-8);
}

@media (min-width: 768px) {
  .products__header {
    margin-bottom: var(--space-12);
  }
}

@media (min-width: 1920px) {
  .products__header {
    max-width: 800px;
  }
}

.products__label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-accent);
  margin-bottom: var(--space-3);
}

.products__label::before,
.products__label::after {
  content: '';
  width: 24px;
  height: 1px;
  background-color: var(--color-accent);
  opacity: 0.5;
}

.products__heading {
  font-size: var(--text-h2);
  font-family: var(--font-heading);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
  letter-spacing: var(--tracking-tight);
  margin-bottom: var(--space-4);
}

.products__intro {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  line-height: var(--line-height-base);
  margin-bottom: 0;
}

/* Products Grid */
.products__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

@media (min-width: 768px) {
  .products__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-8);
  }
}

/* Product Card */
.product-card {
  background-color: var(--color-card-background);
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--duration-base) var(--ease-spring),
              box-shadow var(--duration-base) var(--ease-spring),
              border-color var(--duration-base) var(--ease-standard);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

@media (hover: hover) {
  .product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(184, 134, 11, 0.2);
  }
}

/* Product Image Container */
.product-card__image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3; /* Saves viewport on mobile while still showcasing product */
  overflow: hidden;
  background-color: var(--color-background);
}

@media (min-width: 640px) {
  .product-card__image-wrapper {
    aspect-ratio: 1 / 1; /* Taller image for larger mobile/tablet */
  }
}

@media (min-width: 1024px) {
  .product-card__image-wrapper {
    aspect-ratio: 5 / 4;
  }
}

.product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-standard);
}

.product-card:hover .product-card__image {
  transform: scale(1.06);
}

/* Premium badge overlay */
.product-card__badge {
  position: absolute;
  top: var(--space-4);
  left: var(--space-4);
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  background: rgba(17, 24, 39, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--color-accent);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-pill);
  border: 1px solid rgba(184, 134, 11, 0.2);
}

/* Product Content */
.product-card__content {
  padding: var(--space-5) var(--space-4) var(--space-6);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

@media (min-width: 480px) {
  .product-card__content {
    padding: var(--space-6) var(--space-6) var(--space-8);
  }
}

@media (min-width: 768px) {
  .product-card__content {
    padding: var(--space-8);
  }
}

.product-card__name {
  font-size: var(--text-xl);
  font-family: var(--font-heading);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
  letter-spacing: var(--tracking-tight);
  margin-bottom: var(--space-3);
}

.product-card__description {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: var(--line-height-loose);
  margin-bottom: var(--space-6);
  flex-grow: 1;
  max-width: 75ch; /* Prevent overly long text blocks */
}

@media (min-width: 768px) {
  .product-card__description {
    font-size: var(--text-base);
  }
}

/* Feature pills */
.product-card__features {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-6);
}

.product-card__feature-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: var(--text-xs);
  font-weight: var(--font-weight-medium);
  color: var(--color-text-secondary);
  background: var(--color-background);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-border);
  transition: border-color var(--duration-fast) var(--ease-standard),
              color var(--duration-fast) var(--ease-standard);
}

@media (hover: hover) {
  .product-card:hover .product-card__feature-tag {
    border-color: rgba(184, 134, 11, 0.2);
    color: var(--color-text-primary);
  }
}

.product-card__feature-tag svg {
  width: 12px;
  height: 12px;
  color: var(--color-accent);
}

/* CTA Button */
.product-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  width: 100%;
  background-color: var(--color-primary);
  color: var(--color-surface);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--font-weight-semibold);
  letter-spacing: 0.03em;
  padding: var(--space-4) var(--space-6);
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background-color var(--duration-base) var(--ease-standard),
              transform var(--duration-fast) var(--ease-standard),
              box-shadow var(--duration-base) var(--ease-standard);
}

@media (hover: hover) {
  .product-card__cta:hover {
    background-color: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(184, 134, 11, 0.25);
  }
}

.product-card__cta:active {
  transform: translateY(0);
}

.product-card__cta svg {
  width: 16px;
  height: 16px;
  transition: transform var(--duration-base) var(--ease-standard);
}

.product-card__cta:hover svg {
  transform: translateX(3px);
}

/* Section bottom CTA */
.products__bottom-cta {
  text-align: center;
  margin-top: var(--space-8);
}

@media (min-width: 768px) {
  .products__bottom-cta {
    margin-top: var(--space-12);
  }
}

.products__explore-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-primary);
  padding: var(--space-4) var(--space-8);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  transition: border-color var(--duration-base) var(--ease-standard),
              color var(--duration-base) var(--ease-standard),
              transform var(--duration-fast) var(--ease-standard),
              box-shadow var(--duration-base) var(--ease-standard);
}

@media (hover: hover) {
  .products__explore-btn:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
  }
}

.products__explore-btn svg {
  width: 16px;
  height: 16px;
  transition: transform var(--duration-base) var(--ease-standard);
}

.products__explore-btn:hover svg {
  transform: translateX(3px);
}

/* Scroll-based reveal animation */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s var(--ease-spring),
              transform 1s var(--ease-spring);
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-on-scroll:nth-child(2) { transition-delay: 0.15s; }
.reveal-on-scroll:nth-child(3) { transition-delay: 0.3s; }
.reveal-on-scroll:nth-child(4) { transition-delay: 0.45s; }

/* ==========================================================================
   Completed Projects Section
   ========================================================================== */
.completed-projects {
  background: linear-gradient(280deg, #e9ecef 20%, #b8bfc5 100%);
  padding-top: calc(var(--space-16) * 0.5); /* 50% reduced top padding */
}

@media (min-width: 768px) {
  .completed-projects {
    padding-top: calc(var(--space-24) * 0.5);
  }
}

@media (min-width: 1920px) {
  .completed-projects {
    padding-top: calc(var(--space-32) * 0.5);
  }
}

.completed-projects__shell {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}

.completed-projects__header,
.completed-projects__empty,
.completed-projects__loading {
  text-align: center;
  max-width: 760px;
  margin-inline: auto;
}

.completed-projects__label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-accent);
  margin-bottom: var(--space-3);
}

.completed-projects__label::before,
.completed-projects__label::after {
  content: '';
  width: 24px;
  height: 1px;
  background-color: var(--color-accent);
  opacity: 0.5;
}

.completed-projects__heading {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-4);
}

.completed-projects__intro {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  line-height: var(--line-height-base);
  margin-bottom: 0;
}

.completed-projects__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}

@media (min-width: 640px) {
  .completed-projects__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-6);
  }
}

@media (min-width: 768px) {
  .completed-projects__grid {
    gap: var(--space-8);
  }
}

@media (min-width: 1024px) {
  .completed-projects__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.project-card {
  background: var(--color-card-background);
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  transition: transform var(--duration-base) var(--ease-spring),
              box-shadow var(--duration-base) var(--ease-spring),
              border-color var(--duration-base) var(--ease-standard);
}

@media (hover: hover) {
  .project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(184, 134, 11, 0.2);
  }
}

.project-card__image-wrapper {
  position: relative;
  aspect-ratio: 4 / 3; /* Saves viewport on small screens */
  overflow: hidden;
  background: var(--color-background);
}

@media (min-width: 640px) {
  .project-card__image-wrapper {
    aspect-ratio: 1 / 1;
  }
}

@media (min-width: 1024px) {
  .project-card__image-wrapper {
    aspect-ratio: 5 / 4;
  }
}

.project-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-standard);
}

.project-card:hover .project-card__image {
  transform: scale(1.06);
}

.project-card__badge {
  position: absolute;
  top: var(--space-4);
  left: var(--space-4);
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-pill);
  background: rgba(17, 24, 39, 0.82);
  color: var(--color-accent);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-card__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  padding: var(--space-4);
  flex: 1;
}

@media (min-width: 640px) {
  .project-card__content {
    gap: var(--space-3);
    padding: var(--space-6);
  }
}

.project-card__title {
  font-size: var(--text-xl);
  margin-bottom: 0;
}

.project-card__description {
  font-size: var(--text-sm);
  line-height: var(--line-height-loose);
  margin-bottom: 0;
  color: var(--color-text-secondary);
}

.completed-projects__footer {
  text-align: center;
  margin-top: var(--space-8);
}

.completed-projects__view-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-8);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  font-size: var(--text-sm);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-primary);
  background: var(--color-card-background);
  transition: border-color var(--duration-base) var(--ease-standard),
              color var(--duration-base) var(--ease-standard),
              transform var(--duration-fast) var(--ease-standard),
              box-shadow var(--duration-base) var(--ease-standard);
}

@media (hover: hover) {
  .completed-projects__view-more:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
  }
}

.completed-projects__view-more svg {
  width: 16px;
  height: 16px;
  transition: transform var(--duration-base) var(--ease-standard);
}

.completed-projects__view-more:hover svg {
  transform: translateX(3px);
}

/* ==========================================================================
   CAC Certificate Section — Premium Corporate Trust Component
   Redesigned: Modern split-panel glass card with editorial polish
   ========================================================================== */
.cac-section {
  background: linear-gradient(160deg, #0c1120 0%, #141c2e 35%, #1a2440 65%, #0f1726 100%);
  position: relative;
  overflow: hidden;
}

/* Primary ambient glow — warm gold radiance top-right */
.cac-section::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 700px;
  height: 700px;
  border-radius: var(--radius-circle);
  background: radial-gradient(circle, rgba(184, 134, 11, 0.1) 0%, rgba(184, 134, 11, 0.03) 40%, transparent 70%);
  pointer-events: none;
  animation: cac-glow-drift 12s ease-in-out infinite alternate;
}

/* Secondary ambient glow — subtle accent bottom-left */
.cac-section::after {
  content: '';
  position: absolute;
  bottom: -25%;
  left: -8%;
  width: 500px;
  height: 500px;
  border-radius: var(--radius-circle);
  background: radial-gradient(circle, rgba(184, 134, 11, 0.06) 0%, transparent 60%);
  pointer-events: none;
  animation: cac-glow-drift 10s ease-in-out 2s infinite alternate-reverse;
}

@keyframes cac-glow-drift {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(20px, -15px) scale(1.05); }
}

/* Main container — elevated glass card wrapping both columns */
.cac-section__container {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
  align-items: center;
  max-width: 1140px;
  margin-inline: auto;
  position: relative;
  z-index: 1;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.015) 100%);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-2xl);
  padding: clamp(var(--space-6), 4vw, var(--space-12));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.25),
              0 0 0 1px rgba(255, 255, 255, 0.04),
              inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

@media (min-width: 768px) {
  .cac-section__container {
    grid-template-columns: 1.15fr 0.85fr;
    gap: var(--space-12);
    padding: var(--space-12) var(--space-10);
  }
}

@media (min-width: 1024px) {
  .cac-section__container {
    padding: var(--space-16) var(--space-14);
  }
}

/* Left Column: Content */
.cac-section__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-3);
}

/* Shield Icon — refined with subtle inner glow */
.cac-section__icon-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(184, 134, 11, 0.15) 0%, rgba(184, 134, 11, 0.08) 100%);
  color: var(--color-accent);
  margin-bottom: var(--space-2);
  align-self: flex-start;
  box-shadow: inset 0 0 0 1px rgba(184, 134, 11, 0.12),
              0 4px 16px rgba(184, 134, 11, 0.08);
}

@media (min-width: 640px) {
  .cac-section__icon-wrapper {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-xl);
  }
}

.cac-section__icon-wrapper svg {
  width: 34px;
  height: 34px;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 6px rgba(184, 134, 11, 0.3));
}

/* Animated pulse ring behind the shield icon */
.cac-section__icon-pulse {
  position: absolute;
  inset: -3px;
  border-radius: inherit;
  border: 1.5px solid rgba(184, 134, 11, 0.25);
  animation: pulse-ring 3s ease-out infinite;
}

/* Eyebrow label */
.cac-section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-accent);
  margin-bottom: var(--space-1);
}

.cac-section__eyebrow::before {
  content: '';
  width: 28px;
  height: 1.5px;
  background: linear-gradient(90deg, var(--color-accent), transparent);
}

/* Heading */
.cac-section__heading {
  font-size: var(--text-3xl);
  color: var(--color-surface);
  margin-bottom: var(--space-3);
  line-height: var(--line-height-snug);
  letter-spacing: var(--tracking-tight);
}

/* Description text */
.cac-section__text {
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.6);
  line-height: var(--line-height-loose);
  max-width: 520px;
}

/* Premium CTA Button — refined with better proportions */
.cac-section__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  margin-top: var(--space-4);
  padding: var(--space-4) var(--space-10);
  background: linear-gradient(135deg, var(--color-accent) 0%, #d4af37 100%);
  color: var(--color-surface);
  border-radius: var(--radius-pill);
  font-size: var(--text-base);
  font-weight: 700;
  letter-spacing: 0.04em;
  border: none;
  box-shadow: 0 4px 20px rgba(184, 134, 11, 0.3),
              0 0 0 1px rgba(184, 134, 11, 0.15);
  min-height: 54px;
  transition: transform var(--duration-base) var(--ease-spring),
              box-shadow var(--duration-base) var(--ease-spring),
              background var(--duration-base) var(--ease-standard);
  position: relative;
  z-index: 2;
  width: 100%;
}

@media (min-width: 640px) {
  .cac-section__button {
    width: auto;
  }
}

@media (hover: hover) {
  .cac-section__button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(184, 134, 11, 0.4),
                0 0 0 1px rgba(184, 134, 11, 0.25);
    background: linear-gradient(135deg, #d4af37 0%, var(--color-accent) 100%);
  }
}

.cac-section__button:active {
  transform: translateY(0);
}

.cac-section__button:focus-visible {
  outline: 2px solid var(--color-surface);
  outline-offset: 4px;
}

.cac-section__button svg {
  width: 20px;
  height: 20px;
  transition: transform var(--duration-base) var(--ease-standard);
}

.cac-section__button:hover svg {
  transform: translateX(4px);
}

/* Right Column: Trust Badges — frosted glass panels */
.cac-section__badges {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.cac-section__badge {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-4);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background var(--duration-base) var(--ease-standard),
              border-color var(--duration-base) var(--ease-standard),
              transform var(--duration-base) var(--ease-standard),
              box-shadow var(--duration-base) var(--ease-standard);
}

@media (min-width: 640px) {
  .cac-section__badge {
    gap: var(--space-4);
    padding: var(--space-6);
  }
}

@media (hover: hover) {
  .cac-section__badge:hover {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.09) 0%, rgba(255, 255, 255, 0.04) 100%);
    border-color: rgba(184, 134, 11, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2),
                0 0 0 1px rgba(184, 134, 11, 0.08);
  }
}

/* Badge icon — warm accent circle */
.cac-section__badge-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(184, 134, 11, 0.14) 0%, rgba(184, 134, 11, 0.06) 100%);
  color: var(--color-accent);
  box-shadow: inset 0 0 0 1px rgba(184, 134, 11, 0.1);
  transition: transform var(--duration-base) var(--ease-spring),
              background var(--duration-base) var(--ease-standard);
}

.cac-section__badge:hover .cac-section__badge-icon {
  transform: scale(1.08);
  background: linear-gradient(135deg, rgba(184, 134, 11, 0.2) 0%, rgba(184, 134, 11, 0.1) 100%);
}

.cac-section__badge-icon svg {
  width: 24px;
  height: 24px;
}

/* Badge text content */
.cac-section__badge-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.cac-section__badge-content strong {
  font-size: var(--text-base);
  font-weight: var(--font-weight-semibold);
  color: var(--color-surface);
  letter-spacing: 0.01em;
}

.cac-section__badge-content span {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.5);
  line-height: var(--line-height-base);
}


/* ==========================================================================
   Mission & Vision Section
   ========================================================================== */
.mission-vision {
  background-color: var(--color-background);
}

.mission-vision__header {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: var(--space-12);
}

@media (max-width: 767px) {
  .mission-vision__header {
    margin-bottom: var(--space-8);
  }

  .mission-vision__card {
    padding: var(--space-6);
  }
}

@media (min-width: 1920px) {
  .mission-vision__header {
    max-width: 800px;
  }
}

.mission-vision__heading {
  font-size: var(--text-3xl);
  font-family: var(--font-heading);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
  letter-spacing: var(--tracking-tight);
  margin-bottom: var(--space-4);
}

.mission-vision__intro {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  line-height: var(--line-height-base);
  margin-bottom: 0;
}

/* Two-Column Card Grid */
.mission-vision__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}

@media (min-width: 640px) {
  .mission-vision__grid {
    gap: var(--space-6);
  }
}

@media (min-width: 768px) {
  .mission-vision__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-8);
  }
}

/* Card Styling */
.mission-vision__card {
  background-color: var(--color-card-background);
  border: 1px solid rgba(0, 0, 0, 0.04);
  /* Refined accent border at the top for premium feel */
  border-top: 4px solid var(--color-accent);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  transition: transform var(--duration-base) var(--ease-spring),
              box-shadow var(--duration-base) var(--ease-spring),
              border-color var(--duration-base) var(--ease-standard);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
}

.mission-vision__card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle at top right, rgba(184, 134, 11, 0.06), transparent 70%);
  pointer-events: none;
}

@media (hover: hover) {
  .mission-vision__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  }
}

/* Icon Container */
.mission-vision__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  background-color: rgba(184, 134, 11, 0.08);
  margin-bottom: var(--space-6);
}

.mission-vision__icon svg {
  width: 28px;
  height: 28px;
  color: var(--color-accent);
}

/* Card Typography */
.mission-vision__card-title {
  font-size: var(--text-xl);
  font-family: var(--font-heading);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
  letter-spacing: var(--tracking-tight);
  margin-bottom: var(--space-4);
}

.mission-vision__card-text {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: var(--line-height-base);
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .mission-vision__card {
    padding: var(--space-12);
  }

  .mission-vision__card-text {
    font-size: var(--text-base);
    line-height: var(--line-height-loose);
  }
}


/* ==========================================================================
   Who We Are Section — Premium Brand Story
   ========================================================================== */
.who-we-are {
  /* background: linear-gradient(180deg, var(--color-background) 0%, #f0ece3 100%); */
  background: var(--main-background);
  position: relative;
}

/* Smooth transition into footer */
.who-we-are::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent 0%, var(--color-primary) 100%);
  pointer-events: none;
}

@media (max-width: 767px) {
  .who-we-are::after {
    height: 80px;
  }

  
  .who-we-are__card {
  
    padding: var(--space-6) var(--space-5);
    gap: var(--space-8);
  }

  .who-we-are__heading {
    font-size: clamp(1.75rem, 6vw, 2.3rem);
    margin-bottom: var(--space-4);
  }

  .who-we-are__text {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .who-we-are__highlight {
    padding: var(--space-5) var(--space-5) var(--space-5) var(--space-6);
  }
}

.who-we-are__container {
  max-width: var(--container-max-width);
  margin-inline: auto;
  position: relative;
  z-index: 1;
  padding-bottom: var(--space-16);
  padding-inline: 0;
}

.who-we-are__card {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
  align-items: start;
  background: var(--color-card-background);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-2xl);
  padding: var(--space-8) var(--space-4);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.06),
              0 4px 12px rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
}

/* Decorative accent orb */
.who-we-are__card::before {
  content: '';
  position: absolute;
  inset: auto auto -80px -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 134, 11, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

@media (min-width: 768px) {
  .who-we-are__card {
    grid-template-columns: 1.15fr 0.85fr;
    padding: var(--space-14) var(--space-8);
    align-items: center;
  }
}

@media (min-width: 1024px) {
  .who-we-are__card {
    padding: var(--space-16) var(--space-10);
  }
}

.who-we-are__content {
  display: flex;
  flex-direction: column;
}

.who-we-are__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-accent);
  margin-bottom: var(--space-3);
}

.who-we-are__eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background-color: var(--color-accent);
  opacity: 0.6;
}

.who-we-are__heading {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-6);
  line-height: var(--line-height-snug);
}

.who-we-are__text {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  line-height: var(--line-height-loose);
  max-width: 540px;
}

.who-we-are__text:last-of-type {
  margin-bottom: 0;
}

/* Highlight Stats Panel */
.who-we-are__highlights {
  display: grid;
  gap: var(--space-4);
}

.who-we-are__highlight {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  padding: var(--space-6) var(--space-6) var(--space-6) var(--space-8);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(184, 134, 11, 0.12);
  background: linear-gradient(145deg, rgba(255,255,255,0.98) 0%, rgba(248,243,231,0.95) 100%);
  box-shadow: var(--shadow-sm);
  transition: transform var(--duration-base) var(--ease-spring),
              box-shadow var(--duration-base) var(--ease-spring),
              border-color var(--duration-base) var(--ease-standard);
}

/* Accent left border */
.who-we-are__highlight-accent {
  position: absolute;
  left: 0;
  top: var(--space-4);
  bottom: var(--space-4);
  width: 3px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: linear-gradient(180deg, var(--color-accent) 0%, #d4af37 100%);
}

@media (hover: hover) {
  .who-we-are__highlight:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: rgba(184, 134, 11, 0.25);
  }
}

.who-we-are__highlight strong {
  font-size: var(--text-lg);
  font-family: var(--font-heading);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
}

.who-we-are__highlight span {
  color: var(--color-text-secondary);
  font-size: var(--text-sm);
  line-height: var(--line-height-base);
}
