/* @import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&display=swap'); */

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

:root {
  --gold-primary: #c4a560;
  --gold-secondary: #d4b570;
  --gold-dim: #a88d4a;
  --navy: #0a1628;
  --navy-dark: #050b14;
  --navy-mid: #0d2145;
  --beige-warm: #c8b8a8;
  --beige-light: #e8ddd3;
  --beige-very-light: #f5f2ed;
  --white: #ffffff;
  --text-dark: #2c2c2c;
  --text-light: #f0f8ff;
  --muted: #a0a0a0;
  --card: rgba(196, 165, 96, 0.08);
  --border: rgba(196, 165, 96, 0.2);
  --border-strong: rgba(196, 165, 96, 0.4);
  --shadow-gold: rgba(196, 165, 96, 0.25);
  --shadow-deep: rgba(5, 11, 20, 0.4);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", "Segoe UI", sans-serif;
  color: var(--text-dark);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== NAVBAR ===== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(10, 22, 40, 0.94);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  padding: 1rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.4s ease;
}

nav.scrolled {
  background: rgba(5, 11, 20, 0.98);
  box-shadow: 0 4px 40px var(--shadow-deep);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--white);
}

.logo img {
  max-height: 48px;
  border-radius: 6px;
}
.logo span {
  color: var(--gold-primary);
}

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

.nav-links a {
  text-decoration: none;
  color: rgba(240, 248, 255, 0.75);
  font-weight: 400;
  font-size: 0.9rem;
  letter-spacing: 0.3px;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a:hover {
  color: var(--gold-primary);
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold-primary);
  transition: width 0.4s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.cta-button {
  background: transparent;
  color: var(--gold-primary);
  border: 1px solid var(--gold-primary);
  padding: 0.65rem 1.6rem;
  border-radius: 3px;
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.88rem;
  letter-spacing: 0.5px;
}

.cta-button:hover {
  background: var(--gold-primary);
  color: var(--navy-dark);
}

.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--gold-primary);
  padding: 0.4rem 0.8rem;
  border-radius: 3px;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 3rem 5rem;
  background: var(--navy-dark);
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: -150px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(196, 165, 96, 0.1) 0%,
    transparent 65%
  );
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(13, 33, 69, 0.6) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(196, 165, 96, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196, 165, 96, 0.035) 1px, transparent 1px);
  background-size: 70px 70px;
  pointer-events: none;
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 6rem;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.hero-eyebrow-line {
  width: 28px;
  height: 1px;
  background: var(--gold-primary);
}
.hero-eyebrow span {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold-primary);
}

.hero-content h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: 4.2rem;
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: var(--text-light);
  letter-spacing: -0.5px;
}

.hero-content h1 .highlight {
  color: var(--gold-primary);
  font-style: italic;
}

.hero-content .subtitle {
  font-size: 1rem;
  color: var(--beige-warm);
  font-weight: 400;
  margin-bottom: 1.5rem;
  letter-spacing: 0.3px;
}

.hero-content p {
  font-size: 0.98rem;
  color: rgba(200, 184, 168, 0.75);
  line-height: 1.85;
  margin-bottom: 2.5rem;
  max-width: 500px;
  font-weight: 300;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.btn-primary {
  background: linear-gradient(
    135deg,
    var(--gold-primary),
    var(--gold-secondary)
  );
  color: var(--navy-dark);
  padding: 0.9rem 2.2rem;
  border: none;
  border-radius: 3px;
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  cursor: pointer;
  font-size: 0.9rem;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px var(--shadow-gold);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(196, 165, 96, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--text-light);
  padding: 0.9rem 2.2rem;
  border: 1px solid rgba(240, 248, 255, 0.2);
  border-radius: 3px;
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
  transform: translateY(-2px);
}

.hero-trust {
  display: flex;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(200, 184, 168, 0.6);
  font-weight: 300;
}

.trust-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold-primary);
  flex-shrink: 0;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.glass-card {
  position: absolute;
  border-radius: 12px;
  backdrop-filter: blur(16px);
}

.glass-1 {
  width: 290px;
  height: 290px;
  background: linear-gradient(
    135deg,
    rgba(196, 165, 96, 0.12),
    rgba(196, 165, 96, 0.02)
  );
  border: 1px solid rgba(196, 165, 96, 0.22);
  top: 20px;
  right: 20px;
  animation: float1 7s ease-in-out infinite;
}

.glass-1::before,
.glass-1::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border-color: rgba(196, 165, 96, 0.5);
  border-style: solid;
}

.glass-1::before {
  top: 14px;
  left: 14px;
  border-width: 1px 0 0 1px;
}
.glass-1::after {
  bottom: 14px;
  right: 14px;
  border-width: 0 1px 1px 0;
}

.glass-2 {
  width: 230px;
  height: 230px;
  background: linear-gradient(
    135deg,
    rgba(13, 33, 69, 0.55),
    rgba(10, 22, 40, 0.25)
  );
  border: 1px solid rgba(196, 165, 96, 0.12);
  bottom: 50px;
  left: 10px;
  animation: float2 8.5s ease-in-out infinite;
}

.glass-3 {
  width: 175px;
  height: 175px;
  background: linear-gradient(
    135deg,
    rgba(196, 165, 96, 0.1),
    rgba(200, 184, 168, 0.04)
  );
  border: 1px solid rgba(196, 165, 96, 0.18);
  top: 95px;
  left: 65px;
  animation: float3 9s ease-in-out infinite;
}

.gradient-mesh {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    ellipse at 30% 30%,
    rgba(196, 165, 96, 0.28) 0%,
    transparent 60%
  );
  border-radius: 12px;
  filter: blur(28px);
  animation: meshShift 12s ease infinite;
}

@keyframes float1 {
  0%,
  100% {
    transform: translateY(0px) translateX(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-22px) translateX(-14px) rotate(0.8deg);
  }
}
@keyframes float2 {
  0%,
  100% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(18px) translateX(22px);
  }
}
@keyframes float3 {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-18px) rotate(-0.8deg);
  }
}
@keyframes meshShift {
  0% {
    opacity: 0.4;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.12);
  }
  100% {
    opacity: 0.4;
    transform: scale(1);
  }
}

.hero-visual-content {
  position: relative;
  z-index: 3;
  text-align: center;
}

.hero-icon-circle {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dim), var(--gold-primary));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  font-size: 2.5rem;
  box-shadow: 0 0 60px rgba(196, 165, 96, 0.28);
  animation: heroPulse 4s ease-in-out infinite;
  position: relative;
}

.hero-icon-circle::after {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1px solid rgba(196, 165, 96, 0.25);
  animation: heroPulse 4s ease-in-out infinite reverse;
}

@keyframes heroPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 60px rgba(196, 165, 96, 0.28);
  }
  50% {
    transform: scale(1.06);
    box-shadow: 0 0 90px rgba(196, 165, 96, 0.5);
  }
}

.hero-visual-text {
  color: var(--beige-light);
  font-weight: 400;
  font-size: 0.95rem;
  letter-spacing: 1px;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
}

/* ===== TRUST SECTION ===== */
.trust-section {
  padding: 6rem 3rem;
  background: var(--beige-very-light);
  text-align: center;
  position: relative;
}

.trust-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--border-strong),
    transparent
  );
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--gold-dim);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.section-label::before,
.section-label::after {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--gold-primary);
}

.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 1.5rem;
  line-height: 1.25;
}

.section-subtitle {
  font-size: 1.02rem;
  color: #666;
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.85;
  font-weight: 300;
}

/* ===== SERVICES ===== */
.services-section {
  padding: 4rem 3rem;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.services-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    var(--beige-very-light) 0%,
    var(--white) 18%
  );
  pointer-events: none;
}

/* Decorative background elements */
.services-bg-decoration {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.services-bg-1 {
  width: 450px;
  height: 450px;
  top: -150px;
  right: -100px;
  background: radial-gradient(
    circle,
    rgba(196, 165, 96, 0.08) 0%,
    transparent 70%
  );
  animation: floatBg1 12s ease-in-out infinite;
}

.services-bg-2 {
  width: 350px;
  height: 350px;
  bottom: -50px;
  left: -100px;
  background: radial-gradient(
    circle,
    rgba(196, 165, 96, 0.06) 0%,
    transparent 70%
  );
  animation: floatBg2 15s ease-in-out infinite;
}

.services-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(196, 165, 96, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196, 165, 96, 0.02) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  opacity: 0.5;
}

@keyframes floatBg1 {
  0%,
  100% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(-30px) translateX(-20px);
  }
}

@keyframes floatBg2 {
  0%,
  100% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(25px) translateX(25px);
  }
}

.services-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.services-subtitle {
  font-size: 1.05rem;
  color: #777;
  max-width: 700px;
  margin: 1.5rem auto 0;
  line-height: 1.8;
  font-weight: 300;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.8rem;
  margin-top: 4rem;
  position: relative;
  z-index: 1;
}

.service-card {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(250, 248, 245, 0.9) 100%
  );
  border: 1px solid rgba(196, 165, 96, 0.15);
  border-radius: 16px;
  padding: 1rem 1rem;
  text-align: left;
  transition: all 0.42s cubic-bezier(0.2, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  box-shadow:
    0 10px 35px rgba(13, 33, 69, 0.05),
    0 2px 8px rgba(196, 165, 96, 0.06);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.service-card-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(196, 165, 96, 0.03) 0%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 16px;
  z-index: 0;
}

.service-number {
  position: absolute;
  top: 2rem;
  right: 2.4rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: rgba(196, 165, 96, 0.08);
  line-height: 1;
  z-index: 0;
  transition: color 0.35s ease;
}

.service-card:hover .service-number {
  color: rgba(196, 165, 96, 0.25);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--gold-primary),
    var(--gold-secondary),
    var(--gold-primary)
  );
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.2, 1, 0.3, 1);
  z-index: 3;
  border-radius: 2px;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 30% 30%,
    rgba(196, 165, 96, 0.06) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.42s ease;
  pointer-events: none;
  z-index: 1;
  border-radius: 16px;
}

.service-card:hover {
  transform: translateY(-10px) scale(1.02);
  background: linear-gradient(
    135deg,
    var(--navy-dark) 0%,
    var(--navy-mid) 100%
  );
  border-color: var(--gold-primary);
  box-shadow:
    0 30px 70px rgba(196, 165, 96, 0.2),
    0 8px 24px rgba(196, 165, 96, 0.25);
}

.service-card:hover .service-card-bg {
  background: radial-gradient(
    ellipse at 30% 30%,
    rgba(196, 165, 96, 0.12) 0%,
    transparent 70%
  );
  opacity: 1;
}

.service-card:hover::before {
  transform: scaleX(1);
  box-shadow: 0 2px 8px rgba(196, 165, 96, 0.5);
}

.service-card:hover::after {
  background: radial-gradient(
    ellipse at 30% 30%,
    rgba(196, 165, 96, 0.15) 0%,
    transparent 70%
  );
  opacity: 1;
}

.service-icon-wrapper {
  position: relative;
  width: fit-content;
  margin-bottom: 1.4rem;
  z-index: 2;
}

.service-icon-bg {
  position: absolute;
  width: 80px;
  height: 80px;
  background: radial-gradient(
    circle,
    rgba(196, 165, 96, 0.15) 0%,
    rgba(196, 165, 96, 0.05) 100%
  );
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all 0.4s ease;
  filter: blur(8px);
  z-index: 0;
}

.service-card:hover .service-icon-bg {
  opacity: 1;
  animation: iconGlow 2s ease-in-out infinite;
}

@keyframes iconGlow {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(196, 165, 96, 0.3);
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    box-shadow: 0 0 35px rgba(196, 165, 96, 0.5);
    transform: translate(-50%, -50%) scale(1.05);
  }
}

.service-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(
    135deg,
    var(--white) 0%,
    var(--beige-very-light) 100%
  );
  border: 2px solid rgba(196, 165, 96, 0.18);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  transition: all 0.35s cubic-bezier(0.2, 1, 0.3, 1);
  box-shadow:
    0 8px 24px rgba(13, 33, 69, 0.06),
    inset 0 1px 2px rgba(255, 255, 255, 0.5);
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
  transition: all 0.35s cubic-bezier(0.2, 1, 0.3, 1);
}

.service-card:hover .service-icon {
  background: linear-gradient(
    135deg,
    var(--beige-light) 0%,
    rgba(196, 165, 96, 0.15) 100%
  );
  border-color: var(--gold-primary);
  box-shadow:
    0 12px 32px rgba(196, 165, 96, 0.25),
    inset 0 1px 2px rgba(255, 255, 255, 0.5);
  transform: scale(1.08) rotateY(5deg);
}

.service-card:hover .service-icon img {
  transform: scale(1.1);
}

.service-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.72rem;
  color: var(--navy);
  margin-bottom: 0.6rem;
  font-weight: 600;
  letter-spacing: -0.3px;
  position: relative;
  z-index: 2;
  transition: color 0.35s ease;
}

.service-card:hover h3 {
  color: var(--gold-secondary);
}

.service-card p {
  color: #7a7a7a;
  font-size: 0.94rem;
  line-height: 1.7;
  /* margin-bottom: 1.4rem; */
  font-weight: 300;
  position: relative;
  z-index: 2;
  flex-grow: 1;
  transition: color 0.35s ease;
}

.service-card:hover p {
  color: var(--beige-warm);
}

.service-benefits {
  margin-bottom: 1.4rem;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  color: #666;
  transition: color 0.35s ease;
  line-height: 1.4;
}

.service-card:hover .benefit-item {
  color: var(--beige-light);
}

.benefit-icon {
  width: 20px;
  height: 20px;
  background: linear-gradient(
    135deg,
    var(--gold-primary),
    var(--gold-secondary)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 0.7rem;
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(196, 165, 96, 0.2);
}

.benefit-text {
  flex-grow: 1;
  line-height: 1.4;
}

.service-link {
  color: var(--gold-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.35s cubic-bezier(0.2, 1, 0.3, 1);
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding: 0.5rem 0;
  border-bottom: 2px solid var(--gold-primary);
}

.service-link span {
  transition: transform 0.35s ease;
}

.service-link svg {
  width: 18px;
  height: 18px;
  transition: transform 0.35s cubic-bezier(0.2, 1, 0.3, 1);
}

.service-card:hover .service-link {
  color: var(--gold-secondary);
  border-bottom-color: var(--gold-secondary);
}

.service-link:hover {
  color: var(--gold-secondary);
  border-bottom-color: var(--gold-secondary);
}

.service-link:hover span {
  transform: translateX(2px);
}

.service-link:hover svg {
  transform: translateX(4px) scaleX(1.12);
}

.service-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.6rem;
  position: relative;
  z-index: 2;
}

.service-highlights span {
  background: linear-gradient(
    135deg,
    rgba(196, 165, 96, 0.12) 0%,
    rgba(196, 165, 96, 0.06) 100%
  );
  color: var(--navy);
  padding: 0.35rem 0.8rem;
  border-radius: 24px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  border: 1.5px solid rgba(196, 165, 96, 0.15);
  transition: all 0.35s ease;
  display: inline-block;
  box-shadow: 0 2px 8px rgba(196, 165, 96, 0.08);
}

.service-card:hover .service-highlights span {
  background: linear-gradient(
    135deg,
    rgba(196, 165, 96, 0.18) 0%,
    rgba(196, 165, 96, 0.1) 100%
  );
  border-color: rgba(196, 165, 96, 0.35);
  box-shadow: 0 4px 12px rgba(196, 165, 96, 0.15);
  transform: translateY(-2px);
}

/* Reveal animation for cards */
.reveal {
  opacity: 0;
  transform: translateY(18px) scale(0.996);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition:
    transform 0.7s cubic-bezier(0.2, 1, 0.22, 1),
    opacity 0.6s ease;
}
.reveal-delay-1 {
  transition-delay: 0.08s;
}
.reveal-delay-2 {
  transition-delay: 0.16s;
}
.reveal-delay-3 {
  transition-delay: 0.24s;
}

/* Make the "Learn More" link more prominent on hover */
.service-link {
  text-transform: none;
}
.service-link:hover {
  color: var(--gold-primary);
  transform: translateX(6px);
}

/* Slightly larger container spacing on wide screens */
@media (min-width: 1100px) {
  .services-grid {
    gap: 3rem;
  }
  .service-card {
    padding: 2rem;
  }
}

/* ===== HIGHLIGHTS ===== */
.highlights-section {
  padding: 7rem 3rem;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.highlights-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--border-strong),
    transparent
  );
}

.highlights-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Cormorant Garamond", serif;
  font-size: 18rem;
  font-weight: 700;
  color: rgba(196, 165, 96, 0.025);
  pointer-events: none;
  white-space: nowrap;
  letter-spacing: 20px;
  user-select: none;
}

.highlights-section .section-title {
  color: var(--text-light);
}
.highlights-section .section-label {
  color: var(--gold-secondary);
}
.highlights-section .section-label::before,
.highlights-section .section-label::after {
  background: var(--gold-secondary);
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 3.5rem;
  position: relative;
  z-index: 2;
}

.highlight-card {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2.5rem;
  position: relative;
  transition: all 0.4s ease;
  overflow: hidden;
}

.highlight-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-primary), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.highlight-card:hover {
  background: rgba(196, 165, 96, 0.06);
  border-color: var(--border-strong);
  transform: translateY(-4px);
}

.highlight-card:hover::after {
  transform: scaleX(1);
}

.highlight-number {
  font-family: "Cormorant Garamond", serif;
  font-size: 4rem;
  font-weight: 300;
  color: rgba(196, 165, 96, 0.18);
  line-height: 1;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.highlight-card:hover .highlight-number {
  color: rgba(196, 165, 96, 0.45);
}

.highlight-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  color: var(--beige-light);
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.highlight-card p {
  color: rgba(200, 184, 168, 0.6);
  font-size: 0.9rem;
  line-height: 1.75;
  font-weight: 300;
}

/* ===== SHOWCASE ===== */
.showcase-section {
  padding: 7rem 3rem;
  background: var(--beige-very-light);
  position: relative;
  overflow: hidden;
}

.showcase-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--border-strong),
    transparent
  );
}

.showcase-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.showcase-description {
  max-width: 700px;
  margin: 0 auto 4rem;
  font-size: 1.02rem;
  line-height: 1.85;
  color: #777;
  font-weight: 300;
}

.showcase-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
}

.stat-box {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--border);
  position: relative;
  transition: background 0.3s ease;
}

.stat-box:last-child {
  border-right: none;
}

.stat-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--gold-primary),
    var(--gold-secondary)
  );
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.stat-box:hover {
  background: var(--card);
}
.stat-box:hover::before {
  transform: scaleX(1);
}

.stat-number {
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold-dim);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem;
  color: #999;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 400;
}

/* ===== CTA ===== */
.cta-final {
  padding: 9rem 3rem;
  background: var(--navy-dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-final::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 350px;
  background: radial-gradient(
    ellipse,
    rgba(196, 165, 96, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.cta-ornament {
  position: absolute;
  width: 50px;
  height: 50px;
  border-color: rgba(196, 165, 96, 0.25);
  border-style: solid;
}

.cta-ornament.top-left {
  top: 3rem;
  left: 3rem;
  border-width: 1px 0 0 1px;
}
.cta-ornament.top-right {
  top: 3rem;
  right: 3rem;
  border-width: 1px 1px 0 0;
}
.cta-ornament.bottom-left {
  bottom: 3rem;
  left: 3rem;
  border-width: 0 0 1px 1px;
}
.cta-ornament.bottom-right {
  bottom: 3rem;
  right: 3rem;
  border-width: 0 1px 1px 0;
}

.cta-final .section-title {
  color: var(--text-light);
  position: relative;
  z-index: 2;
}
.cta-final .section-subtitle {
  color: rgba(200, 184, 168, 0.65);
  font-weight: 300;
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
}

.cta-buttons-group {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

/* ===== FOOTER ===== */
footer {
  background: var(--navy-dark);
  color: var(--white);
  padding: 5rem 3rem 2rem;
  border-top: 1px solid var(--border);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(4, 1fr);
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-section h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  color: var(--gold-primary);
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.footer-section ul {
  list-style: none;
}
.footer-section li {
  margin-bottom: 0.7rem;
}

.footer-section a {
  color: rgba(240, 248, 255, 0.45);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 300;
  transition: all 0.3s ease;
}

.footer-section a:hover {
  color: var(--gold-primary);
  padding-left: 5px;
}

.footer-brand p {
  color: rgba(240, 248, 255, 0.4);
  font-size: 0.88rem;
  line-height: 1.7;
  font-weight: 300;
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
}

.footer-contact {
  color: rgba(240, 248, 255, 0.45);
  font-size: 0.88rem;
  line-height: 2;
  font-weight: 300;
}

.social-icons {
  display: flex;
  gap: 0.7rem;
  margin-top: 1.5rem;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 4px;
  background: rgba(196, 165, 96, 0.07);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(196, 165, 96, 0.65);
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.85rem;
  font-weight: 500;
}

.social-icon:hover {
  background: var(--gold-primary);
  color: var(--navy-dark);
  border-color: var(--gold-primary);
  transform: translateY(-2px);
}

.footer-divider {
  border-top: 1px solid rgba(196, 165, 96, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-divider p {
  color: rgba(240, 248, 255, 0.3);
  font-size: 0.82rem;
  font-weight: 300;
}
.footer-divider a {
  color: rgba(196, 165, 96, 0.55);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-divider a:hover {
  color: var(--gold-primary);
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: rgba(240, 248, 255, 0.3);
  border: 1px solid var(--border);
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
}

.footer-badge-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #4ade80;
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}
.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* ===== MEDIMINE SECTION ===== */
.medimine-section {
  padding: 6rem 3rem;
  background: linear-gradient(
    180deg,
    var(--beige-very-light) 0%,
    var(--white) 100%
  );
  position: relative;
  overflow: hidden;
}

.medimine-section::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(196, 165, 96, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.medimine-section::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 350px;
  height: 350px;
  background: radial-gradient(
    circle,
    rgba(13, 33, 69, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.medimine-header {
  text-align: center;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.medimine-header .section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--gold-dim);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.medimine-header .section-label::before,
.medimine-header .section-label::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold-primary);
}

.medimine-subtitle {
  color: var(--text-dark);
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.7;
  font-weight: 400;
}

.medimine-content {
  max-width: 1100px;
  margin: 0 auto 4rem;
  position: relative;
  z-index: 2;
}

.medimine-intro {
  color: var(--text-dark);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 3rem;
  text-align: center;
}

.medimine-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-primary);
  box-shadow: 0 12px 40px rgba(196, 165, 96, 0.15);
  background: linear-gradient(135deg, rgba(196, 165, 96, 0.02), var(--white));
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-primary), transparent);
  transform: scaleX(0);
  transition: transform 0.6s ease;
  border-radius: 12px 12px 0 0;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
  color: var(--gold-primary);
}

.feature-card h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.feature-card p {
  color: var(--text-dark);
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.85;
}

.medimine-cta {
  text-align: center;
  position: relative;
  z-index: 2;
}

.medimine-cta .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  background: linear-gradient(
    135deg,
    var(--gold-primary),
    var(--gold-secondary)
  );
  color: var(--navy-dark);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(196, 165, 96, 0.3);
  border: none;
  position: relative;
  overflow: hidden;
}

.medimine-cta .btn-primary i {
  transition:
    transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
    opacity 0.3s ease;
  display: inline-block;
}

.medimine-cta .btn-primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 16px 40px rgba(196, 165, 96, 0.5);
  background: linear-gradient(135deg, var(--gold-secondary), #e8c86a);
}

.medimine-cta .btn-primary:hover i {
  transform: translateX(5px);
}

.medimine-cta-text {
  color: var(--text-dark);
  margin-top: 1.5rem;
  font-size: 0.95rem;
  opacity: 0.7;
}

/* ===== M-SUITE SECTION ===== */
.msuite-section {
  padding: 6rem 3rem;
  background: linear-gradient(
    180deg,
    var(--beige-very-light) 0%,
    var(--white) 100%
  );
  position: relative;
  overflow: hidden;
}

.msuite-section::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(196, 165, 96, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.msuite-section::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 350px;
  height: 350px;
  background: radial-gradient(
    circle,
    rgba(13, 33, 69, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.msuite-header {
  text-align: center;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.msuite-header .section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--gold-dim);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.msuite-header .section-label::before,
.msuite-header .section-label::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold-primary);
}

.msuite-content {
  max-width: 1100px;
  margin: 0 auto 4rem;
  position: relative;
  z-index: 2;
}

.msuite-intro {
  color: var(--text-dark);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 3rem;
  text-align: center;
}

.msuite-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.msuite-cta {
  text-align: center;
  position: relative;
  z-index: 2;
}

.msuite-cta .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  background: linear-gradient(
    135deg,
    var(--gold-primary),
    var(--gold-secondary)
  );
  color: var(--navy-dark);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(196, 165, 96, 0.3);
  border: none;
  position: relative;
  overflow: hidden;
}

.msuite-cta .btn-primary i {
  transition:
    transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
    opacity 0.3s ease;
  display: inline-block;
}

.msuite-cta .btn-primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 16px 40px rgba(196, 165, 96, 0.5);
  background: linear-gradient(135deg, var(--gold-secondary), #e8c86a);
}

.msuite-cta .btn-primary:hover i {
  transform: translateX(5px);
}

/* ===== GLOBAL FINANCE DELIVERY CENTER SECTION ===== */
.gfdc-section {
  padding: 6rem 3rem;
  background: linear-gradient(
    180deg,
    var(--beige-very-light) 0%,
    var(--white) 100%
  );
  position: relative;
  overflow: hidden;
}

.gfdc-section::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(196, 165, 96, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.gfdc-section::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 350px;
  height: 350px;
  background: radial-gradient(
    circle,
    rgba(13, 33, 69, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.gfdc-header {
  text-align: center;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.gfdc-header .section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--gold-dim);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.gfdc-header .section-label::before,
.gfdc-header .section-label::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold-primary);
}

.gfdc-content {
  max-width: 1100px;
  margin: 0 auto 4rem;
  position: relative;
  z-index: 2;
}

.gfdc-intro {
  color: var(--text-dark);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 3rem;
  text-align: center;
}

.gfdc-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.gfdc-cta {
  text-align: center;
  position: relative;
  z-index: 2;
}

.gfdc-cta .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  background: linear-gradient(
    135deg,
    var(--gold-primary),
    var(--gold-secondary)
  );
  color: var(--navy-dark);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(196, 165, 96, 0.3);
  border: none;
  position: relative;
  overflow: hidden;
}

.gfdc-cta .btn-primary i {
  transition:
    transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
    opacity 0.3s ease;
  display: inline-block;
}

.gfdc-cta .btn-primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 16px 40px rgba(196, 165, 96, 0.5);
  background: linear-gradient(135deg, var(--gold-secondary), #e8c86a);
}

.gfdc-cta .btn-primary:hover i {
  transform: translateX(5px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  nav {
    padding: 0.9rem 1.5rem;
  }
  .hero {
    padding: 7rem 1.5rem 4rem;
  }
  .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero-content h1 {
    font-size: 2.8rem;
  }
  .nav-links {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .section-title {
    font-size: 2.2rem;
  }
  .hero-visual {
    height: 300px;
  }
  .trust-section,
  .services-section,
  .highlights-section,
  .showcase-section,
  .cta-final {
    padding: 4rem 1.5rem;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .hero-buttons {
    flex-direction: column;
  }
  .btn-primary,
  .btn-secondary {
    text-align: center;
  }
  .cta-buttons-group {
    flex-direction: column;
  }
  .cta-buttons-group button {
    width: 100%;
  }
  .showcase-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-box:nth-child(2n) {
    border-right: none;
  }
  .stat-box {
    border-bottom: 1px solid var(--border);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .cta-ornament {
    width: 30px;
    height: 30px;
  }
  .highlights-bg-text {
    display: none;
  }
  .medimine-section {
    padding: 1rem 1.5rem;
  }
  .medimine-header .section-title {
    font-size: 2.2rem;
  }
  .medimine-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .medimine-intro {
    font-size: 1rem;
  }
  .msuite-section {
    padding: 1rem 1.5rem;
  }
  .msuite-header .section-label {
    font-size: 0.7rem;
  }
  .msuite-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .msuite-intro {
    font-size: 1rem;
  }
  .gfdc-section {
    padding: 1rem 1.5rem;
  }
  .gfdc-header .section-label {
    font-size: 0.7rem;
  }
  .gfdc-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .gfdc-intro {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  nav {
    padding: 0.8rem 1rem;
  }
  .hero {
    padding: 6rem 1rem 3rem;
  }
  .hero-content h1 {
    font-size: 2rem;
  }
  .section-title {
    font-size: 1.9rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .showcase-stats {
    grid-template-columns: 1fr;
  }
  .stat-box {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .cta-ornament {
    display: none;
  }
  .medimine-section {
    padding: 4rem 1rem;
  }
  .medimine-header .section-title {
    font-size: 1.8rem;
  }
  .medimine-features {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .feature-card {
    padding: 1.5rem;
  }
  .medimine-cta .btn-primary {
    padding: 0.9rem 2rem;
    font-size: 0.9rem;
  }
  .msuite-section {
    padding: 4rem 1rem;
  }
  .msuite-header .section-label {
    font-size: 0.7rem;
  }
  .msuite-features {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .msuite-cta .btn-primary {
    padding: 0.9rem 2rem;
    font-size: 0.9rem;
  }
  .gfdc-section {
    padding: 4rem 1rem;
  }
  .gfdc-header .section-label {
    font-size: 0.7rem;
  }
  .gfdc-features {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .gfdc-cta .btn-primary {
    padding: 0.9rem 2rem;
    font-size: 0.9rem;
  }
}

.nav-links.open {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 65px;
  left: 0;
  right: 0;
  background: rgba(5, 11, 20, 0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 2rem;
  gap: 1.5rem;
  z-index: 999;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =============================================
   HERO IMAGE VISUAL
   ============================================= */

.hv-frame {
  position: relative;
  width: 100%;
  height: 450px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow:
    0 32px 80px rgba(5,11,20,0.55),
    0 0 0 1px rgba(196,165,96,0.15);
}

/* Photo */
.hv-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s ease;
}
.hv-frame:hover .hv-photo {
  transform: scale(1.03);
}

/* Dark gradient scrim — stronger at bottom so cards read */
.hv-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(5,11,20,0.18) 0%,
    rgba(5,11,20,0.12) 40%,
    rgba(5,11,20,0.72) 100%
  );
  pointer-events: none;
}

/* Gold border accent on the frame */
.hv-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 18px;
  border: 1px solid rgba(196, 165, 96, 0.22);
  pointer-events: none;
}

/* ── Top-right: live status pill ── */
.hv-pill {
  position: absolute;
  top: 18px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(5,11,20,0.78);
  border: 1px solid rgba(196,165,96,0.3);
  color: rgba(240,248,255,0.8);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.4px;
  padding: 6px 14px;
  border-radius: 20px;
  backdrop-filter: blur(12px);
  /* entrance */
  opacity: 0;
  transform: translateY(-8px);
  transition:
    opacity 0.5s ease 0.3s,
    transform 0.5s ease 0.3s;
}
.hv-frame:not(.hv-init) .hv-pill,
.hv-pill.hv-visible {
  opacity: 1;
  transform: translateY(0);
}

.hv-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 6px rgba(74, 222, 128, 0.7);
  flex-shrink: 0;
}

/* ── Bottom metrics bar ── */
.hv-metrics {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 18px 24px;
  background: rgba(5, 11, 20, 0.82);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(196, 165, 96, 0.2);
  /* entrance */
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.55s ease 0.5s,
    transform 0.55s ease 0.5s;
}
.hv-metrics.hv-visible {
  opacity: 1;
  transform: translateY(0);
}

.hv-metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.hv-metric-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--gold-secondary);
  line-height: 1;
}
.hv-metric-lbl {
  font-size: 0.65rem;
  color: rgba(240, 248, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1.2px;
}
.hv-metric-divider {
  width: 1px;
  height: 32px;
  background: rgba(196, 165, 96, 0.2);
}

/* ── Left floating service card ── */
.hv-service-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px 16px;
  background: rgba(5, 11, 20, 0.82);
  border: 1px solid rgba(196, 165, 96, 0.28);
  border-radius: 12px;
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 28px rgba(5, 11, 20, 0.4);
  min-width: 190px;
  /* entrance */
  opacity: 0;
  transition:
    opacity 0.5s ease,
    transform 0.5s ease,
    box-shadow 0.3s ease;
}
.hv-service-card:hover {
  border-color: rgba(196, 165, 96, 0.55);
  box-shadow: 0 12px 36px rgba(196, 165, 96, 0.18);
}

.hv-card-left {
  top: 50%;
  left: -16px;
  transform: translateY(-50%) translateX(-10px);
  transition-delay: 0.65s;
}
.hv-card-left.hv-visible {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.hv-card-right {
  top: 28%;
  right: -16px;
  transform: translateY(-50%) translateX(10px);
  transition-delay: 0.8s;
}
.hv-card-right.hv-visible {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.hv-scard-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: rgba(196, 165, 96, 0.12);
  border: 1px solid rgba(196, 165, 96, 0.25);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  font-size: 0.95rem;
}
/* ── Service highlights ── */
.hv-services {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 40px);
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  transition: opacity 0.5s ease 0.4s;
}
.hv-services.hv-visible {
  opacity: 1;
}

.hv-svc {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 18px;
  background: rgba(5, 11, 20, 0.72);
  border: 1px solid rgba(196, 165, 96, 0.2);
  border-left: 3px solid var(--gold-primary);
  border-radius: 10px;
  backdrop-filter: blur(16px);
  opacity: 0;
  transform: translateX(-16px);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease,
    background 0.25s ease;
}
.hv-svc:hover {
  background: rgba(5, 11, 20, 0.88);
  border-color: rgba(196, 165, 96, 0.45);
  border-left-color: var(--gold-secondary);
}
.hv-svc-1 {
  transition-delay: 0.45s;
}
.hv-svc-2 {
  transition-delay: 0.6s;
}
.hv-svc-3 {
  transition-delay: 0.75s;
}

.hv-svc.hv-visible {
  opacity: 1;
  transform: translateX(0);
}

.hv-svc i {
  font-size: 1.15rem;
  color: var(--gold-primary);
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}
.hv-svc-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(240,248,255, 0.92);
  font-family: 'DM Sans', sans-serif;
  margin-bottom: 2px;
}
.hv-svc-line {
  font-size: 0.72rem;
  color: rgba(240,248,255,0.45);
  letter-spacing: 0.2px;
}

/* Responsive */
@media (max-width: 990px) {
  .hv-frame {
    height: 400px;
  }
}
@media (max-width: 600px) {
  .hv-frame {
    height: 320px;
    border-radius: 12px;
  }
  .hv-metric-num {
    font-size: 1.1rem;
  }
  .hv-services {
    width: calc(100% - 24px);
  }
}

/* ════════════════ CUSTOMERS SECTION ════════════════════ */
.customers-section {
  padding: 96px 0 80px;
  background: var(--white);
  overflow: hidden;
}
.customers-header {
  text-align: center;
  margin-bottom: 52px;
}
.customers-header .section-title {
  margin-bottom: 14px;
}
.title-em {
  color: var(--gold-primary);
  font-style: italic;
}
.customers-subtext {
  color: #777;
  font-size: 0.95rem;
  font-weight: 300;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.75;
}

/* Marquee */
.marquee-outer {
  position: relative;
  overflow: hidden;
  margin-bottom: 56px;
  padding: 20px 0;
}
.marquee-outer::before,
.marquee-outer::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.marquee-outer::before {
  left: 0;
  background: linear-gradient(to right, var(--white), transparent);
}
.marquee-outer::after {
  right: 0;
  background: linear-gradient(to left, var(--white), transparent);
}
.marquee-track {
  overflow: hidden;
}
.marquee-inner {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marqueeScroll 32s linear infinite;
}
.marquee-inner:hover {
  animation-play-state: paused;
}
@keyframes marqueeScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.marquee-name {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--navy);
  padding: 9px 22px;
  background: var(--beige-very-light);
  border: 1px solid rgba(196, 165, 96, 0.18);
  border-radius: 24px;
  margin: 0 8px;
  transition: all 0.25s ease;
  cursor: default;
}
.marquee-name:hover {
  background: rgba(196, 165, 96, 0.1);
  border-color: var(--gold-primary);
}
.marquee-name i {
  color: var(--gold-primary);
  font-size: 0.75rem;
}
.marquee-dot {
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(196, 165, 96, 0.35);
  margin: 0 4px;
  flex-shrink: 0;
}

/* Customer spotlight cards */
.customer-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
@media (max-width: 900px) {
  .customer-cards {
    grid-template-columns: 1fr;
  }
}
.customer-card {
  background: var(--white);
  border: 1px solid rgba(196, 165, 96, 0.15);
  border-radius: 16px;
  padding: 28px 26px;
  box-shadow: 0 4px 24px rgba(10, 22, 40, 0.06);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}
.customer-card::before {
  content: "\201C";
  position: absolute;
  top: 14px;
  right: 22px;
  font-family: "Cormorant Garamond", serif;
  font-size: 5rem;
  line-height: 1;
  color: rgba(196, 165, 96, 0.1);
  pointer-events: none;
}
.customer-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(196, 165, 96, 0.14);
  border-color: rgba(196, 165, 96, 0.4);
}
.cc-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.cc-avatar {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(
    135deg,
    var(--gold-primary),
    var(--gold-secondary)
  );
  color: var(--navy-dark);
  font-size: 0.82rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.5px;
}
.cc-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  font-family: "Cormorant Garamond", serif;
  margin-bottom: 3px;
}
.cc-industry {
  font-size: 0.72rem;
  color: #999;
  display: flex;
  align-items: center;
  gap: 5px;
}
.cc-industry i {
  color: var(--gold-dim);
  font-size: 0.65rem;
}
.cc-quote {
  font-size: 0.84rem;
  color: #666;
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 18px;
  font-style: italic;
}
.cc-product span {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold-dim);
  background: rgba(196, 165, 96, 0.08);
  border: 1px solid rgba(196, 165, 96, 0.2);
  padding: 4px 12px;
  border-radius: 20px;
}

/* Industry tags */
.industry-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.ind-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  color: #666;
  background: var(--beige-very-light);
  border: 1px solid rgba(196, 165, 96, 0.15);
  padding: 7px 16px;
  border-radius: 20px;
  transition: all 0.25s ease;
}
.ind-tag i {
  color: var(--gold-primary);
  font-size: 0.7rem;
}
.ind-tag:hover {
  background: rgba(196, 165, 96, 0.1);
  border-color: var(--gold-primary);
  color: var(--navy);
}

/* ═══════════════════════════════════════════════
   PARTNERS SECTION
═══════════════════════════════════════════════ */
.partners-section {
  padding: 96px 0 80px;
  background: var(--navy-dark);
  position: relative;
  overflow: hidden;
}
.partners-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(196, 165, 96, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196, 165, 96, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.partners-section::after {
  content: "";
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(
    ellipse,
    rgba(196, 165, 96, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.partners-header {
  text-align: center;
  margin-bottom: 56px;
  position: relative;
  z-index: 2;
}
.partners-header .section-title {
  color: var(--text-light);
}
.partners-subtext {
  color: rgba(200, 184, 168, 0.65);
  font-size: 0.95rem;
  font-weight: 300;
  max-width: 520px;
  margin: 14px auto 0;
  line-height: 1.75;
}

/* Partner grid */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
  position: relative;
  z-index: 2;
}
@media (max-width: 900px) {
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 540px) {
  .partners-grid {
    grid-template-columns: 1fr;
  }
}

.partner-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(196, 165, 96, 0.14);
  border-radius: 14px;
  padding: 26px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.partner-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--gold-primary),
    var(--gold-secondary)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}
.partner-card:hover {
  background: rgba(196, 165, 96, 0.07);
  border-color: rgba(196, 165, 96, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(5, 11, 20, 0.4);
}
.partner-card:hover::before {
  opacity: 1;
}
.partner-logo-wrap {
  flex-shrink: 0;
}
.partner-icon-bg {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(196, 165, 96, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--gold-primary);
  transition: background 0.3s ease;
}
.partner-card:hover .partner-icon-bg {
  background: rgba(196, 165, 96, 0.12);
}
.partner-info {
  flex: 1;
  min-width: 0;
}
.partner-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 4px;
  font-family: "Cormorant Garamond", serif;
}
.partner-type {
  font-size: 0.7rem;
  color: rgba(200, 184, 168, 0.5);
  letter-spacing: 0.2px;
}
.partner-badge {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold-dim);
  background: rgba(196, 165, 96, 0.1);
  border: 1px solid rgba(196, 165, 96, 0.2);
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Partner CTA strip */
.partner-cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 32px;
  background: rgba(196, 165, 96, 0.07);
  border: 1px solid rgba(196, 165, 96, 0.2);
  border-radius: 14px;
  position: relative;
  z-index: 2;
}
@media (max-width: 600px) {
  .partner-cta-strip {
    flex-direction: column;
    text-align: center;
  }
}
.pcs-text {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--beige-light);
  font-weight: 400;
}
.pcs-text i {
  font-size: 1.3rem;
  color: var(--gold-primary);
}

/* ═══════════════════════════════════════════════
   CUSTOMER LOGO GRID (updated)
═══════════════════════════════════════════════ */
.customer-logo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 760px) {
  .customer-logo-grid {
    grid-template-columns: 1fr;
  }
}

.clogo-card {
  background: var(--white);
  border: 1px solid rgba(196, 165, 96, 0.15);
  border-radius: 18px;
  padding: 36px 24px 28px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(10, 22, 40, 0.06);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}
.clogo-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--gold-primary),
    var(--gold-secondary)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}
.clogo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(196, 165, 96, 0.15);
  border-color: rgba(196, 165, 96, 0.35);
}
.clogo-card:hover::after {
  opacity: 1;
}

.clogo-img-wrap {
  width: 90px;
  height: 90px;
  margin: 0 auto 20px;
  border-radius: 16px;
  background: var(--beige-very-light);
  border: 1px solid rgba(196, 165, 96, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 12px;
}
.clogo-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(20%);
  transition: filter 0.3s ease;
}
.clogo-card:hover .clogo-img-wrap img {
  filter: grayscale(0%);
}

.clogo-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold-primary);
  font-family: "Cormorant Garamond", serif;
}
.clogo-name {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  font-family: "Cormorant Garamond", serif;
  margin-bottom: 8px;
}
.clogo-industry {
  font-size: 0.75rem;
  color: #999;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.clogo-industry i {
  color: var(--gold-primary);
  font-size: 0.7rem;
}

/* ═══════════════════════════════════════════════
   PARTNER CARD — pib-logo icon update
═══════════════════════════════════════════════ */
.pib-logo {
  background: rgba(255, 255, 255, 0.08) !important;
  padding: 6px;
}
.pib-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.7;
  transition: opacity 0.3s ease;
}
.partner-card:hover .pib-logo img {
  opacity: 1;
}

.partner-badge-gov {
  background: rgba(99, 179, 237, 0.12) !important;
  border-color: rgba(99, 179, 237, 0.3) !important;
  color: #63b3ed !important;
}

/* ═══════════════════════════════════════════════
   MEDIA SECTION
═══════════════════════════════════════════════ */
.media-section {
  padding: 96px 0 80px;
  background: var(--beige-very-light);
  position: relative;
  overflow: hidden;
}
.media-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--gold-primary),
    var(--gold-secondary),
    var(--gold-primary)
  );
}

.media-header {
  text-align: center;
  margin-bottom: 56px;
}
.media-subtext {
  color: #777;
  font-size: 0.95rem;
  font-weight: 300;
  max-width: 540px;
  margin: 14px auto 0;
  line-height: 1.75;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
@media (max-width: 800px) {
  .media-grid {
    grid-template-columns: 1fr;
  }
}

/* Media card */
.media-card {
  background: var(--white);
  border: 1px solid rgba(196, 165, 96, 0.15);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(10, 22, 40, 0.07);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.media-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(196, 165, 96, 0.14);
}

/* Thumbnail area */
.media-thumb {
  position: relative;
  height: 220px;
  overflow: hidden;
  cursor: pointer;
}
.media-thumb-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
}
.media-thumb:hover .media-thumb-bg {
  transform: scale(1.04);
}

.media-thumb-bg-1 {
  background-image:
    linear-gradient(
      135deg,
      rgba(10, 22, 40, 0.7) 0%,
      rgba(13, 33, 69, 0.5) 100%
    ),
    url("https://images.unsplash.com/photo-1560250097-0b93528c311a?w=800&q=80");
}
.media-thumb-bg-2 {
  background-image:
    linear-gradient(
      135deg,
      rgba(5, 46, 22, 0.7) 0%,
      rgba(10, 22, 40, 0.6) 100%
    ),
    url("https://images.unsplash.com/photo-1559839734-2b71ea197ec2?w=800&q=80");
}

/* Play button */
.media-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--gold-primary),
    var(--gold-secondary)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-dark);
  font-size: 1.1rem;
  box-shadow: 0 8px 28px rgba(196, 165, 96, 0.45);
  z-index: 3;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.media-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.12);
  box-shadow: 0 12px 36px rgba(196, 165, 96, 0.6);
}

/* Ripple ring around play btn */
.media-play-btn::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(196, 165, 96, 0.35);
  animation: playRing 2s ease-in-out infinite;
}
@keyframes playRing {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.12);
    opacity: 0.2;
  }
}

.media-thumb-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14px 18px;
  background: linear-gradient(to top, rgba(5, 11, 20, 0.7), transparent);
  display: flex;
  justify-content: flex-end;
  z-index: 2;
}
.media-duration {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.75);
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(5, 11, 20, 0.5);
  padding: 4px 10px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Video element (shown when playing) */
.media-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 5;
  background: #000;
}

/* Card body */
.media-info {
  padding: 24px 24px 26px;
}
.media-speaker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.media-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  font-family: "Cormorant Garamond", serif;
  flex-shrink: 0;
}
.media-avatar-1 {
  background: linear-gradient(
    135deg,
    var(--gold-primary),
    var(--gold-secondary)
  );
  color: var(--navy-dark);
}
.media-avatar-2 {
  background: linear-gradient(135deg, #4ade80, #22c55e);
  color: #052e16;
}
.media-speaker-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  font-family: "Cormorant Garamond", serif;
}
.media-speaker-role {
  font-size: 0.7rem;
  color: #999;
  margin-top: 1px;
}
.media-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  font-family: "Cormorant Garamond", serif;
  line-height: 1.4;
  margin-bottom: 10px;
}
.media-desc {
  font-size: 0.82rem;
  color: #777;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 16px;
}
.media-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.media-tags span {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--gold-dim);
  background: rgba(196, 165, 96, 0.08);
  border: 1px solid rgba(196, 165, 96, 0.2);
  padding: 3px 10px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.media-tags span i {
  font-size: 0.6rem;
}

/* Upload notice */
.media-notice {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(196, 165, 96, 0.07);
  border: 1px dashed rgba(196, 165, 96, 0.35);
  border-radius: 10px;
  padding: 14px 20px;
  font-size: 0.82rem;
  color: #888;
  line-height: 1.6;
}
.media-notice i {
  color: var(--gold-primary);
  font-size: 1rem;
  flex-shrink: 0;
}
.media-notice code {
  background: rgba(196, 165, 96, 0.1);
  padding: 1px 6px;
  border-radius: 4px;
  font-size: 0.78rem;
  color: var(--gold-dim);
}

/* ═══════════════════════════════════════════════
   SWIPER LOGO MARQUEE — Customers & Partners
═══════════════════════════════════════════════ */

/* Outer wrapper — full bleed, no overflow */
.logo-marquee-wrap {
  position: relative;
  padding: 32px 0 40px;
  overflow: hidden;
}

/* Swiper override — no fixed height, slides auto-width */
.swiper-customers,
.swiper-partners {
  width: 100%;
  padding: 8px 0 !important;
}

.logo-slide {
  width: auto !important;
  flex-shrink: 0;
}

/* ── Logo tile — light (customers) ── */
.logo-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 28px;
  background: var(--white);
  border: 1px solid rgba(196, 165, 96, 0.14);
  border-radius: 14px;
  min-width: 160px;
  box-shadow: 0 2px 16px rgba(10, 22, 40, 0.06);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
  cursor: default;
  user-select: none;
}
.logo-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(196, 165, 96, 0.15);
  border-color: rgba(196, 165, 96, 0.4);
}

/* Logo image box — light */
.logo-img-box {
  width: 72px;
  height: 72px;
  border-radius: 12px;
  background: var(--beige-very-light);
  border: 1px solid rgba(196, 165, 96, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 10px;
}
.logo-img-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: filter 0.25s ease;
  filter: grayscale(30%);
}
.logo-tile:hover .logo-img-box img {
  filter: grayscale(0%);
}

/* Fallback text */
.logo-fb {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-primary);
}

.logo-tile-name {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  text-align: center;
  white-space: nowrap;
  font-family: "DM Sans", sans-serif;
}

/* ── Logo tile — dark (partners) ── */
.logo-tile-dark {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(196, 165, 96, 0.16);
  box-shadow: none;
}
.logo-tile-dark:hover {
  background: rgba(196, 165, 96, 0.08);
  border-color: rgba(196, 165, 96, 0.4);
  box-shadow: 0 10px 28px rgba(5, 11, 20, 0.4);
}
.logo-tile-dark .logo-tile-name {
  color: rgba(240, 248, 255, 0.8);
}

.logo-img-box-dark {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(196, 165, 96, 0.15);
}
.logo-img-box-dark img {
  filter: brightness(0) invert(1);
  opacity: 0.65;
}
.logo-tile-dark:hover .logo-img-box-dark img {
  opacity: 1;
}

/* Badge under the name (partners only) */
.logo-tile-badge {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold-dim);
  background: rgba(196, 165, 96, 0.1);
  border: 1px solid rgba(196, 165, 96, 0.2);
  padding: 2px 10px;
  border-radius: 10px;
}

/* ── Fade edge masks ── */
.marquee-fade-l,
.marquee-fade-r {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.marquee-fade-l {
  left: 0;
}
.marquee-fade-r {
  right: 0;
}

.marquee-fade-light {
  background: linear-gradient(to right, var(--white) 0%, transparent 100%);
}
.marquee-fade-light.marquee-fade-r {
  background: linear-gradient(to left, var(--white) 0%, transparent 100%);
}

.marquee-fade-dark {
  background: linear-gradient(to right, var(--navy-dark) 0%, transparent 100%);
}
.marquee-fade-dark.marquee-fade-r {
  background: linear-gradient(to left, var(--navy-dark) 0%, transparent 100%);
}

/* Pause on hover over the swiper */
.swiper-customers:hover .swiper-wrapper,
.swiper-partners:hover .swiper-wrapper {
  animation-play-state: paused;
}

/* ═══════════════════════════════════════════════
   PURE CSS INFINITE MARQUEE — No library needed
   Works by animating translateX(-50%) on a track
   that contains 2× the items (Set A + Set B).
   When Set A fully exits left, Set B is in exactly
   the same position as Set A was → seamless loop.
═══════════════════════════════════════════════ */

/* Outer wrapper — clips overflow, adds fade edges */
.inf-marquee-wrap {
  position: relative;
  overflow: hidden;
  padding: 36px 0 44px;
}

/* Fade masks — left & right edges */
.inf-marquee-wrap::before,
.inf-marquee-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 160px;
  z-index: 2;
  pointer-events: none;
}
.inf-marquee-wrap::before {
  left: 0;
}
.inf-marquee-wrap::after {
  right: 0;
}

.inf-marquee-light::before {
  background: linear-gradient(to right, #ffffff 0%, transparent 100%);
}
.inf-marquee-light::after {
  background: linear-gradient(to left, #ffffff 0%, transparent 100%);
}
.inf-marquee-dark::before {
  background: linear-gradient(to right, var(--navy-dark) 0%, transparent 100%);
}
.inf-marquee-dark::after {
  background: linear-gradient(to left, var(--navy-dark) 0%, transparent 100%);
}

/* The scrolling track — must be wide enough to hold all tiles in one row */
.inf-track {
  display: flex;
  width: max-content; /* shrink-wrap around all tiles */
  gap: 24px;
  will-change: transform;
}

/* Left scroll: 0 → -50% (Set A scrolls off, Set B slides in = identical position) */
.inf-track-left {
  animation: scrollLeft 18s linear infinite;
}
/* Right scroll: -50% → 0 (reverse direction) */
.inf-track-right {
  animation: scrollRight 22s linear infinite;
}

/* Pause on hover */
.inf-marquee-wrap:hover .inf-track {
  animation-play-state: paused;
}

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

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

/* ── Individual tile — light (customers) ── */
.inf-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 22px 30px 18px;
  min-width: 170px;
  background: var(--white);
  border: 1px solid rgba(196, 165, 96, 0.15);
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(10, 22, 40, 0.06);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
  cursor: default;
  flex-shrink: 0;
}
.inf-tile:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(196, 165, 96, 0.16);
  border-color: rgba(196, 165, 96, 0.45);
}

/* Logo image box — light */
.inf-logo-box {
  width: 120px;
  height: 90px;
  border-radius: 14px;
  background: var(--beige-very-light);
  border: 1px solid rgba(196, 165, 96, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 10px;
  flex-shrink: 0;
}
.inf-logo-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(25%);
  transition: filter 0.25s ease;
}
.inf-tile:hover .inf-logo-box img {
  filter: grayscale(0%);
}

/* Fallback text when logo doesn't load */
.inf-fb {
  display: none;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold-primary);
}

.inf-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  text-align: center;
  white-space: nowrap;
  font-family: "DM Sans", sans-serif;
}

/* ── Dark tile (partners) ── */
.inf-tile-dark {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(196, 165, 96, 0.14);
  box-shadow: none;
}
.inf-tile-dark:hover {
  background: rgba(196, 165, 96, 0.08);
  border-color: rgba(196, 165, 96, 0.4);
  box-shadow: 0 12px 30px rgba(5, 11, 20, 0.45);
}
.inf-tile-dark .inf-name {
  color: rgba(240, 248, 255, 0.82);
}

/* Logo image box — dark */
.inf-logo-box-dark {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(196, 165, 96, 0.14);
}
.inf-logo-box-dark img {
  /* filter: brightness(0) invert(1); */
  opacity: 1;
}
.inf-tile-dark:hover .inf-logo-box-dark img {
  opacity: 1;
}

/* Badge (partners only) */
.inf-badge {
  display: none;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold-dim);
  background: rgba(196, 165, 96, 0.1);
  border: 1px solid rgba(196, 165, 96, 0.22);
  padding: 2px 10px;
  border-radius: 10px;
  white-space: nowrap;
}
