/* ============================================================
   WILLARD GLOBAL LINKS — Home Page Styles
   ============================================================ */
   
html, body {
    overflow-x: clip;
    max-width: 100%;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy-dark);
  z-index: 0;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 19, 64, 0.97) 0%,
    rgba(26, 31, 110, 0.85) 50%,
    rgba(15, 19, 64, 0.75) 100%
  );
}

/* Animated particles */
.hero__particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
  animation: floatParticle 12s ease-in-out infinite;
}

.hero__particle--1 {
  width: 500px;
  height: 500px;
  background: var(--gold);
  top: -100px;
  right: -100px;
  animation-delay: 0s;
}

.hero__particle--2 {
  width: 300px;
  height: 300px;
  background: var(--red);
  bottom: 50px;
  left: 10%;
  animation-delay: 4s;
}

.hero__particle--3 {
  width: 200px;
  height: 200px;
  background: var(--gold-light);
  top: 30%;
  left: 40%;
  animation-delay: 8s;
}

@keyframes floatParticle {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(20px, -30px) scale(1.05); }
  66%       { transform: translate(-15px, 20px) scale(0.95); }
}

.hero__container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
  padding-top: var(--space-3xl);
  padding-bottom: var(--space-3xl);
  min-height: 100vh;
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

/* Eyebrow */
.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}

.hero__eyebrow-line {
  display: block;
  width: 40px;
  height: 2px;
  background: var(--gold);
  border-radius: var(--radius-full);
}

/* Title */
.hero__title {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin: 0;
}

.hero__title em {
  font-style: italic;
  color: var(--gold-light);
}

/* Subtitle */
.hero__subtitle {
  font-size: var(--text-md);
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
  max-width: 500px;
  font-weight: 300;
}

/* Actions */
.hero__actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-top: var(--space-sm);
}

/* Trust bar */
.hero__trust {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  margin-top: var(--space-sm);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.5px;
}

.hero__trust-item svg {
  color: var(--gold);
}

.hero__trust-divider {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.15);
}

/* Hero image */
.hero__image-wrap {
  position: relative;
}

.hero__image-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.hero__image-frame:hover .hero__image {
  transform: scale(1.04);
}

/* Floating badge */
.hero__badge {
  position: absolute;
  bottom: var(--space-xl);
  left: calc(-1 * var(--space-xl));
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-md) var(--space-lg);
  display: flex;
  align-items: center;
  gap: var(--space-md);
  box-shadow: var(--shadow-lg);
  animation: badgeFloat 3s ease-in-out infinite;
}

@keyframes badgeFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

.hero__badge-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(26, 31, 110, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  flex-shrink: 0;
}

.hero__badge-value {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

.hero__badge-label {
  font-size: var(--text-xs);
  color: var(--gray);
  margin-top: 2px;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: var(--space-xl);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  z-index: 1;
  animation: scrollBounce 2s ease-in-out infinite;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
}

.hero__scroll span {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ── STATS BAR ── */
.stats-bar {
  background: var(--navy);
  padding: var(--space-2xl) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-lg) var(--space-xl);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item:last-child {
  border-right: none;
}

.stat-item__value {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 6px;
}

.stat-item__number {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 600;
  color: var(--white);
  line-height: 1;
}

.stat-item__suffix {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--gold);
  font-weight: 400;
}

.stat-item__label {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ── ABOUT INTRO ── */
.about-intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

.about-intro__images {
  position: relative;
  height: 560px;
}

.about-intro__img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 75%;
  height: 80%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-intro__img-secondary {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 55%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--off-white);
}

.about-intro__exp-badge {
  position: absolute;
  top: -20px;
  left: -20px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-md) var(--space-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: var(--shadow-md);
  z-index: 2;
}

.about-intro__exp-number {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.about-intro__exp-number sup {
  font-size: var(--text-lg);
}

.about-intro__exp-text {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.4;
  margin-top: 4px;
  letter-spacing: 0.5px;
}

.about-intro__text {
  margin-bottom: var(--space-md);
  color: var(--charcoal-light);
}

.about-intro__values {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin: var(--space-xl) 0;
}

.about-value {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-md);
  background: var(--off-white);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--red);
  transition: transform var(--transition-base);
}

.about-value:hover {
  transform: translateX(4px);
}

.about-value__icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(26, 31, 110, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  flex-shrink: 0;
}

.about-value strong {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 2px;
}

.about-value p {
  font-size: var(--text-xs);
  color: var(--gray);
  margin: 0;
  line-height: 1.5;
}

/* ── PRODUCTS GRID ── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-bottom: var(--space-3xl);
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--cream-dark);
  transition: all var(--transition-base);
}

.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: transparent;
}

.product-card__image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-card:hover .product-card__image img {
  transform: scale(1.08);
}

.product-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 31, 110, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.product-card:hover .product-card__overlay {
  opacity: 1;
}

.product-card__view {
  background: var(--white);
  color: var(--navy);
  padding: 10px 24px;
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  transform: translateY(10px);
  transition: transform var(--transition-base);
}

.product-card:hover .product-card__view {
  transform: translateY(0);
}

.product-card__badge {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  background: var(--gold);
  color: var(--white);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.product-card__body {
  padding: var(--space-lg) var(--space-xl);
}

.product-card__category {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  display: block;
  margin-bottom: var(--space-sm);
}

.product-card__title {
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: var(--space-sm);
  line-height: 1.3;
}

.product-card__desc {
  font-size: var(--text-sm);
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.product-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--navy);
  transition: gap var(--transition-base), color var(--transition-base);
}

.product-card__link:hover {
  color: var(--red);
  gap: 10px;
}

.products-grid__footer {
  text-align: center;
}

/* ── WHY CHOOSE US ── */
.why-us__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.why-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  transition: all var(--transition-base);
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(196, 151, 58, 0.3);
  transform: translateY(-4px);
}

.why-card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: rgba(196, 151, 58, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: var(--space-lg);
  transition: background var(--transition-base);
}

.why-card:hover .why-card__icon {
  background: rgba(196, 151, 58, 0.25);
}

.why-card__title {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--white);
  margin-bottom: var(--space-md);
}

.why-card__text {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.8;
}

/* ── HOW WE WORK ── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  position: relative;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.process-step__number {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 700;
  color: var(--cream-dark);
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.process-step__connector {
  position: absolute;
  top: 100px;
  left: calc(50% + 40px);
  right: calc(-50% + 40px);
  height: 2px;
  background: linear-gradient(90deg, var(--red), transparent);
  display: none;
}

.process-step:not(:last-child) .process-step__connector {
  display: block;
}

.process-step__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  margin-bottom: var(--space-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.process-step:hover .process-step__icon {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  box-shadow: var(--shadow-navy);
  transform: scale(1.1);
}

.process-step__title {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: var(--space-md);
}

.process-step__text {
  font-size: var(--text-sm);
  color: var(--charcoal-light);
  line-height: 1.7;
}

/* ── CTA BANNER ── */
.cta-banner {
  position: relative;
  background: var(--navy-dark);
  padding: var(--space-5xl) 0;
  overflow: hidden;
}

.cta-banner__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(196, 151, 58, 0.1) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 50%, rgba(192, 57, 43, 0.08) 0%, transparent 70%);
}

.cta-banner__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-3xl);
  align-items: center;
}

.cta-banner__title {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 400;
  color: var(--white);
  margin: var(--space-md) 0;
  line-height: 1.2;
}

.cta-banner__text {
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--text-md);
  max-width: 540px;
  line-height: 1.8;
}

.cta-banner__actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  flex-shrink: 0;
  align-items: flex-start;
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .hero__container {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 120px;
  }

  .hero__image-wrap { display: none; }

  .hero__subtitle { max-width: 100%; margin: 0 auto; }
  .hero__actions  { justify-content: center; }
  .hero__trust    { justify-content: center; }
  .hero__eyebrow  { justify-content: center; }

  .about-intro__grid { grid-template-columns: 1fr; }
  .about-intro__images { display: none; }

  .why-us__grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }

  .cta-banner__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .cta-banner__text  { max-width: 100%; }
  .cta-banner__actions { align-items: center; flex-direction: row; justify-content: center; flex-wrap: wrap; }
}

@media (max-width: 768px) {
  .stats-bar__grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(1),
  .stat-item:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.1); }

  .products-grid { grid-template-columns: 1fr; }
  .why-us__grid  { grid-template-columns: 1fr; }
  .process-grid  { grid-template-columns: repeat(2, 1fr); }
  .process-step__connector { display: none; }

  .hero__actions { flex-direction: column; align-items: center; }
  .cta-banner__actions { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .stats-bar__grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid    { grid-template-columns: 1fr; }
  .hero__trust     { flex-direction: column; gap: var(--space-sm); }
  .hero__trust-divider { display: none; }
}