:root {
  --bg-deep: #F8FAFC;
  --bg-surface: rgba(255,255,255,0.84);
  --glass-border: rgba(22, 90, 146, 0.12);
  --avs-yellow: #FFE600;
  --avs-blue: #165A92;
  --avs-blue-dark: #0B2E4A;
  --avs-orange: #E85D04;
  --avs-green: #2E7D32;
  --text-main: #1E293B;
  --text-muted: #64748B;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg-deep);
  color: var(--text-main);
  font-family: 'Montserrat', sans-serif;
  overflow-x: hidden;
}

#avs-product-page {
  position: relative;
  overflow-x: hidden;
}

.bg-orbs {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.45;
  animation: floatOrb 22s infinite alternate;
}

.orb-1 {
  width: 560px;
  height: 560px;
  background: rgba(255, 230, 0, 0.18);
  top: -120px;
  left: -120px;
}

.orb-2 {
  width: 480px;
  height: 480px;
  background: rgba(22, 90, 146, 0.14);
  right: -120px;
  top: 25%;
  animation-delay: -6s;
}

.orb-3 {
  width: 420px;
  height: 420px;
  background: rgba(46, 125, 50, 0.12);
  bottom: 5%;
  left: 28%;
  animation-delay: -12s;
}

@keyframes floatOrb {
  0% { transform: translate(0,0) scale(1); }
  100% { transform: translate(80px,120px) scale(1.16); }
}

.container {
  width: min(1280px, 92%);
  margin: 0 auto;
}

.glass-panel {
  background: var(--bg-surface);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--glass-border);
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(22, 90, 146, 0.07), inset 0 1px 0 rgba(255,255,255,0.95);
}

.section-pad {
  padding: 110px 0;
  position: relative;
  z-index: 2;
}

.sec-header {
  text-align: center;
  margin-bottom: 60px;
}

.sec-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 18px;
  border-radius: 999px;
  background: rgba(255, 230, 0, 0.22);
  color: var(--avs-blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.sec-tag::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--avs-yellow);
  box-shadow: 0 0 0 6px rgba(255, 230, 0, 0.14);
}

.sec-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 58px);
  line-height: 1.08;
  font-weight: 800;
  color: var(--avs-blue-dark);
  margin-bottom: 16px;
}

.sec-title i {
  color: var(--avs-green);
  font-style: italic;
  font-weight: 500;
}

.sec-desc {
  max-width: 760px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.8;
  font-weight: 500;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 34px;
  border-radius: 999px;
  background: var(--avs-yellow);
  color: var(--avs-blue-dark);
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(255, 230, 0, 0.34);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  border: 1px solid rgba(22, 90, 146, 0.16);
  background: rgba(255,255,255,0.7);
  color: var(--avs-blue);
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.btn-secondary:hover {
  transform: translateY(-3px);
  border-color: var(--avs-blue);
}

.gs-fade,
.gs-step {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.gs-fade.in-view,
.gs-step.in-view {
  opacity: 1;
  transform: translateY(0);
}

#hero {
  position: relative;
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  padding: 70px 0 50px;
  overflow: hidden;
}

#hero::before {
  content: "1985";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Playfair Display', serif;
  font-size: clamp(140px, 24vw, 360px);
  font-weight: 900;
  line-height: 1;
  color: rgba(22, 90, 146, 0.045);
  letter-spacing: -10px;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-kicker {
  display: inline-block;
  margin-bottom: 22px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(46, 125, 50, 0.10);
  color: var(--avs-green);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.8px;
  text-transform: uppercase;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 5vw, 76px);
  line-height: 1.03;
  font-weight: 800;
  color: var(--avs-blue-dark);
  margin-bottom: 24px;
}

.hero-title span {
  color: var(--avs-green);
  font-style: italic;
  font-weight: 500;
}

.hero-desc {
  max-width: 620px;
  font-size: 16px;
  line-height: 1.85;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  overflow: visible;
}

.hero-product {
  width: 100%;
  max-width: 620px;
  height: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 28px 40px rgba(46, 125, 50, 0.18));
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 24px;
}

.metric-card {
  padding: 34px 28px;
}

.metric-icon {
  font-size: 28px;
  margin-bottom: 14px;
}

.metric-value {
  font-family: 'Playfair Display', serif;
  font-size: 46px;
  line-height: 1;
  font-weight: 800;
  color: var(--avs-blue);
  margin-bottom: 10px;
}

.metric-label {
  font-size: 15px;
  font-weight: 800;
  color: var(--avs-blue-dark);
  margin-bottom: 8px;
}

.metric-desc {
  font-size: 13px;
  line-height: 1.75;
  color: var(--text-muted);
  font-weight: 500;
}

.story-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
}

.story-card {
  padding: 36px 34px;
}

.story-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  line-height: 1.15;
  color: var(--avs-blue-dark);
  margin-bottom: 16px;
}

.story-card p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.85;
  font-weight: 500;
}

.recipe-container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.78fr);
  gap: 34px;
  align-items: start;
}

.recipe-steps-wrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.step-card {
  padding: 26px 26px 24px;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  border: 1px solid rgba(22, 90, 146, 0.08);
  box-shadow: 0 16px 40px rgba(11, 46, 74, 0.06);
  min-height: 124px;
}

.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  line-height: 1;
  font-weight: 900;
  color: rgba(46, 125, 50, 0.28);
}

.step-content h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--avs-blue-dark);
  margin-bottom: 8px;
}

.step-content p {
  font-size: 13.5px;
  line-height: 1.75;
  color: var(--text-muted);
  font-weight: 500;
}

.impa-code {
  display: inline-block;
  margin-bottom: 10px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(22, 90, 146, 0.08);
  color: var(--avs-blue);
  border: 1px solid rgba(22, 90, 146, 0.12);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.recipe-visual-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
  position: sticky;
  top: 96px;
  align-self: start;
}

.recipe-visual {
  position: relative;
  padding: 16px;
  border-radius: 32px;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.92), rgba(248,250,252,0.84));
  border: 1px solid var(--glass-border);
  box-shadow: 0 22px 52px rgba(11,46,74,0.08), inset 0 1px 0 rgba(255,255,255,0.9);
}

.recipe-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: contain;
  display: block;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 24px 58px rgba(22,90,146,0.10);
}

.floating-badge {
  position: absolute;
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(46, 125, 50, 0.22);
  color: var(--avs-green);
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  box-shadow: 0 12px 24px rgba(46, 125, 50, 0.10);
}

.badge-1 { top: 18px; left: 18px; }
.badge-2 { bottom: 18px; right: 18px; }

.impa-collection {
  padding: 26px;
  text-align: left;
  background:
    radial-gradient(circle at 10% 0%, rgba(46,125,50,0.10), transparent 34%),
    rgba(255,255,255,0.84);
}

.impa-collection h4 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 18px;
  text-align: center;
}

.ingredient-list {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.ingredient-list li {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(22,90,146,0.07);
  border: 1px solid rgba(22,90,146,0.10);
  color: var(--avs-blue);
  font-size: 11px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  text-align: center;
}

.ingredient-list li::before {
  display: none;
}

.impa-collection .btn-primary {
  width: 100%;
}

.map-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 50px;
  align-items: stretch;
}

.port-list {
  height: 600px;
  overflow-y: auto;
  padding: 20px;
  border-radius: 20px;
}

.port-list::-webkit-scrollbar {
  width: 4px;
}

.port-list::-webkit-scrollbar-thumb {
  background: rgba(22, 90, 146, 0.2);
  border-radius: 4px;
}

.port-item {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(22, 90, 146, 0.05);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  margin-bottom: 10px;
  cursor: pointer;
}

.port-item:hover,
.port-item.active {
  background: rgba(46, 125, 50, 0.15);
  padding-left: 24px;
  border-radius: 8px;
  color: var(--avs-green);
  border-color: transparent;
}

.port-dot-indicator {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(22, 90, 146, 0.2);
  transition: all 0.3s ease;
  flex: 0 0 auto;
}

.port-item:hover .port-dot-indicator,
.port-item.active .port-dot-indicator {
  background: var(--avs-green);
  box-shadow: 0 0 10px var(--avs-green);
}

.map-visual {
  padding: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  min-height: 660px;
  overflow: visible;
}

#italymap,
#francemap,
#spainmap,
#turkeymap,
#japanmap,
#srilankamap {
  width: 100%;
  max-height: 600px;
  overflow: visible;
  display: block;
}

.italy-land,
.france-land,
.spain-land,
.turkey-land,
.japan-land,
.srilanka-land {
  fill: rgba(22, 90, 146, 0.05);
  stroke: rgba(22, 90, 146, 0.15);
  stroke-width: 1.5;
  stroke-linejoin: round;
  transition: fill 0.4s ease;
}

.pdot {
  cursor: pointer;
}

.pdot circle.inner {
  fill: var(--avs-blue);
  transition: all 0.3s ease;
}

.pdot circle.pulse {
  fill: none;
  stroke: var(--avs-green);
  stroke-width: 1.5;
  opacity: 0;
}

.pdot:hover circle.inner,
.pdot.active circle.inner {
  fill: var(--avs-green);
  filter: drop-shadow(0 0 8px var(--avs-green));
  transform: scale(1.5);
  transform-origin: center;
}

.pdot.active circle.pulse {
  animation: port-pulse 1.5s ease-out infinite;
}

@keyframes port-pulse {
  0% { r: 4; opacity: 1; }
  100% { r: 20; opacity: 0; }
}

.map-tooltip {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--avs-green);
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 12px;
  font-weight: 800;
  color: var(--avs-blue);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.1s ease;
  z-index: 100;
  white-space: nowrap;
  letter-spacing: 1px;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 20px rgba(46, 125, 50, 0.1);
}

.showcase-wrap {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  overflow: hidden;
}

.showcase-img {
  min-height: 420px;
  position: relative;
}

.showcase-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.showcase-content {
  padding: 50px 42px;
}

.showcase-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 3.5vw, 48px);
  color: var(--avs-blue-dark);
  line-height: 1.08;
  margin-bottom: 16px;
}

.showcase-content h3 i {
  color: var(--avs-green);
  font-style: italic;
  font-weight: 500;
}

.showcase-content p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.8;
  font-weight: 500;
}

.cat-feature-list {
  list-style: none;
  margin: 26px 0 32px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.cat-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.cat-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.cat-icon-wrap.green {
  background: rgba(46, 125, 50, 0.10);
  color: var(--avs-green);
}

.cat-icon-wrap.blue {
  background: rgba(22, 90, 146, 0.10);
  color: var(--avs-blue);
}

.cat-icon-wrap.yellow {
  background: rgba(255, 230, 0, 0.20);
  color: var(--avs-blue-dark);
}

.cat-feature-text h4 {
  font-size: 16px;
  font-weight: 800;
  color: var(--avs-blue-dark);
  margin-bottom: 6px;
}

.cat-feature-text p {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
}

#gamification .game-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 24px;
}

.game-card {
  padding: 34px 28px;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.game-kicker {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(22, 90, 146, 0.08);
  color: var(--avs-blue);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.game-title {
  margin: 18px 0 12px;
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  line-height: 1.12;
  color: var(--avs-blue-dark);
}

.game-desc {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-muted);
  font-weight: 500;
}

.game-pill {
  display: inline-flex;
  width: max-content;
  margin-top: 18px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(46, 125, 50, 0.10);
  color: var(--avs-green);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.avs-ecosystem-section {
  padding: clamp(82px, 9vw, 126px) 0;
  position: relative;
  z-index: 2;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 12%, rgba(255, 230, 0, 0.2), transparent 34%),
    radial-gradient(circle at 92% 18%, rgba(22, 90, 146, 0.12), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.avs-ecosystem-section::before {
  content: '';
  position: absolute;
  inset: 24px;
  border-radius: 34px;
  border: 1px solid rgba(22, 90, 146, 0.08);
  pointer-events: none;
}

.avs-ecosystem-section::after {
  content: 'AVS';
  position: absolute;
  right: -26px;
  bottom: -72px;
  font-family: 'Playfair Display', serif;
  font-size: clamp(150px, 22vw, 320px);
  font-weight: 900;
  line-height: 1;
  color: rgba(22, 90, 146, 0.035);
  pointer-events: none;
}

.avs-ecosystem-section .sec-header {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 54px;
}

.avs-ecosystem-wrap {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
}

.avs-ecosystem-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.94fr);
  gap: 34px;
  align-items: stretch;
  border-radius: 34px;
  padding: clamp(20px, 3vw, 34px);
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(255,255,255,0.92);
  box-shadow: 0 26px 70px rgba(11, 46, 74, 0.08);
  overflow: hidden;
  transform: translateZ(0);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.avs-ecosystem-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 34px 86px rgba(11, 46, 74, 0.13);
  border-color: rgba(255, 230, 0, 0.42);
}

.avs-ecosystem-card::before {
  content: '';
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 999px;
  filter: blur(82px);
  opacity: 0.2;
  pointer-events: none;
}

.avs-ecosystem-card.portal {
  background:
    linear-gradient(110deg, rgba(7, 27, 51, 0.98) 0%, rgba(13, 46, 83, 0.96) 48%, rgba(255,255,255,0.92) 48.15%, rgba(248,250,252,0.94) 100%);
  border-color: rgba(255,255,255,0.5);
}

.avs-ecosystem-card.portal::before {
  right: -160px;
  top: -160px;
  background: rgba(255,230,0,0.42);
  opacity: 0.26;
}

.avs-ecosystem-card.wellbeing::before {
  right: -160px;
  top: -160px;
  background: rgba(22, 90, 146, 0.62);
}

.avs-ecosystem-card.lms::before {
  left: -170px;
  top: -170px;
  background: rgba(245, 164, 0, 0.7);
}

.avs-ecosystem-card.aquarex::before {
  left: -180px;
  bottom: -180px;
  background: rgba(34, 160, 107, 0.62);
}

.avs-ecosystem-content,
.avs-ecosystem-bento {
  position: relative;
  z-index: 2;
}

.avs-ecosystem-content {
  padding: clamp(18px, 2.7vw, 32px);
}

.avs-eco-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 22px;
  padding: 9px 16px;
  border-radius: 999px;
  color: var(--avs-blue);
  background: rgba(22,90,146,0.08);
  border: 1px solid rgba(22,90,146,0.14);
}

.avs-ecosystem-card.portal .avs-eco-tag {
  color: var(--avs-yellow);
  background: rgba(255, 230, 0, 0.13);
  border-color: rgba(255, 230, 0, 0.22);
}

.avs-ecosystem-card.lms .avs-eco-tag {
  color: #b45309;
  background: rgba(255,230,0,0.18);
  border-color: rgba(245,164,0,0.28);
}

.avs-ecosystem-card.aquarex .avs-eco-tag {
  color: #148052;
  background: rgba(34,160,107,0.09);
  border-color: rgba(34,160,107,0.18);
}

.avs-ecosystem-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1;
  letter-spacing: -1.1px;
  color: var(--avs-blue-dark);
  margin: 0;
}

.avs-ecosystem-card.portal .avs-ecosystem-content h3,
.avs-ecosystem-card.portal .avs-eco-subtitle,
.avs-ecosystem-card.portal .avs-eco-desc,
.avs-ecosystem-card.portal .avs-premium-list li,
.avs-ecosystem-card.portal .avs-premium-list li span {
  color: #ffffff;
}

.avs-eco-subtitle {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-style: italic;
  color: var(--avs-blue);
  margin-top: 12px;
  margin-bottom: 22px;
}

.avs-ecosystem-card.lms .avs-eco-subtitle {
  color: #b45309;
}

.avs-ecosystem-card.aquarex .avs-eco-subtitle {
  color: #148052;
}

.avs-eco-desc {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.8;
  font-weight: 500;
  margin-bottom: 28px;
}

.avs-ecosystem-card.portal .avs-eco-desc {
  color: rgba(255,255,255,0.82);
}

.avs-premium-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 15px;
}

.avs-premium-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  color: #334155;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 500;
}

.avs-premium-list li span {
  color: var(--avs-blue-dark);
  font-weight: 800;
}

.avs-list-icon {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(22, 90, 146, 0.1);
  color: var(--avs-blue);
  font-weight: 900;
  font-size: 12px;
  margin-top: 1px;
}

.avs-ecosystem-card.portal .avs-list-icon {
  background: rgba(255,230,0,0.15);
  color: var(--avs-yellow);
}

.avs-ecosystem-card.lms .avs-list-icon {
  background: rgba(245,164,0,0.12);
  color: #b45309;
}

.avs-ecosystem-card.aquarex .avs-list-icon {
  background: rgba(34,160,107,0.1);
  color: #148052;
}

.avs-ecosystem-bento {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-content: center;
}

.avs-bento-item {
  min-height: 150px;
  padding: 26px;
  border-radius: 26px;
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(255,255,255,0.9);
  box-shadow: 0 18px 38px rgba(11,46,74,0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: transform 0.3s ease, background 0.3s ease;
}

.avs-bento-item:hover {
  transform: translateY(-4px);
  background: #ffffff;
}

.avs-bento-item.full-width {
  grid-column: 1 / -1;
  min-height: 150px;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 22px;
}

.avs-bento-icon {
  font-size: 34px;
  margin-bottom: 15px;
}

.avs-bento-item.full-width .avs-bento-icon {
  margin-bottom: 0;
  font-size: 46px;
  flex: 0 0 auto;
}

.avs-bento-val {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  line-height: 1;
  font-weight: 900;
  color: var(--avs-blue-dark);
  margin-bottom: 8px;
}

.avs-bento-item.full-width .avs-bento-val {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.avs-bento-label {
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.3px;
}

.avs-bento-desc {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.65;
  font-weight: 500;
}

.contact-shell {
  padding: 90px 0 40px;
}

@media (max-width: 1100px) {
  .hero-grid,
  .showcase-wrap,
  .story-split {
    grid-template-columns: 1fr;
  }

  .map-layout {
    grid-template-columns: 1fr;
  }

  .map-visual {
    min-height: 720px;
  }

  .avs-ecosystem-card {
    grid-template-columns: 1fr;
  }

  .avs-ecosystem-card.portal {
    background:
      linear-gradient(180deg, rgba(7, 27, 51, 0.98) 0%, rgba(13, 46, 83, 0.96) 48%, rgba(255,255,255,0.92) 48.15%, rgba(248,250,252,0.94) 100%);
  }
}


@media (max-width: 860px) {
  .recipe-container {
    grid-template-columns: 1fr;
  }

  .recipe-visual-wrapper {
    position: static;
    top: auto;
  }

  .recipe-img {
    max-height: none;
  }
}

@media (max-width: 900px) {
  .metrics-grid,
  #gamification .game-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .section-pad,
  .avs-ecosystem-section {
    padding: 78px 0;
  }

  #hero {
    min-height: auto;
    padding: 50px 0 30px;
  }

  .hero-title {
    font-size: 42px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .step-card {
    grid-template-columns: 1fr;
  }

  .showcase-content {
    padding: 36px 22px;
  }

  .map-visual {
    padding: 10px;
    min-height: 610px;
  }

  #srilankamap {
    min-height: 560px;
  }

  .map-stats {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    grid-template-columns: 1fr;
    margin-top: 16px;
  }

  .avs-ecosystem-section::before {
    inset: 12px;
    border-radius: 24px;
  }

  .avs-ecosystem-card {
    padding: 22px;
    border-radius: 26px;
  }

  .avs-ecosystem-bento {
    grid-template-columns: 1fr;
  }

  .avs-bento-item.full-width {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .ingredient-list {
    grid-template-columns: 1fr;
  }

  .map-layout {
    grid-template-columns: 1fr;
  }

  .port-list {
    height: 300px;
  }

  .map-visual {
    min-height: 500px;
    padding: 24px;
  }

  #srilankamap {
    max-height: 480px;
  }

  .avs-ecosystem-card.portal .avs-ecosystem-content h3 {
    color: #ffffff;
  }
}

@media (max-width: 768px) {
  #italymap,
  #francemap,
  #spainmap,
  #turkeymap,
  #japanmap,
  #srilankamap {
    max-height: 480px;
  }
}
