:root {
  --gold-primary: #c4a560;
  --gold-secondary: #d4b570;
  --navy: #0a1628;
  --navy-dark: #050b14;
  --beige-warm: #c8b8a8;
  --beige-light: #e8ddd3;
  --beige-very-light: #f5f2ed;
  --white: #ffffff;
  --text-dark: #2c2c2c;
  --text-light: #f0f8ff;
  --muted: #a0a0a0;
  --gold: #c4a560;
  --teal: #c4a560;
  --cyan: #d4b570;
  --accent: #c4a560;
  --deep: #0d2145;
  --cream: #e8ddd3;
  --tan: #c8b8a8;
  --card: rgba(196, 165, 96, 0.08);
  --border: rgba(196, 165, 96, 0.2);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Inter", sans-serif;
  background: var(--navy);
  color: var(--text-light);
  overflow-x: hidden;
  font-size: 15px;
  line-height: 1.6;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
}
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--navy);
}
::-webkit-scrollbar-thumb {
  background: var(--gold-primary);
  border-radius: 4px;
}

/* NAVBAR */
.navbar {
  background: linear-gradient(
    90deg,
    rgba(10, 22, 40, 0.98) 0%,
    rgba(5, 11, 20, 0.98) 100%
  );
  backdrop-filter: blur(20px);
  border-bottom: 2px solid var(--gold-primary);
  padding: 0.5rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.navbar.scrolled {
  padding: 0.6rem 0;
}
.navbar-brand {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--white) !important;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  transition: all 0.3s;
}
.navbar-brand:hover {
  transform: scale(1.05);
}
.navbar-brand-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(
    135deg,
    var(--gold-primary),
    var(--gold-secondary)
  );
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--navy);
  font-size: 1.2rem;
}
.navbar-brand span {
  color: var(--gold-primary);
  font-weight: 800;
}
.nav-link {
  color: var(--muted) !important;
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.3s;
  position: relative;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-primary);
  transition: width 0.3s;
}
.nav-link:hover {
  color: var(--gold-primary) !important;
}
.nav-link:hover::after {
  width: 100%;
}
.btn-nav {
  background: linear-gradient(
    135deg,
    var(--gold-primary),
    var(--gold-secondary)
  );
  color: var(--navy) !important;
  border-radius: 8px;
  padding: 0.6rem 1.6rem !important;
  font-weight: 700;
  font-size: 0.85rem;
  border: none;
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(196, 165, 96, 0.2);
}
.btn-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196, 165, 96, 0.35);
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 130px 0 80px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 80% 60% at 50% 0%,
      rgba(196, 165, 96, 0.08) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 60% 40% at 80% 80%,
      rgba(196, 165, 96, 0.04) 0%,
      transparent 50%
    ),
    linear-gradient(180deg, var(--navy-dark) 0%, var(--navy) 100%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(196, 165, 96, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196, 165, 96, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridMove 20s linear infinite;
}
@keyframes gridMove {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(60px, 60px);
  }
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  animation: orbPulse 6s ease-in-out infinite;
}
.orb1 {
  width: 500px;
  height: 500px;
  background: rgba(196, 165, 96, 0.05);
  top: -100px;
  right: -100px;
}
.orb2 {
  width: 300px;
  height: 300px;
  background: rgba(196, 165, 96, 0.03);
  bottom: 0;
  left: 10%;
  animation-delay: 3s;
}
@keyframes orbPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.15);
    opacity: 0.8;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(196, 165, 96, 0.15);
  border: 1.5px solid rgba(196, 165, 96, 0.4);
  border-radius: 50px;
  padding: 0.5rem 1.3rem;
  font-size: 0.73rem;
  font-weight: 700;
  color: var(--gold-primary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  animation: fadeDown 0.8s ease both;
  box-shadow: 0 4px 12px rgba(196, 165, 96, 0.1);
}
.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-primary);
  animation: blink 1.5s ease-in-out infinite;
  box-shadow: 0 0 8px var(--gold-primary);
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

.hero-title {
  font-size: clamp(2.4rem, 5.5vw, 4.8rem);
  font-weight: 800;
  line-height: 1.1;
  animation: fadeDown 0.8s 0.15s ease both;
  color: var(--white);
  letter-spacing: -1px;
}
.grad {
  background: linear-gradient(
    135deg,
    var(--gold-primary),
    var(--gold-secondary)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.8;
  max-width: 560px;
  margin: 1.5rem 0 2.5rem;
  animation: fadeDown 0.8s 0.3s ease both;
}
.hero-btns {
  animation: fadeDown 0.8s 0.45s ease both;
}
.btn-primary-custom {
  background: linear-gradient(
    135deg,
    var(--gold-primary),
    var(--gold-secondary)
  );
  color: var(--navy);
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  padding: 1rem 2.4rem;
  border-radius: 8px;
  border: none;
  font-size: 0.95rem;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(196, 165, 96, 0.25);
}
.btn-primary-custom:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(196, 165, 96, 0.4);
  color: var(--navy);
}
.btn-outline-custom {
  background: transparent;
  color: var(--text-light);
  border: 2px solid var(--gold-primary);
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  padding: 1rem 2.4rem;
  border-radius: 8px;
  font-size: 0.95rem;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
}
.btn-outline-custom:hover {
  background: rgba(196, 165, 96, 0.15);
  border-color: var(--gold-primary);
  color: var(--gold-primary);
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-top: 3.5rem;
  animation: fadeDown 0.8s 0.6s ease both;
}
.stat-val {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold-primary);
  line-height: 1;
}
.stat-lbl {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 0.3rem;
}

.hero-visual {
  position: relative;
  width: 360px;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeLeft 1s 0.3s ease both;
}
.pulse-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(196, 165, 96, 0.2);
  animation: ringPulse 3s ease-in-out infinite;
}
.ring1 {
  width: 260px;
  height: 260px;
}
.ring2 {
  width: 380px;
  height: 380px;
  animation-delay: 1s;
}
.ring3 {
  width: 500px;
  height: 500px;
  animation-delay: 2s;
}
@keyframes ringPulse {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0;
  }
}
.center-icon {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--gold-primary),
    var(--gold-secondary)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--navy);
  box-shadow: 0 0 60px rgba(196, 165, 96, 0.5);
  position: relative;
  z-index: 2;
}
.chip {
  position: absolute;
  background: rgba(232, 220, 200, 0.95);
  border: 1.5px solid rgba(196, 165, 96, 0.3);
  border-radius: 12px;
  padding: 0.6rem 1.1rem;
  backdrop-filter: blur(15px);
  font-size: 0.78rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  z-index: 3;
  color: var(--navy);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.chip-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-primary);
}
.chip1 {
  top: 70px;
  right: -85px;
  animation: floatA 4s ease-in-out infinite;
}
.chip2 {
  bottom: 15%;
  left: 90px;
  animation: floatB 5s ease-in-out infinite;
}
.chip3 {
  top: 19%;
  left: -55px;
  animation: floatA 4.5s 1s ease-in-out infinite;
}
@keyframes floatA {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}
@keyframes floatB {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}

/* SECTION COMMONS */
section {
  position: relative;
  z-index: 1;
}
.s-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold-primary);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  background: rgba(196, 165, 96, 0.12);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  border: 1px solid rgba(196, 165, 96, 0.2);
}
.s-title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--white);
}
.s-sub {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.8;
  max-width: 700px;
}
.tline {
  width: 60px;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--gold-primary),
    var(--gold-secondary)
  );
  border-radius: 3px;
  margin: 1.2rem 0 1.5rem;
}

/* CHALLENGES */
.challenges {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  padding: 100px 0;
}
.ch-card {
  background: linear-gradient(
    135deg,
    rgba(196, 165, 96, 0.08),
    rgba(196, 165, 96, 0.04)
  );
  border: 1.5px solid rgba(196, 165, 96, 0.2);
  border-radius: 16px;
  padding: 2.2rem;
  backdrop-filter: blur(12px);
  transition: all 0.35s;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.ch-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--gold-primary),
    var(--gold-secondary)
  );
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s;
}
.ch-card:hover::before {
  transform: scaleX(1);
}
.ch-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.12),
    rgba(196, 165, 96, 0.08)
  );
}
.ch-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: linear-gradient(
    135deg,
    var(--gold-primary),
    var(--gold-secondary)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 1.4rem;
  box-shadow: 0 4px 16px rgba(196, 165, 96, 0.3);
  transition: all 0.3s;
}
.ch-card:hover .ch-icon {
  transform: scale(1.1);
}
.ch-card h5 {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--white);
}
.ch-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

/* PLATFORM */
.platform {
  background: var(--beige-very-light);
  padding: 100px 0;
}
.platform .s-title {
  color: var(--navy);
}
.platform .s-sub {
  color: var(--text-dark);
}
.p-tab {
  background: transparent;
  border: 2px solid rgba(196, 165, 96, 0.25);
  border-radius: 8px;
  padding: 0.75rem 1.4rem;
  color: var(--muted);
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all 0.25s;
  white-space: nowrap;
}
.p-tab.active,
.p-tab:hover {
  background: var(--gold-primary);
  border-color: var(--gold-primary);
  color: var(--navy);
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(196, 165, 96, 0.2);
}
.tab-pane {
  display: none;
  animation: fadeUp 0.4s ease;
}
.tab-pane.active {
  display: block;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.f-card {
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  border: 2px solid var(--gold-primary);
  border-radius: 16px;
  padding: 2.2rem;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(196, 165, 96, 0.15);
}
.f-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(196, 165, 96, 0.15);
  border: 1px solid rgba(196, 165, 96, 0.3);
  border-radius: 50px;
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  color: var(--text-light);
  margin: 0.2rem;
  font-weight: 600;
}
.f-pill i {
  font-size: 0.65rem;
  color: var(--gold-primary);
}
.layer {
  background: rgba(196, 165, 96, 0.06);
  border: 1px solid rgba(196, 165, 96, 0.15);
  border-left: 4px solid var(--gold-primary);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  transition: all 0.25s;
}
.layer:hover {
  background: rgba(196, 165, 96, 0.12);
  border-left-color: var(--gold-secondary);
  transform: translateX(4px);
  box-shadow: 0 4px 16px rgba(196, 165, 96, 0.1);
}
.layer h5 {
  font-family: "Poppins", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--gold-primary);
  margin-bottom: 0.4rem;
}
.layer p {
  font-size: 0.84rem;
  color: var(--text-dark);
  margin: 0;
  line-height: 1.6;
}
.flow-wrap {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.flow-step {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  position: relative;
}
.flow-gap {
  height: 1.2rem;
}
.flow-step + .flow-step::before {
  content: "";
  position: absolute;
  left: 19px;
  top: -20px;
  width: 2px;
  height: 20px;
  background: linear-gradient(to bottom, var(--gold-primary), transparent);
}
.f-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--gold-primary),
    var(--gold-secondary)
  );
  color: var(--navy);
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.f-txt h6 {
  font-family: "Poppins", sans-serif;
  color: var(--deep);
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}
.f-txt p {
  font-size: 0.82rem;
  color: var(--text-dark);
  margin: 0;
  line-height: 1.55;
}

/* SOLUTIONS */
.solutions {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-dark) 100%);
  padding: 100px 0;
}
.sol-card {
  background: linear-gradient(
    135deg,
    rgba(196, 165, 96, 0.08),
    rgba(196, 165, 96, 0.04)
  );
  border: 1.5px solid rgba(196, 165, 96, 0.2);
  border-radius: 16px;
  padding: 2.4rem;
  backdrop-filter: blur(12px);
  transition: all 0.35s;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.sol-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--gold-primary),
    var(--gold-secondary)
  );
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s;
}
.sol-card:hover::before {
  transform: scaleX(1);
}
.sol-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 16px 48px rgba(196, 165, 96, 0.2);
  border-color: var(--gold-primary);
  background: linear-gradient(
    135deg,
    rgba(196, 165, 96, 0.12),
    rgba(196, 165, 96, 0.08)
  );
}
.sol-num {
  font-family: "Poppins", sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(196, 165, 96, 0.08);
  position: absolute;
  top: 0.8rem;
  right: 1.2rem;
  line-height: 1;
}
.sol-icon {
  width: 62px;
  height: 62px;
  border-radius: 12px;
  background: linear-gradient(
    135deg,
    var(--gold-primary),
    var(--gold-secondary)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 1.4rem;
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(196, 165, 96, 0.2);
}
.sol-card:hover .sol-icon {
  transform: scale(1.1);
}
.sol-card h5 {
  font-family: "Poppins", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--white);
}
.sol-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
}
.sol-list {
  list-style: none;
  margin-top: 1rem;
  padding: 0;
}
.sol-list li {
  font-size: 0.84rem;
  color: var(--muted);
  padding: 0.3rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}
.sol-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-primary);
  flex-shrink: 0;
  margin-top: 0.5rem;
}

/* AI & IOT */
.ai-iot {
  background: linear-gradient(
    180deg,
    var(--beige-warm) 0%,
    var(--beige-light) 100%
  );
  padding: 100px 0;
}
.ai-iot .s-title {
  color: var(--navy);
}
.ai-iot .s-sub {
  color: var(--text-dark);
}
.ai-card {
  background: linear-gradient(
    135deg,
    rgba(10, 22, 40, 0.9),
    rgba(5, 11, 20, 0.9)
  );
  border: 1.5px solid rgba(196, 165, 96, 0.3);
  border-radius: 14px;
  padding: 2rem;
  backdrop-filter: blur(12px);
  text-align: center;
  transition: all 0.3s;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}
.ai-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-primary);
  box-shadow: 0 12px 40px rgba(196, 165, 96, 0.2);
}
.ai-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--gold-primary),
    var(--gold-secondary)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--navy);
  margin: 0 auto 1.1rem;
  box-shadow: 0 4px 16px rgba(196, 165, 96, 0.3);
}
.ai-card h6 {
  font-family: "Poppins", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--text-light);
}
.ai-card p {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}

/* BENEFITS */
.benefits {
  background: var(--beige-light);
  padding: 100px 0;
}
.benefits .s-title {
  color: var(--navy);
}
.benefits .s-sub {
  color: var(--text-dark);
}
.ben-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  padding: 1.6rem;
  border-radius: 14px;
  transition: all 0.25s;
  margin-bottom: 0.6rem;
  border-left: 4px solid transparent;
}
.ben-item:hover {
  background: rgba(196, 165, 96, 0.1);
  border-left-color: var(--gold-primary);
  box-shadow: 0 4px 12px rgba(196, 165, 96, 0.1);
  padding-left: 1.8rem;
}
.ben-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: linear-gradient(
    135deg,
    var(--gold-primary),
    var(--gold-secondary)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--navy);
  flex-shrink: 0;
}
.ben-item h5 {
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--navy);
}
.ben-item p {
  font-size: 0.86rem;
  color: var(--text-dark);
  margin: 0;
  line-height: 1.65;
}

/* IMPACT */
.impact {
  background: linear-gradient(
    135deg,
    var(--navy) 0%,
    rgba(196, 165, 96, 0.08) 50%,
    var(--navy-dark) 100%
  );
  padding: 100px 0;
}
.stat-block {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: linear-gradient(
    135deg,
    var(--beige-light),
    var(--beige-very-light)
  );
  border: 1.5px solid rgba(196, 165, 96, 0.2);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  transition: all 0.3s;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
.stat-block:hover {
  transform: translateY(-8px);
  border-color: var(--gold-primary);
  box-shadow: 0 16px 40px rgba(196, 165, 96, 0.2);
}
.big-num {
  font-family: "Poppins", sans-serif;
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(
    135deg,
    var(--gold-primary),
    var(--gold-secondary)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  line-height: 1;
}
.big-lbl {
  font-size: 0.88rem;
  color: var(--text-dark);
  margin-top: 0.6rem;
}
.covid-box {
  background: linear-gradient(
    135deg,
    rgba(196, 165, 96, 0.15),
    rgba(200, 184, 168, 0.08)
  );
  border: 1.5px solid rgba(196, 165, 96, 0.3);
  border-radius: 16px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(196, 165, 96, 0.15);
}
.covid-box::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(196, 165, 96, 0.1) 0%,
    transparent 70%
  );
}
.covid-box h3 {
  font-family: "Poppins", sans-serif;
  font-size: 1.55rem;
  font-weight: 800;
  margin: 0.5rem 0 1rem;
  color: var(--navy);
  position: relative;
  z-index: 2;
}
.covid-quote {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--navy);
  font-style: italic;
  position: relative;
  z-index: 2;
}
.partner-name {
  font-family: "Poppins", sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--gold-primary);
}
.partner-sub {
  font-size: 0.78rem;
  color: var(--text-dark);
}
.check-row {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  justify-content: flex-end;
  margin-bottom: 0.75rem;
}
.check-circle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(196, 165, 96, 0.3);
}

/* CONTACT SECTION */
.contact-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  padding: 100px 0;
}
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-info {
}
.contact-info .s-title {
  margin-bottom: 2rem;
}
.info-block {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  padding: 1.5rem;
  background: rgba(196, 165, 96, 0.06);
  border-radius: 12px;
  border-left: 4px solid var(--gold-primary);
  transition: all 0.3s;
}
.info-block:hover {
  background: rgba(196, 165, 96, 0.12);
  transform: translateX(8px);
}
.info-icon {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background: linear-gradient(
    135deg,
    var(--gold-primary),
    var(--gold-secondary)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--navy);
  flex-shrink: 0;
}
.info-content h4 {
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: var(--white);
}
.info-content p {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
}
.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}
.social-links a {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background: rgba(196, 165, 96, 0.15);
  border: 1.5px solid rgba(196, 165, 96, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  transition: all 0.3s;

  text-decoration: none;
}
.social-links a:hover {
  background: var(--gold-primary);
  color: var(--navy);
  transform: translateY(-4px);
}

.contact-form {
}
.form-group {
  margin-bottom: 1.5rem;
}
.form-group label {
  display: block;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  background: rgba(232, 220, 200, 0.1);
  border: 1.5px solid rgba(196, 165, 96, 0.3);
  border-radius: 8px;
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  color: var(--white);
  transition: all 0.3s;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(240, 248, 255, 0.5);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  background: rgba(232, 220, 200, 0.15);
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 3px rgba(196, 165, 96, 0.1);
}
.form-group textarea {
  resize: vertical;
  min-height: 150px;
}
.submit-btn {
  background: linear-gradient(
    135deg,
    var(--gold-primary),
    var(--gold-secondary)
  );
  color: var(--navy);
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  padding: 1rem 2.5rem;
  border-radius: 8px;
  border: none;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 8px 24px rgba(196, 165, 96, 0.25);
  width: 100%;
}
.submit-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(196, 165, 96, 0.4);
}
.submit-btn:active {
  transform: translateY(-2px);
}

/* CTA */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  padding: 100px 0;
}
.cta-inner {
  background: linear-gradient(
    135deg,
    rgba(196, 165, 96, 0.12),
    rgba(200, 184, 168, 0.06)
  );
  border: 1.5px solid rgba(196, 165, 96, 0.3);
  border-radius: 20px;
  padding: 5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(196, 165, 96, 0.15);
}
.cta-inner::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(196, 165, 96, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.cta-inner h2 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--white);
  position: relative;
  z-index: 2;
}
.cta-inner p {
  font-size: 1rem;
  color: var(--muted);
  max-width: 540px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
  position: relative;
  z-index: 2;
}
.trust-item {
  text-align: center;
  transition: all 0.3s;
}
.trust-item:hover {
  transform: translateY(-4px);
}
.trust-item i {
  color: var(--gold-primary);
  font-size: 1.4rem;
  transition: all 0.3s;
}
.trust-item:hover i {
  transform: scale(1.2);
}
.trust-item div {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 0.4rem;
  font-weight: 600;
}

/* FOOTER */
footer {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  border-top: 2px solid var(--gold-primary);
  padding: 60px 0 30px;
}
.ft-brand {
  font-family: "Poppins", sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
}
.ft-brand span {
  color: var(--gold-primary);
}
.ft-desc {
  font-size: 0.86rem;
  color: var(--muted);
  margin-top: 0.5rem;
  line-height: 1.75;
  max-width: 280px;
}
.ft-head {
  font-family: "Poppins", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-primary);
  margin-bottom: 1rem;
}
.ft-link {
  display: block;
  color: var(--muted);
  font-size: 0.86rem;
  text-decoration: none;
  padding: 0.25rem 0;
  transition: all 0.2s;
}
.ft-link:hover {
  color: var(--gold-primary);
  padding-left: 0.3rem;
}
.ft-divider {
  border-color: rgba(196, 165, 96, 0.2);
  margin: 2rem 0 1.5rem;
}
.ft-bottom {
  font-size: 0.8rem;
  color: var(--muted);
}

/* REVEAL ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-l {
  opacity: 0;
  transform: translateX(-30px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal-l.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-r {
  opacity: 0;
  transform: translateX(30px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal-r.visible {
  opacity: 1;
  transform: translateX(0);
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeLeft {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 100px 0 60px;
  }
  .hero-visual {
    width: 280px;
    height: 280px;
  }
  .hero-title {
    line-height: 1.15;
  }
  .navbar-brand {
    font-size: 1.2rem;
  }
  .navbar-brand-icon {
    width: 36px;
    height: 36px;
  }
  .chip {
    display: none;
  }
  .pulse-ring {
    display: none;
  }
  .cta-inner {
    padding: 3rem 1.5rem;
  }
  .covid-box {
    padding: 2rem 1.5rem;
  }
  .hero-stats {
    gap: 1.5rem;
  }
  .contact-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
