:root {
  --bg: #ffffff;
  --text: #0d1b12;
  --muted: rgba(13, 27, 18, .72);
  --muted2: rgba(13, 27, 18, .58);
  --card: rgba(255, 255, 255, .72);
  --card2: rgba(255, 255, 255, .58);
  --stroke: rgba(18, 61, 34, .14);
  --green: #2f9a3a;
  --green2: #1c7b2c;
  --shadow: 0 18px 45px rgba(14, 38, 20, .12);
  --r: 28px;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: 'Instrument Sans', Inter, system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* =========================
   Creative Page Loader
   ========================= */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: #ffffff;
  opacity: 1;
  pointer-events: all;
  transition: opacity .35s ease, visibility .35s ease;
}

.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.page-loader__bg {
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(700px 420px at 25% 30%, rgba(56, 189, 248, .18) 0%, rgba(56, 189, 248, 0) 60%),
    radial-gradient(700px 420px at 70% 60%, rgba(34, 197, 94, .16) 0%, rgba(34, 197, 94, 0) 62%),
    radial-gradient(520px 320px at 50% 90%, rgba(16, 185, 129, .12) 0%, rgba(16, 185, 129, 0) 65%);
  filter: blur(2px);
}

.page-loader__card {
  position: relative;
  z-index: 1;
  width: min(520px, calc(100% - 48px));
  border-radius: 28px;
  padding: 28px 26px 24px;
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(18, 61, 34, .10);
  box-shadow: 0 24px 60px rgba(14, 38, 20, .10);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: grid;
  justify-items: center;
  text-align: center;
  overflow: hidden;
}

.page-loader__logo {
  width: 150px;
  margin-bottom: 10px;
}

.page-loader__logo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.page-loader__spinner {
  width: 62px;
  height: 62px;
  border-radius: 999px;
  background:
    conic-gradient(from 0deg, rgba(55, 175, 67, 0) 0%, rgba(55, 175, 67, .95) 40%, rgba(56, 189, 248, .95) 70%, rgba(55, 175, 67, 0) 100%);
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 10px), #000 0);
  mask: radial-gradient(farthest-side, transparent calc(100% - 10px), #000 0);
  animation: loaderSpin 1.05s linear infinite;
  margin: 10px 0 10px;
}

@keyframes loaderSpin {
  to { transform: rotate(360deg); }
}

.page-loader__text {
  font-weight: 800;
  color: #0b1a10;
  letter-spacing: -0.02em;
  font-size: 18px;
  margin-top: 2px;
}

.page-loader__dots {
  display: inline-flex;
  gap: 8px;
  margin-top: 12px;
}

.page-loader__dots span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #37af43;
  opacity: .35;
  transform: translateY(0);
  animation: loaderDots .9s ease-in-out infinite;
}

.page-loader__dots span:nth-child(2) { animation-delay: .12s; }
.page-loader__dots span:nth-child(3) { animation-delay: .24s; }

@keyframes loaderDots {
  0%, 100% { opacity: .35; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(-4px); }
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1400px, calc(100% - 40px));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: absolute;
  top: 40px;
  /* Push down to sit comfortably inside the hero card */
  left: 0;
  width: 100%;
  z-index: 50;
  padding: 0;
  background: transparent;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: relative;
  padding: 0 20px;
  /* Added padding to move clear of edges */
  /* ensure it stays on top */
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: #1c7b2c;
  z-index: 2;
  margin-left: 20px;
  /* Slight offset to match image visually */
}

.brand-mark {
  width: 120px;
  height: auto;
  display: flex;
  align-items: center;
}

.brand-mark img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.brand-text {
  font-size: 18px;
}

.nav-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 8px;
  /* Compact padding for container */
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.65);
  /* More opaque */
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 4px 12px rgba(16, 48, 26, 0.05);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.nav-link {
  padding: 10px 24px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  color: #2c4235;
  transition: all .2s ease;
}

.nav-link:hover {
  background: rgba(255, 255, 255, 0.6);
  color: #0b1f13;
}

.nav-link.is-active {
  background: #ddeadf;
  /* Light green active bg */
  color: #1e3825;
  font-weight: 600;
}

.nav-sep {
  display: none;
  /* remove separator as per image */
}

.lang {
  position: relative;
  margin-left: 4px;
  border-left: 1px solid rgba(0, 0, 0, 0.06);
  padding-left: 4px;
}

.lang>summary {
  list-style: none;
  cursor: pointer;
}

.lang>summary::-webkit-details-marker {
  display: none;
}

.lang-trigger {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  color: #2c4235;
  cursor: pointer;
  transition: background .2s;
}

.lang-trigger:hover {
  background: rgba(255, 255, 255, 0.5);
}

.lang[open] .lang-trigger {
  background: rgba(255, 255, 255, 0.8);
}

.lang-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 160px;
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(19, 63, 36, .14);
  border-radius: 14px;
  padding: 8px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.lang-item {
  display: block;
  padding: 10px 10px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(13, 27, 18, .82);
}

.lang-item:hover {
  background: rgba(47, 154, 58, .10);
}

.phone-pill {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: 999px;
  background: transparent;
  border: 1.5px solid #37af43;
  box-shadow: none;
  font-weight: 800;
  font-size: 15px;
  color: #37af43;
  transition: all .2s;
}

.phone-pill:hover {
  background: rgba(55, 175, 67, 0.05);
}

.phone-icon {
  display: none;
  /* Image shows just text usually, or specific icon. Removing for cleaner look if distinct in image, but let's keep text only or minimal */
}

.menu-btn {
  display: none;
  justify-self: end;
  width: 52px;
  height: 52px;
  min-width: 52px;
  min-height: 52px;
  border-radius: 16px;
  border: 1.5px solid rgba(19, 63, 36, 0.12);
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 100;
}

.menu-btn:hover {
  background: #f8f9fa;
  border-color: rgba(19, 63, 36, 0.2);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  transform: translateY(-1px);
}

.menu-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.menu-btn[aria-expanded="true"] {
  background: var(--green);
  border-color: var(--green);
}

.menu-btn[aria-expanded="true"] .menu-lines {
  color: #ffffff;
}

.menu-lines {
  width: 22px;
  height: 16px;
  margin: 0;
  display: block;
  position: relative;
  background:
    linear-gradient(currentColor, currentColor) 0 0/100% 2.5px no-repeat,
    linear-gradient(currentColor, currentColor) 0 50%/100% 2.5px no-repeat,
    linear-gradient(currentColor, currentColor) 0 100%/100% 2.5px no-repeat;
  color: var(--text);
  transition: all 0.2s ease;
}

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 9999;
}

.mobile-drawer.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-card {
  position: absolute;
  top: 0;
  right: 0;
  width: min(380px, calc(100% - 0px));
  height: 100%;
  max-height: 100vh;
  border-radius: 0;
  border-left: 1px solid rgba(19, 63, 36, 0.1);
  background: #ffffff;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
  padding: 0;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  overflow-x: hidden;
}

/* Custom scrollbar for mobile menu */
.mobile-card::-webkit-scrollbar {
  width: 6px;
}

.mobile-card::-webkit-scrollbar-track {
  background: #f8f9fa;
}

.mobile-card::-webkit-scrollbar-thumb {
  background: rgba(19, 63, 36, 0.2);
  border-radius: 3px;
}

.mobile-card::-webkit-scrollbar-thumb:hover {
  background: rgba(19, 63, 36, 0.3);
}

.mobile-drawer.is-open .mobile-card {
  transform: translateX(0);
}

.mobile-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(19, 63, 36, 0.1);
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 10;
}

.mobile-title {
  font-weight: 700;
  font-size: 18px;
  color: var(--text);
  letter-spacing: -0.01em;
}

.mobile-close {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(19, 63, 36, 0.1);
  background: #f8f9fa;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  color: var(--text);
}

.mobile-close:hover {
  background: #e9ecef;
  border-color: rgba(19, 63, 36, 0.15);
}

.mobile-close:active {
  transform: scale(0.95);
}

.mobile-link {
  display: block;
  padding: 16px 24px;
  border-radius: 0;
  font-weight: 500;
  font-size: 16px;
  color: var(--text);
  transition: all 0.2s;
  border-bottom: 1px solid rgba(19, 63, 36, 0.05);
  text-decoration: none;
}

.mobile-link:hover {
  background: rgba(47, 154, 58, 0.08);
  color: var(--green);
}

.mobile-link.is-active {
  background: rgba(47, 154, 58, 0.12);
  color: var(--green);
  font-weight: 600;
  border-left: 3px solid var(--green);
}

.mobile-divider {
  height: 1px;
  background: rgba(19, 63, 36, 0.1);
  margin: 0;
  border: none;
}

.mobile-lang {
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-bottom: 1px solid rgba(19, 63, 36, 0.1);
}

.mobile-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mobile-lang-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 8px;
  border: 1.5px solid rgba(19, 63, 36, 0.15);
  background: #ffffff;
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
  transition: all 0.2s;
  text-decoration: none;
}

.chip:hover {
  border-color: var(--green);
  background: rgba(47, 154, 58, 0.05);
}

.chip.is-active {
  border-color: var(--green);
  background: var(--green);
  color: #ffffff;
}

.mobile-phone {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 24px;
  border-radius: 0;
  border: none;
  border-top: 1px solid rgba(19, 63, 36, 0.1);
  background: rgba(47, 154, 58, 0.08);
  font-weight: 700;
  font-size: 16px;
  color: var(--green);
  text-decoration: none;
  transition: all 0.2s;
}

.mobile-phone:hover {
  background: rgba(47, 154, 58, 0.12);
  color: var(--green2);
}

/* Mobile Menu Responsive Adjustments */
@media (max-width: 480px) {
  .mobile-card {
    width: 100%;
    max-width: 100%;
  }

  .mobile-top {
    padding: 18px 20px;
  }

  .mobile-title {
    font-size: 16px;
  }

  .mobile-close {
    width: 40px;
    height: 40px;
  }

  .mobile-link {
    padding: 16px 20px;
    font-size: 15px;
  }

  .mobile-lang {
    padding: 18px 20px;
  }

  .mobile-phone {
    padding: 16px 20px;
    font-size: 15px;
  }

  .menu-btn {
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
  }

  .menu-lines {
    width: 20px;
    height: 14px;
  }
}

/* Hero */
.hero {
  padding: 0;
  /* Remove padding so it starts at top */
  margin-top: 0;
  background: #ffffff;
}

.hero-card {
  position: relative;
  border-radius: 46px;
  /* Larger radius from image */
  overflow: hidden;
  /* Gradient from image: Light Cyan/White -> Light Green */
  background: linear-gradient(120deg, #d8f1ff 0%, #e2fceb 35%, #ebfdf1 60%, #e1fbe9 100%);
  border: none;
  /* Image looks borderless or very subtle */
  box-shadow: none;
  /* Flat abstract look, or very subtle */
  min-height: 600px;
  /* Shortened height */
  padding-top: 100px;
  /* Slightly less space for header */
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("./img/bg.gif");
  background-size: cover;
  background-position: right center;
  transform: scale(1.02);
  opacity: .95;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 520px at 20% 30%, rgba(255, 255, 255, .92) 0%, rgba(255, 255, 255, .68) 40%, rgba(255, 255, 255, .0) 74%),
    linear-gradient(90deg, rgba(255, 255, 255, .58) 0%, rgba(255, 255, 255, .20) 54%, rgba(255, 255, 255, 0) 72%);
}

.hero-content {
  position: relative;
  padding: 60px 60px 80px;
  max-width: 720px;
  z-index: 10;
}

.hero-title {
  margin: 0 0 24px;
  font-size: 58px;
  /* Bigger title */
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 600;
  color: #051b11;
}

.hero-desc {
  margin: 0 0 36px;
  font-size: 16px;
  line-height: 1.6;
  color: #4a5c52;
  font-weight: 500;
  max-width: 580px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 42px;
  border-radius: 999px;
  background: #43aa51;
  /* Vivid organic green */
  color: white;
  font-weight: 600;
  font-size: 16px;
  border: none;
  box-shadow: 0 10px 25px rgba(67, 170, 81, 0.25);
  transition: all 0.2s ease;
}

.btn-primary:hover {
  filter: brightness(.98);
}

.btn-primary:active {
  transform: translateY(1px);
}

.hero-features {
  position: relative;
  display: flex;
  gap: 32px;
  padding: 0 0 40px 60px;
  align-items: center;
  margin-top: 40px;
  z-index: 10;
}

.feature {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: flex-start;
  padding: 0;
}

.feature-ico {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #1c7b2c;
  background: transparent;
  border: none;
  backdrop-filter: none;
}

.feature-ico img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.feature-text {
  font-size: 14px;
  font-weight: 700;
  color: #0f2518;
  white-space: nowrap;
}

/* About Creative */
.about {
  padding: 100px 0 100px;
}

.about-inner {
  display: flex;
  align-items: center;
  gap: 80px;
  /* Keep gap large for breathability */
  justify-content: center;
  /* Center the group instead of spreading */
}

.about-content {
  max-width: 540px;
  flex: 1;
}

.year-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 6px 8px;
  background: #ebfcf2;
  border-radius: 999px;
  margin-bottom: 24px;
}

.year-num {
  background: #37af43;
  color: #fff;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 14px;
}

.year-label {
  color: #1e572d;
  font-weight: 700;
  font-size: 14px;
  padding-right: 8px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.about-title {
  margin: 0 0 24px;
  font-size: 42px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: #0d1b12;
}

.about-desc {
  margin: 0 0 18px;
  font-size: 16px;
  line-height: 1.6;
  color: #55605a;
}

.about-stat-row {
  display: flex;
  gap: 40px;
  margin-top: 36px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding-top: 32px;
}

.mini-stat {
  display: flex;
  flex-direction: column;
}

.mini-val {
  font-size: 32px;
  font-weight: 800;
  color: #37af43;
  line-height: 1;
  margin-bottom: 4px;
}

.mini-lbl {
  font-size: 13px;
  font-weight: 600;
  color: #0d1b12;
  opacity: 0.7;
}

.about-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  position: relative;
}

.visual-frame {
  position: relative;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 4/3.2;
  /* Taller rectangular feel */
  border-radius: 40px;
  /* Big smooth corners */
  overflow: hidden;
  box-shadow: 0 32px 80px -20px rgba(55, 175, 67, 0.15);
}

.visual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.visual-frame:hover .visual-img {
  transform: scale(1.03);
}

.visual-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 100%, rgba(55, 175, 67, 0.2) 0%, rgba(0, 0, 0, 0) 60%);
  pointer-events: none;
}

/* Response fix */
@media (max-width: 980px) {
  .about-inner {
    flex-direction: column;
    gap: 40px;
  }

  .about-title {
    font-size: 32px;
  }
}

/* Supplements section (stats + image cards) */
.supplements {
  padding: 18px 0 80px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 38px;
}

.stat-card {
  position: relative;
  border-radius: 32px;
  padding: 24px;
  background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
  border: 1px solid rgba(47, 154, 58, .08);
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  transition: transform 0.2s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(16, 48, 26, 0.05);
}

.stat-content {
  position: relative;
  z-index: 2;
}

.stat-number-row {
  display: flex;
  align-items: baseline;
  gap: 4px;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-val {
  font-size: 52px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #0b1f13;
  /* Black/Dark Green */
}

.stat-suf {
  font-size: 20px;
  font-weight: 800;
  color: #0b1f13;
}

.stat-sub {
  font-size: 14px;
  color: #55605a;
  margin-bottom: 24px;
  font-weight: 500;
}

.stat-title {
  font-size: 16px;
  font-weight: 800;
  line-height: 1.25;
  color: #0b1f13;
  max-width: 90%;
}

.stat-icon-wrap {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  z-index: 1;
}

.stat-img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 2;
  filter: drop-shadow(0 4px 12px rgba(55, 175, 67, 0.3));
}

.stat-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  z-index: 1;
  background: rgba(145, 224, 181, 0.15);
  /* Slightly cooler green/blue tint */
  box-shadow:
    0 0 0 14px rgba(145, 224, 181, 0.10),
    0 0 0 28px rgba(145, 224, 181, 0.05);
}

.stat-glow::after {
  content: none;
}

.supp-head {
  margin-bottom: 18px;
  max-width: 780px;
}

.supp-title {
  margin: 0 0 10px;
  font-size: 40px;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.supp-desc {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.img-card {
  position: relative;
  border-radius: 32px;
  min-height: 240px;
  overflow: hidden;
  border: 1px solid rgba(19, 63, 36, .10);
  box-shadow: 0 18px 40px rgba(14, 38, 20, .08);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.img-card__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(240, 250, 245, .92) 0%, rgba(240, 250, 245, .72) 42%, rgba(240, 250, 245, 0) 78%),
    radial-gradient(600px 260px at 15% 50%, rgba(255, 255, 255, .55) 0%, rgba(255, 255, 255, 0) 70%);
}

.img-card__content {
  position: relative;
  padding: 28px 26px;
  max-width: 360px;
}

.img-card__title {
  margin: 0 0 8px;
  font-size: 36px;
  line-height: 1.06;
  letter-spacing: -0.03em;
}

.img-card__text {
  margin: 0;
  color: rgba(13, 27, 18, .70);
  font-size: 14px;
  line-height: 1.6;
  font-weight: 500;
}

.img-card--bg1 {
  background-image: url("./img/bg1.jpg");
}

.img-card--bg2 {
  background-image: url("./img/bg2.jpg");
}

.img-card--bg3 {
  background-image: url("./img/bg3.jpg");
}

.img-card--bg4 {
  background-image: url("./img/bg4.png");
}

.img-card--bg4 .img-card__overlay {
  background:
    linear-gradient(90deg, rgba(240, 250, 245, .86) 0%, rgba(240, 250, 245, .56) 44%, rgba(240, 250, 245, 0) 80%),
    radial-gradient(600px 260px at 15% 50%, rgba(255, 255, 255, .45) 0%, rgba(255, 255, 255, 0) 70%);
}

/* Banners (catalog + uzum market) */
.banners {
  padding: 64px 0 100px;
  background: #ffffff;
  /* White section background */
}

.banners-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.banner-card {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  min-height: 280px;
  text-decoration: none;
  display: block;
  transition: transform 0.3s ease;
}

.banner-card:hover {
  transform: translateY(-4px);
}

/* Catalog Banner */
.banner-catalog {
  background: #f9f9f9;
  /* Very pale gray/white */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.banner-content-center {
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.ban-title {
  font-size: 32px;
  font-weight: 800;
  color: #000000;
  margin-bottom: 10px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.ban-subtitle {
  font-size: 15px;
  color: #666666;
  margin-bottom: 36px;
  font-weight: 500;
}

.ban-img-wrap {
  width: 100%;
  max-width: 360px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
}

.ban-img-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.08));
}

/* Uzum Market Banner */
.banner-uzum {
  background: #eddcfe;
  /* Light purple/lavender */
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 44px 48px;
  overflow: hidden;
}

.ban-uzum-content {
  display: flex;
  flex-direction: column;
  z-index: 2;
  max-width: 60%;
}

.uzum-logo-text {
  font-family: 'Inter', sans-serif;
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
  text-transform: lowercase;
  /* Force lowercase */
}

.uzum-word {
  color: #7e3af2;
  /* Vibrant purple */
}

.market-word {
  color: #7e3af2;
}

.ban-uzum-title {
  font-size: 32px;
  font-weight: 800;
  color: #000000;
  line-height: 1.2;
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

.promo-box {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.promo-label {
  font-size: 16px;
  font-weight: 600;
  color: #000000;
}

.promo-code {
  font-size: 22px;
  font-weight: 900;
  color: #7e3af2;
  /* Vibrant purple */
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.ban-uzum-img {
  position: absolute;
  right: -60px;
  bottom: -60px;
  width: 340px;
  height: 340px;
  z-index: 1;
}

.ban-uzum-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 24px 48px rgba(126, 58, 242, 0.3));
}

/* Responsive */
@media (max-width: 980px) {
  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .nav-pill,
  .phone-pill {
    display: none;
  }

  .menu-btn {
    display: flex;
  }

  .hero-card {
    min-height: 520px;
  }

  .hero-content {
    padding: 64px 26px 64px;
    max-width: 640px;
  }

  .hero-title {
    font-size: 38px;
  }

  .feature-text {
    white-space: normal;
  }

  .hero-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 18px;
    padding: 0 18px 22px;
    margin-top: 18px;
  }

  .feature {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(1120px, calc(100% - 28px));
  }

  .hero {
    padding-top: 10px;
  }

  .hero-card {
    border-radius: 26px;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-content {
    padding: 54px 18px 56px;
  }

  .hero-features {
    display: grid;
    grid-template-columns: 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-title {
    font-size: 28px;
  }
}

@media (max-width: 980px) {
  .stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .supp-title {
    font-size: 34px;
  }

  .img-card__title {
    font-size: 32px;
  }
}

@media (max-width: 640px) {
  .stats {
    grid-template-columns: 1fr;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .supp-title {
    font-size: 30px;
  }

  .img-card__content {
    padding: 22px 18px;
  }

  .img-card__title {
    font-size: 28px;
  }
}

@media (max-width: 980px) {
  .banners-grid {
    grid-template-columns: 1fr;
  }

  /* Welcome banners (real markup) */
  .banner-card {
    min-height: unset;
  }

  .banner-content-center {
    padding: 34px 26px;
  }

  .ban-title {
    font-size: 28px;
  }

  .ban-img-wrap {
    max-width: 360px;
    height: 140px;
  }

  .banner-uzum {
    padding: 34px 30px;
  }

  .ban-uzum-content {
    max-width: 70%;
  }

  .ban-uzum-img {
    right: -36px;
    bottom: -36px;
    width: 280px;
    height: 280px;
  }
}

@media (max-width: 640px) {
  /* Welcome banners (real markup) */
  .banner-card {
    border-radius: 22px;
  }

  .banner-content-center {
    padding: 26px 20px;
  }

  .ban-title {
    font-size: 26px;
  }

  .ban-subtitle {
    margin-bottom: 22px;
  }

  .ban-img-wrap {
    height: 120px;
    max-width: 320px;
  }

  .banner-uzum {
    flex-direction: column;
    align-items: flex-start;
    padding: 26px 22px;
  }

  .ban-uzum-content {
    max-width: 100%;
  }

  .ban-uzum-img {
    position: relative;
    right: auto;
    bottom: auto;
    width: 220px;
    height: 220px;
    margin-top: 18px;
    align-self: center;
  }
}

/* Partners Section */
.partners {
  padding: 80px 0;
  background: #ffffff;
}

.partners-title {
  margin: 0 0 48px;
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  align-items: center;
  justify-items: center;
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 200px;
  height: 120px;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: filter 0.3s ease, opacity 0.3s ease;
}

.partner-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
}

.partner-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* FAQ */
.faq-section {
  padding: 70px 0 100px;
  background: #ffffff;
}

.faq-title {
  font-size: 44px;
  font-weight: 900;
  letter-spacing: -0.03em;
  margin: 0 0 26px;
  color: #000;
}

.faq-card {
  background: #eef9f0;
  border-radius: 28px;
  padding: 22px;
  border: 1px solid rgba(28, 123, 44, .10);
}

.faq-item {
  border-radius: 22px;
  background: rgba(255, 255, 255, .45);
  border: 1px solid rgba(28, 123, 44, .10);
  overflow: hidden;
}

.faq-item + .faq-item {
  margin-top: 14px;
}

.faq-q {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 20px;
  font-weight: 800;
  color: #0b1a10;
}

.faq-q::-webkit-details-marker {
  display: none;
}

.faq-q-text {
  font-size: 18px;
  line-height: 1.25;
}

.faq-plus {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  position: relative;
  flex: 0 0 auto;
  background: rgba(255, 255, 255, .55);
  border: 1px solid rgba(28, 123, 44, .14);
}

.faq-plus::before,
.faq-plus::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 16px;
  height: 2.6px;
  background: #0b1a10;
  transform: translate(-50%, -50%);
  border-radius: 2px;
}

.faq-plus::after {
  width: 2.6px;
  height: 16px;
}

.faq-item[open] .faq-plus::after {
  display: none; /* plus -> minus */
}

.faq-a {
  padding: 0 20px 18px;
  color: rgba(13, 27, 18, .78);
  font-weight: 600;
  line-height: 1.6;
  font-size: 15px;
}

@media (max-width: 640px) {
  .faq-title {
    font-size: 32px;
  }

  .faq-q-text {
    font-size: 16px;
  }
}

/* Articles */
.articles-section {
  padding: 70px 0 90px;
  background: #ffffff;
}

.articles-page {
  padding-top: 150px; /* header absolute bo‘lgani uchun */
}

.articles-page-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 26px;
}

.articles-page-sub {
  margin: 10px 0 0;
  color: rgba(13, 27, 18, .72);
  font-weight: 600;
  line-height: 1.6;
  max-width: 680px;
}

.articles-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.articles-title {
  margin: 0;
  font-size: 44px;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #000;
}

.articles-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 34px;
  border-radius: 999px;
  background: #37af43;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(55, 175, 67, .22);
}

.articles-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 18px;
  align-items: stretch;
}

.article-main {
  display: grid;
  grid-template-columns: 1fr;
  border-radius: 24px;
  overflow: hidden;
  background: #eef9f0;
  border: 1px solid rgba(28, 123, 44, .10);
  box-shadow: 0 12px 28px rgba(14, 38, 20, .08);
  text-decoration: none;
}

.article-main-media {
  height: 300px;
  background: #e7f6ea;
}

.article-main-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.article-main-body {
  padding: 18px 20px 16px;
}

.article-main-title {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #0b1a10;
}

.article-main-excerpt {
  margin: 0 0 12px;
  color: rgba(13, 27, 18, .72);
  font-weight: 600;
  line-height: 1.55;
  font-size: 14px;
}

.article-list {
  display: grid;
  gap: 14px;
}

.article-item {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 14px;
  align-items: center;
  border-radius: 22px;
  background: #eef9f0;
  border: 1px solid rgba(28, 123, 44, .10);
  padding: 14px;
  text-decoration: none;
}

.article-item-media {
  width: 88px;
  height: 72px;
  border-radius: 16px;
  overflow: hidden;
  background: #e7f6ea;
}

.article-item-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.article-item-title {
  margin: 0 0 6px;
  font-size: 14px;
  font-weight: 900;
  color: #0b1a10;
  line-height: 1.2;
}

.article-item-excerpt {
  margin: 0 0 8px;
  font-size: 12px;
  color: rgba(13, 27, 18, .72);
  font-weight: 600;
  line-height: 1.45;
}

.article-date {
  font-size: 12px;
  color: rgba(13, 27, 18, .58);
  font-weight: 700;
}

.article-media-ph {
  width: 100%;
  height: 100%;
  background:
    radial-gradient(600px 260px at 20% 20%, rgba(255, 255, 255, .55) 0%, rgba(255, 255, 255, 0) 60%),
    linear-gradient(120deg, #d8f1ff 0%, #e2fceb 35%, #ebfdf1 60%, #e1fbe9 100%);
}

.article-media-ph.is-sm {
  border-radius: 16px;
}

.article-empty {
  padding: 18px;
  border-radius: 22px;
  background: #eef9f0;
  border: 1px solid rgba(28, 123, 44, .10);
  color: rgba(13, 27, 18, .72);
  font-weight: 700;
}

/* Articles page grid */
.articles-page-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.article-card {
  border-radius: 24px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(28, 123, 44, .10);
  box-shadow: 0 12px 28px rgba(14, 38, 20, .08);
  display: grid;
  grid-template-rows: 190px 1fr;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease;
}

.article-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 38px rgba(14, 38, 20, .12);
}

.article-card-media {
  background: #e7f6ea;
}

.article-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.article-card-body {
  padding: 16px 16px 14px;
}

.article-card-title {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 900;
  color: #0b1a10;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.article-card-excerpt {
  margin: 0 0 12px;
  color: rgba(13, 27, 18, .72);
  font-weight: 600;
  line-height: 1.55;
  font-size: 13px;
}

.articles-pagination {
  margin-top: 22px;
}

.articles-pagination nav {
  display: flex;
  justify-content: center;
}

.articles-pagination .pagination {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 12px 14px;
  border-radius: 999px;
  background: #eef9f0;
  border: 1px solid rgba(28, 123, 44, .10);
}

.articles-pagination .page-item {
  list-style: none;
}

.articles-pagination .page-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .65);
  border: 1px solid rgba(28, 123, 44, .12);
  color: #0b1a10;
  font-weight: 800;
}

.articles-pagination .page-item.active .page-link {
  background: #37af43;
  color: #fff;
  border-color: #37af43;
}

.articles-pagination .page-item.disabled .page-link {
  opacity: .55;
  pointer-events: none;
}

@media (max-width: 980px) {
  .articles-grid {
    grid-template-columns: 1fr;
  }

  .offer-grid {
    grid-template-columns: 1fr;
  }

  .offer-card {
    padding-right: 26px;
    min-height: unset;
  }

  .offer-media {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    justify-content: flex-end;
    margin-top: 10px;
  }

  .offer-media img {
    max-width: 260px;
    transform: none;
  }

  .offer-card:nth-child(3) .offer-media img,
  .offer-card:nth-child(4) .offer-media img {
    transform: none;
  }

  .export-contact-card {
    grid-template-columns: 1fr;
  }

  .export-contact-title {
    font-size: 40px;
  }

  .export-contact-media {
    min-height: 240px;
  }

  .export-contact-subtitle {
    font-size: 34px;
  }

  .export-contact-actions {
    grid-template-columns: 1fr;
  }

  .articles-page-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .articles-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .articles-title {
    font-size: 32px;
  }

  .article-main-media {
    height: 220px;
  }

  .articles-page {
    padding-top: 130px;
  }

  .articles-page-grid {
    grid-template-columns: 1fr;
  }

  .article-card {
    grid-template-rows: 200px 1fr;
  }

  .bio-supplements-title {
    font-size: 36px;
  }

  .offer-title {
    font-size: 34px;
  }

  .offer-card-title {
    font-size: 26px;
  }

  .export-contact-card {
    padding: 22px;
    border-radius: 26px;
  }

  .export-contact-title {
    font-size: 34px;
  }

  .export-contact-subtitle {
    font-size: 30px;
  }
}

/* Contact Info Section */
.contact-info {
  padding: 80px 0;
  background: var(--green);
  border-radius: var(--r) var(--r) 0 0;
}

.contact-info-title {
  margin: 0 0 48px;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  align-items: start;
}

.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-label {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-value {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  transition: opacity 0.2s ease;
}

.contact-value:hover {
  opacity: 0.85;
}

.contact-info-text {
  margin: 0 0 8px;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
}

.social-links {
  display: flex;
  gap: 16px;
  align-items: center;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #ffffff;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.social-link:hover {
  opacity: 0.8;
  transform: translateY(-2px);
}

.social-link svg {
  width: 24px;
  height: 24px;
}

/* Responsive for Partners and Contact */
@media (max-width: 980px) {
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .partners-title,
  .contact-info-title {
    font-size: 36px;
  }
}

@media (max-width: 640px) {
  .partners {
    padding: 60px 0;
  }

  .partners-title {
    font-size: 32px;
    margin-bottom: 36px;
  }

  .partners-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .partner-logo {
    max-width: 160px;
    height: 100px;
  }

  .contact-info {
    padding: 60px 0;
    border-radius: 24px 24px 0 0;
  }

  .contact-info-title {
    font-size: 28px;
    margin-bottom: 36px;
  }

  .contact-info-grid {
    gap: 28px;
  }

  .contact-info-col {
    gap: 20px;
  }

  .contact-value {
    font-size: 16px;
  }

  .contact-info-text {
    font-size: 15px;
  }

  .social-links {
    gap: 12px;
  }

  .social-link {
    width: 36px;
    height: 36px;
  }

  .social-link svg {
    width: 20px;
    height: 20px;
  }
}

/* =========================================
   New Sections Styling
   ========================================= */

/* Feature Grid Section */
.features-grid-section {
  padding: 80px 0 60px;
}

.bio-supplements {
  padding: 80px 0 50px;
  background: #ffffff;
}

.bio-supplements-title {
  margin: 0 0 14px;
  font-size: 52px;
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #000;
  max-width: 980px;
}

.bio-supplements-sub {
  margin: 0;
  max-width: 760px;
  color: rgba(13, 27, 18, .72);
  font-weight: 600;
  line-height: 1.65;
  font-size: 16px;
}

/* Offer section (Hamkorlik uchun takliflarimiz) */
.offer-section {
  padding: 70px 0 90px;
  background: #ffffff;
}

.offer-title {
  margin: 0 0 26px;
  text-align: center;
  font-size: 46px;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #000;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.offer-card {
  position: relative;
  border-radius: 26px;
  background: linear-gradient(90deg, #d7fad7 0%, #c9f7c9 45%, #dafbda 100%);
  border: 1px solid rgba(28, 123, 44, .12);
  box-shadow: 0 12px 28px rgba(14, 38, 20, .08);
  overflow: hidden;
  min-height: 220px;
  padding: 26px 26px;
  padding-right: 240px;
}

.offer-content {
  position: relative;
  z-index: 1;
  max-width: 440px;
}

.offer-card-title {
  margin: 0 0 10px;
  font-size: 34px;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: #0b1a10;
}

.offer-card-text {
  margin: 0;
  color: rgba(13, 27, 18, .72);
  font-weight: 600;
  line-height: 1.6;
  font-size: 16px;
  max-width: 520px;
}

.offer-media {
  position: absolute;
  right: -10px;
  bottom: -6px;
  width: 230px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  pointer-events: none;
  z-index: 0;
  opacity: .95;
}

.offer-media img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.10));
  transform: translateY(6px);
}

.offer-card:nth-child(3) .offer-media img {
  transform: rotate(-6deg) translateY(10px);
  transform-origin: bottom right;
}

.offer-card:nth-child(4) .offer-media img {
  transform: rotate(6deg) translateY(10px);
  transform-origin: bottom right;
}

.offer-footnote {
  margin: 22px auto 0;
  max-width: 860px;
  text-align: center;
  color: rgba(13, 27, 18, .72);
  font-weight: 600;
  line-height: 1.65;
  font-size: 16px;
}

.offer-cta {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

/* Export Contact (Savollaringiz bormi?) */
.export-contact {
  padding: 44px 0 40px;
  background: #ffffff;
}

.export-contact-card {
  background: #eef8ee;
  border-radius: 34px;
  padding: 34px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 28px;
  align-items: stretch;
}

.export-contact-title {
  margin: 0 0 18px;
  font-size: 54px;
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #0b1a10;
}

.export-contact-form {
  display: grid;
  gap: 14px;
  max-width: 560px;
}

.export-contact-input,
.export-contact-textarea {
  width: 100%;
  border: none;
  outline: none;
  border-radius: 14px;
  background: #ffffff;
  padding: 16px 18px;
  font-size: 15px;
  color: #0b1a10;
  box-shadow: 0 10px 22px rgba(14, 38, 20, .06);
}

.export-contact-textarea {
  resize: none;
  min-height: 120px;
  padding-top: 14px;
}

.export-contact-input::placeholder,
.export-contact-textarea::placeholder {
  color: rgba(13, 27, 18, .55);
  font-weight: 600;
}

.export-contact-submit {
  width: 240px;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 22px;
}

.export-contact-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.export-contact-media {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border-radius: 26px;
  background: #d9d9d9;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .06);
}

.export-contact-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: .65;
}

.export-contact-subtitle {
  margin: 28px 0 16px;
  font-size: 44px;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #0b1a10;
}

.export-contact-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.contact-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 18px;
  font-size: 18px;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid rgba(0, 0, 0, .06);
  box-shadow: 0 12px 24px rgba(14, 38, 20, .06);
  transition: transform .15s ease, box-shadow .15s ease;
}

.contact-chip:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(14, 38, 20, .10);
}

.contact-chip-ico {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .18);
  color: #fff;
}

.contact-chip-ico img {
  width: 26px;
  height: 26px;
  display: block;
  object-fit: contain;
}

.contact-chip-text {
  color: #fff;
}

.contact-chip.is-telegram {
  background: linear-gradient(90deg, #2aa9df 0%, #1690c7 100%);
  color: #fff;
}

.contact-chip.is-whatsapp {
  background: linear-gradient(90deg, #52e76a 0%, #1fb83a 100%);
  color: #fff;
}

.contact-chip.is-email {
  background: #f3f2ef;
  color: #0b1a10;
}

.contact-chip.is-email .contact-chip-ico {
  background: rgba(0, 0, 0, .06);
  color: #0b1a10;
}

.contact-chip.is-email .contact-chip-text {
  color: #0b1a10;
}

.section-title {
  margin: 0 0 42px;
  font-size: 38px;
  line-height: 1.15;
  font-weight: 700;
  max-width: 700px;
}

.green-text {
  color: #37af43;
}

/* Vivid green */
.red-text {
  color: #d32f2f;
}

/* Problems Section (Visualization) */
/* Problems Section (Visualization) */
.problems-section {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
}

.bg-decoration-left {
  position: absolute;
  top: -100px;
  left: -250px;
  width: 700px;
  opacity: 1;
  pointer-events: none;
  z-index: 0;
}

.bg-decoration-right {
  position: absolute;
  bottom: -100px;
  right: -250px;
  width: 700px;
  opacity: 1;
  pointer-events: none;
  z-index: 0;
}

.bg-decoration-left img,
.bg-decoration-right img {
  width: 100%;
  height: auto;
  display: block;
  /* Use object-position to chop if needed, or depends on image.
     Assuming bg3.png is the green beads circular thing.
  */
}

.problems-header {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-bottom: 60px;
}

.prob-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 12px;
}

.prob-subtitle {
  font-size: 22px;
  font-weight: 500;
  color: #55605a;
}

.problems-circle {
  position: relative;
  height: 420px;
  /* Taller to fit */
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  z-index: 2;
}

.prob-connector-img {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 720px;
  /* Spans across the cards */
  height: auto;
  z-index: 1;
  pointer-events: none;
}

.prob-card {
  position: absolute;
  width: 300px;
  height: 180px;
  background: linear-gradient(135deg, #fcdada 0%, #fcaaaa 100%);
  /* Pink gradient */
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 10px 20px rgba(141, 27, 27, 0.08);
  overflow: hidden;
  z-index: 2;
  /* Sit on top of connector */
}

.prob-card--top {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.prob-card--left {
  bottom: 0px;
  left: 20px;
}

.prob-card--right {
  bottom: 0px;
  right: 20px;
}

.prob-card__inner {
  width: 100%;
  height: 100%;
  position: relative;
}

.prob-text {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 19px;
  font-weight: 800;
  color: #0d0505;
  line-height: 1.25;
  z-index: 2;
  text-align: left;
}

.prob-icon-x {
  position: absolute;
  top: 24px;
  right: -8px;
  width: 48px;
  height: 48px;
  background: #b91c1c;
  color: white;
  border-radius: 50%;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid rgba(255, 255, 255, 0.4);
  z-index: 4;
  box-shadow: 0 4px 12px rgba(185, 28, 28, 0.3);
}

.prob-img-wrap {
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 200px;
  height: 120px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  z-index: 1;
}

.prob-img-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Solutions Section */
.solutions-section {
  padding: 40px 0 100px;
  background: #fff;
}

.sol-header {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 50px;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* Top row: 3 */
  gap: 24px;
  justify-content: center;
}

/* Grid hack for 3 on top, 2 on bot centered.
   Flex wrap centered works.
*/
.solutions-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.sol-card {
  width: calc(33.333% - 16px);
  min-width: 320px;
  /* Slightly wider */
  background: #cbf9d3;
  /* Light green from image */
  background: linear-gradient(145deg, #cbf9d3 0%, #d8fce0 100%);
  border-radius: 20px;
  padding: 24px 12px 24px 24px;
  /* Less right padding for image overlap */
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 160px;
  transition: transform 0.2s;
  overflow: hidden;
  position: relative;
}

.sol-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(55, 175, 67, 0.12);
}

.sol-content {
  position: relative;
  z-index: 2;
  max-width: 55%;
}

.sol-title {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 800;
  color: #0d1b12;
  line-height: 1.2;
}

.sol-desc {
  margin: 0;
  font-size: 15px;
  color: #2f4035;
  line-height: 1.4;
}

.sol-img-wrapper {
  position: absolute;
  right: -10px;
  bottom: -10px;
  width: 140px;
  height: 140px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  z-index: 1;
}

.sol-img-wrapper img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(16, 48, 26, 0.1));
}

@media (max-width: 980px) {
  .problems-circle {
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }

  .prob-connector,
  .prob-connector-img {
    display: none;
  }

  .prob-card {
    position: relative;
    top: auto !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
    margin: 0 !important;
  }

  .bg-decoration-left,
  .bg-decoration-right {
    display: none;
  }

  .sol-card {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .problems-section {
    padding: 60px 0 70px;
  }

  .problems-header {
    margin-bottom: 32px;
  }

  .prob-title {
    font-size: 28px;
  }

  .prob-subtitle {
    font-size: 16px;
  }

  .prob-card {
    width: 100%;
    max-width: 420px;
    height: auto;
    min-height: 170px;
    padding: 20px;
  }

  .prob-text {
    position: relative;
    top: auto;
    left: auto;
    margin-bottom: 10px;
    font-size: 18px;
  }

  .prob-img-wrap {
    position: relative;
    bottom: auto;
    right: auto;
    width: 180px;
    height: 110px;
    margin-left: auto;
    margin-top: 8px;
  }

  .prob-icon-x {
    top: 12px;
    right: 10px;
    width: 42px;
    height: 42px;
    font-size: 22px;
  }

  .solutions-section {
    padding: 24px 0 70px;
  }

  .sol-header {
    font-size: 18px;
    margin-bottom: 28px;
  }

  .sol-title {
    font-size: 18px;
  }

  .sol-card {
    min-width: unset;
    padding: 20px 12px 20px 20px;
    border-radius: 18px;
  }

  .sol-img-wrapper {
    width: 120px;
    height: 120px;
  }
}

/* Products Section */
.products-section {
  padding: 80px 0 100px;
  background: #ffffff;
}

/* Export readiness section */
.export-ready {
  padding: 64px 0 76px;
  background: #ffffff;
}

.export-ready-title {
  font-size: 46px;
  font-weight: 900;
  color: #000;
  margin: 0 0 22px;
  letter-spacing: -0.03em;
  line-height: 1.05;
  max-width: 560px; /* rasmda sarlavha 2 qator */
  text-align: center;
  margin-inline: auto;
}

.export-ready-list {
  display: grid;
  gap: 16px;
  max-width: 1120px;
  margin-inline: auto;
}

.export-step {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-radius: 24px;
  padding: 24px 28px;
  padding-right: 260px; /* rasm uchun joy */
  overflow: visible; /* rasm chiqib turishi uchun */
  min-height: 170px;
}

.export-step::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background:
    radial-gradient(720px 260px at 18% 50%, rgba(255, 255, 255, .55) 0%, rgba(255, 255, 255, 0) 62%),
    linear-gradient(90deg, #dafbda 0%, #c9f7c9 45%, #dafbda 100%);
  border: 1px solid rgba(28, 123, 44, .12);
  box-shadow: 0 10px 26px rgba(14, 38, 20, .08);
  z-index: 0;
}

.export-step-body {
  flex: 1 1 auto;
  min-width: 0;
  position: relative;
  z-index: 1;
}

.export-step-title {
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 900;
  color: #0b1a10;
  letter-spacing: -0.02em;
}

.export-step-points {
  margin: 0;
  padding-left: 18px;
  color: #16311f;
  font-weight: 600;
  line-height: 1.65;
  font-size: 15px;
  list-style: disc;
}

.export-step-points li {
  margin: 6px 0;
}

.export-step-media {
  flex: 0 0 auto;
  width: 240px;
  position: absolute;
  right: -10px; /* rasm to‘rtburchakdan biroz chiqib turadi */
  bottom: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  z-index: 1;
  pointer-events: none;
}

.export-step-media img {
  width: 100%;
  max-width: 240px;
  height: auto;
  display: block;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.10));
  transform: translateY(8px);
}

/* 3-karta rasmda qiyshiq (gr3) */
.export-step:nth-child(3) .export-step-media {
  bottom: -10px;
  width: 220px;
}

.export-step:nth-child(3) .export-step-media img {
  max-width: 220px;
  transform: rotate(-10deg) translateY(14px);
  transform-origin: bottom right;
}

/* 1-2 kartalarda rasm biroz tashqariga chiqib turadi */
.export-step:nth-child(1) .export-step-media img,
.export-step:nth-child(2) .export-step-media img {
  transform: translateY(8px);
}

.export-ready-cta {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.export-ready-btn {
  padding: 16px 40px;
}

.products-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
}

.products-title {
  font-size: 36px;
  font-weight: 800;
  color: #000000;
  margin: 0;
  letter-spacing: -0.02em;
}

.btn-view-all {
  display: inline-flex;
  align-items: center;
  padding: 16px 34px;
  background: #37af43;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(55, 175, 67, 0.2);
}

.btn-view-all:hover {
  background: #2e9638;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(55, 175, 67, 0.3);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.product-card {
  background: #ffffff;
  border-radius: 26px;
  border: 1.5px solid #dff2e2;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 26px rgba(14, 38, 20, .08);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(14, 38, 20, .14);
  border-color: #37af43;
}

.product-img-wrap {
  width: 100%;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

.product-img-wrap {
  position: relative;
}

.product-img-wrap::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 22px;
  background: #eef9f0;
  border: 1px solid #d9f0dc;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .75);
  z-index: 0;
}

.product-img-wrap img {
  max-width: 100%;
  max-height: 170px;
  object-fit: contain;
  position: relative;
  z-index: 1;
}

.product-info {
  padding: 12px 22px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-meta-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 10px;
}

.product-name {
  font-size: 18px;
  font-weight: 800;
  color: #000000;
  margin: 0;
  line-height: 1.2;
}

.product-dose {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: #666666;
  margin: 0;
  white-space: nowrap;
}

.product-desc {
  font-size: 14px;
  font-weight: 500;
  color: #666666;
  line-height: 1.4;
  margin: 0 0 18px;
  flex: 1;
}

.btn-product-detail {
  display: inline-flex;
  align-items: center;
  padding: 14px 24px;
  background: #37af43;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  width: 100%;
  justify-content: center;
}

.btn-product-detail:hover {
  background: #2e9638;
  transform: translateX(2px);
}

/* Responsive for Products */
@media (max-width: 980px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .products-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .export-step {
    flex-direction: column;
    align-items: flex-start;
    padding: 22px 22px;
    padding-right: 22px;
  }

  .export-step-media {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    justify-content: center;
    margin-top: 10px;
  }

  .export-step-media img {
    max-width: 380px;
    transform: none;
  }
}

@media (max-width: 640px) {
  .products-grid {
    grid-template-columns: 1fr;
  }

  .products-title {
    font-size: 28px;
  }

  .export-ready {
    padding: 64px 0 72px;
  }

  .export-ready-title {
    font-size: 32px;
    max-width: none;
  }

  .export-step-title {
    font-size: 18px;
  }

  .export-step {
    border-radius: 22px;
  }
}

/* Products Page */
.products-page {
  padding: 140px 0 100px;
  background: #ffffff;
  min-height: 100vh;
}

.products-page-header {
  text-align: center;
  margin-bottom: 60px;
}

.products-page-title {
  font-size: 42px;
  font-weight: 800;
  color: #000000;
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

@media (max-width: 640px) {
  .products-page {
    padding: 120px 0 80px;
  }

  .products-page-title {
    font-size: 32px;
  }
}

/* Product Detail Page */
.product-detail-page {
  padding: 140px 0 100px;
  background: #ffffff;
  min-height: 100vh;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Left Column */
.product-detail-left {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.product-image-card {
  background: #ffffff;
  border-radius: 32px;
  border: 1px solid #e8e8e8;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 480px;
}

.product-main-image {
  max-width: 100%;
  max-height: 400px;
  object-fit: contain;
}

/* Tabs */
.product-tabs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.product-tab {
  padding: 12px 24px;
  border: 2px solid #37af43;
  background: #ffffff;
  color: #37af43;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.product-tab:hover {
  background: rgba(55, 175, 67, 0.05);
}

.product-tab.active {
  background: #37af43;
  color: #ffffff;
}

.product-tab svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* Tab Content */
.product-tab-content {
  margin-top: 8px;
}

.tab-panel {
  display: none;
  padding: 24px;
  background: #f9f9f9;
  border-radius: 20px;
}

.tab-panel.active {
  display: block;
}

.tab-panel-title {
  font-size: 20px;
  font-weight: 700;
  color: #0d1b12;
  margin: 0 0 16px;
}

.tab-panel-text {
  font-size: 16px;
  line-height: 1.6;
  color: #55605a;
  margin: 0;
}

/* Components Section */
.components-section {
  border-top: 2px solid #e8e8e8;
  padding-top: 32px;
}

.components-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  color: #0d1b12;
}

.components-chevron {
  width: 20px;
  height: 20px;
  color: #37af43;
  transition: transform 0.3s ease;
}

.components-content {
  display: none;
  margin-top: 16px;
}

.components-content.active {
  display: block;
}

.component-item {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid #e8e8e8;
}

.component-item:last-child {
  border-bottom: none;
}

.component-number {
  font-size: 20px;
  font-weight: 800;
  color: #37af43;
  flex-shrink: 0;
}

.component-info {
  flex: 1;
}

.component-name {
  font-size: 16px;
  font-weight: 700;
  color: #0d1b12;
  margin: 0 0 8px;
  line-height: 1.4;
}

.component-desc {
  font-size: 14px;
  line-height: 1.6;
  color: #55605a;
  margin: 0;
}

/* Right Column */
.product-detail-right {
  position: sticky;
  top: 120px;
}

.product-detail-title {
  font-size: 48px;
  font-weight: 800;
  color: #000000;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.product-detail-subtitle {
  font-size: 20px;
  font-weight: 600;
  color: #666666;
  margin: 0 0 32px;
}

.product-detail-description {
  margin-bottom: 40px;
}

.product-detail-description p {
  font-size: 16px;
  line-height: 1.7;
  color: #4a5c52;
  margin: 0 0 20px;
}

.product-detail-description p:last-child {
  margin-bottom: 0;
}

/* CTA Section */
.product-cta-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.btn-uzum-buy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 32px;
  background: #7e3af2;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(126, 58, 242, 0.25);
}

.btn-uzum-buy:hover {
  background: #6d28d9;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(126, 58, 242, 0.35);
}

.uzum-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
  display: block;
}

.promo-code-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.promo-code-label {
  font-size: 16px;
  font-weight: 600;
  color: #4a5c52;
}

.promo-code-value {
  font-size: 20px;
  font-weight: 800;
  color: #7e3af2;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Responsive */
@media (max-width: 980px) {
  .product-detail-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .product-detail-right {
    position: static;
  }

  .product-image-card {
    min-height: 360px;
    padding: 30px;
  }

  .product-detail-title {
    font-size: 36px;
  }
}

@media (max-width: 640px) {
  .product-detail-page {
    padding: 120px 0 80px;
  }

  .product-tabs {
    gap: 8px;
  }

  .product-tab {
    padding: 10px 18px;
    font-size: 13px;
  }

  .product-image-card {
    min-height: 300px;
    padding: 20px;
  }

  .product-detail-title {
    font-size: 32px;
  }

  .product-detail-subtitle {
    font-size: 18px;
  }

  .product-cta-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .btn-uzum-buy {
    padding: 16px 28px;
    font-size: 16px;
  }

  .promo-code-value {
    font-size: 18px;
  }
}

/* Admin Panel Styles */
.admin-dashboard {
  min-height: 100vh;
  background: #f5f5f5;
  padding: 40px 0;
}

.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 16px;
}

.admin-header-actions {
  display: flex;
  gap: 12px;
}

.admin-page-title {
  font-size: 36px;
  font-weight: 800;
  color: #0d1b12;
  margin: 0;
}

.admin-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.admin-btn-primary,
.admin-btn-secondary,
.admin-btn-logout,
.admin-btn-edit,
.admin-btn-delete,
.admin-btn-view,
.admin-btn-add-component,
.admin-btn-remove {
  padding: 12px 24px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-block;
}

.admin-btn-primary {
  background: #37af43;
  color: #ffffff;
}

.admin-btn-primary:hover {
  background: #2e9638;
}

.admin-btn-secondary {
  background: #e8e8e8;
  color: #0d1b12;
}

.admin-btn-secondary:hover {
  background: #d4d4d4;
}

.admin-btn-logout {
  background: #dc3545;
  color: #ffffff;
}

.admin-btn-logout:hover {
  background: #c82333;
}

.admin-btn-edit {
  background: #007bff;
  color: #ffffff;
  padding: 8px 16px;
  font-size: 14px;
}

.admin-btn-edit:hover {
  background: #0056b3;
}

.admin-btn-delete {
  background: #dc3545;
  color: #ffffff;
  padding: 8px 16px;
  font-size: 14px;
}

.admin-btn-delete:hover {
  background: #c82333;
}

.admin-btn-view {
  background: #6c757d;
  color: #ffffff;
  padding: 8px 16px;
  font-size: 14px;
}

.admin-btn-view:hover {
  background: #5a6268;
}

.admin-btn-add-component {
  background: #37af43;
  color: #ffffff;
  margin-top: 12px;
}

.admin-btn-add-component:hover {
  background: #2e9638;
}

.admin-btn-remove {
  background: #dc3545;
  color: #ffffff;
  padding: 6px 12px;
  font-size: 12px;
}

.admin-btn-remove:hover {
  background: #c82333;
}

.admin-alert {
  padding: 16px 20px;
  border-radius: 12px;
  margin-bottom: 24px;
  font-size: 16px;
}

.admin-alert-success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.admin-alert-error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.admin-stat-card {
  background: #ffffff;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.admin-stat-value {
  font-size: 48px;
  font-weight: 800;
  color: #37af43;
  margin-bottom: 8px;
}

.admin-stat-label {
  font-size: 16px;
  color: #666;
}

.admin-section-title {
  font-size: 28px;
  font-weight: 700;
  color: #0d1b12;
  margin-bottom: 24px;
}

.admin-table-wrapper {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
}

.admin-table thead {
  background: #f8f9fa;
}

.admin-table th {
  padding: 16px;
  text-align: left;
  font-weight: 700;
  color: #0d1b12;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.admin-table td {
  padding: 16px;
  border-top: 1px solid #e8e8e8;
  color: #333;
}

.admin-table tbody tr:hover {
  background: #f8f9fa;
}

.admin-product-form {
  background: #ffffff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.admin-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .admin-form-row {
    grid-template-columns: 1fr;
  }
}

.admin-form-group {
  margin-bottom: 24px;
}

.admin-form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #0d1b12;
  margin-bottom: 8px;
}

.admin-form-input,
.admin-form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e8e8e8;
  border-radius: 12px;
  font-size: 16px;
  font-family: inherit;
  transition: all 0.2s ease;
}

.admin-form-input:focus,
.admin-form-textarea:focus {
  outline: none;
  border-color: #37af43;
}

.admin-form-textarea {
  resize: vertical;
  min-height: 100px;
}

.component-input-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
  padding: 16px;
  background: #f8f9fa;
  border-radius: 12px;
  position: relative;
}

.component-input-group .admin-form-input,
.component-input-group .admin-form-textarea {
  margin-bottom: 0;
}

.component-input-group .admin-btn-remove {
  position: absolute;
  top: 16px;
  right: 16px;
}

.admin-form-actions {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 2px solid #e8e8e8;
}

@media (max-width: 768px) {
  .admin-dashboard {
    padding: 20px 0;
  }

  .admin-page-title {
    font-size: 28px;
  }

  .admin-product-form {
    padding: 24px;
  }

  .admin-form-actions {
    flex-direction: column;
  }

  .admin-form-actions .admin-btn-primary,
  .admin-form-actions .admin-btn-secondary {
    width: 100%;
    text-align: center;
  }
}

/* Vacancy Section Styles */
.vacancy-hero {
  padding: 180px 0 100px;
  background: var(--bg);
}

.vacancy-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.vacancy-hero-content {
  display: flex;
  flex-direction: column;
}

.vacancy-hero-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
  margin: 0 0 24px;
  letter-spacing: -0.02em;
}

.vacancy-hero-desc {
  font-size: 18px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0 0 36px;
  max-width: 540px;
}

.vacancy-hero-image {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: #f0f0f0;
}

.vacancy-hero-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  min-height: 400px;
}

/* Vacancy Form Section */
.vacancy-form-section {
  padding: 80px 0 100px;
  background: #ffffff;
}

.vacancy-form-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--text);
  text-align: center;
  margin: 0 0 48px;
}

.vacancy-form {
  max-width: 1000px;
  margin: 0 auto;
}

.vacancy-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 32px;
}

.vacancy-form-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 18px;
  border: none;
  border-radius: 12px;
  background: #f5f5f5;
  font-size: 16px;
  font-family: inherit;
  color: var(--text);
  transition: all 0.2s;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #666;
  opacity: 1;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  background: #ffffff;
  box-shadow: 0 0 0 2px rgba(47, 154, 58, 0.2);
}

.form-select {
  color: var(--text);
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 45px;
}

.form-select option {
  color: var(--text);
  background: #ffffff;
}

.form-select option:first-child {
  color: #666;
}

input[type="date"] {
  color: var(--text);
}

input[type="date"]:invalid::-webkit-datetime-edit {
  color: #666;
}

input[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: 0.6;
}

input[type="date"]::-webkit-calendar-picker-indicator:hover {
  opacity: 1;
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

.form-textarea::placeholder {
  color: #666;
  opacity: 1;
}

.resume-upload-group {
  margin-top: 0;
  text-align: left;
}

.btn-resume-upload {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  background: var(--green);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
  width: 100%;
  justify-content: center;
}

.btn-resume-upload:hover {
  background: var(--green2);
  transform: translateY(-1px);
}

.btn-resume-upload:active {
  transform: translateY(0);
}

.resume-hint {
  display: block;
  font-size: 12px;
  color: #999;
  margin-top: 8px;
  text-align: left;
}

.resume-file-name {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  color: var(--green);
  font-weight: 500;
}

.form-expandable {
  margin-bottom: 40px;
  border: none;
  border-radius: 0;
  overflow: visible;
  background: transparent;
}

.form-expandable-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  background: transparent;
  border: none;
  font-size: 16px;
  font-weight: 400;
  color: var(--text);
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
  text-align: left;
  margin-bottom: 24px;
}

.form-expandable-trigger:hover {
  color: var(--green);
}

.expandable-icon {
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.form-expandable-trigger.is-expanded .expandable-icon {
  transform: rotate(180deg);
}

.form-expandable-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.form-expandable-content.is-expanded {
  max-height: 2000px;
  padding: 0;
  border: none;
}

.form-submit-group {
  text-align: center;
  margin-top: 40px;
}

.btn-submit {
  min-width: 280px;
  font-size: 18px;
  padding: 18px 48px;
  width: auto;
}

/* Responsive */
@media (max-width: 1024px) {
  .vacancy-hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .vacancy-hero-image {
    order: -1;
  }

  .vacancy-hero-title {
    font-size: 40px;
  }

  .vacancy-form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .vacancy-hero {
    padding: 140px 0 60px;
  }

  .vacancy-hero-title {
    font-size: 32px;
  }

  .vacancy-hero-desc {
    font-size: 16px;
  }

  .vacancy-form-section {
    padding: 60px 0 80px;
  }

  .vacancy-form-title {
    font-size: 28px;
    margin-bottom: 32px;
  }

  .vacancy-form-grid {
    gap: 20px;
  }

  .vacancy-form-col {
    gap: 20px;
  }

  .btn-submit {
    width: 100%;
    min-width: auto;
  }
}

/* Contact Page Styles */
.contact-section {
  padding: 180px 0 80px;
  background: var(--bg);
}

.contact-page-title {
  font-size: 48px;
  font-weight: 700;
  color: var(--text);
  text-align: center;
  margin: 0 0 60px;
  letter-spacing: -0.02em;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

/* Contact Info Card (Left - Green Background) */
.contact-info-card {
  background: #e8f5e9;
  border-radius: 24px;
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contact-info-card-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--text);
  margin: 0;
  letter-spacing: -0.01em;
}

.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-info-block-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  margin: 0;
}

.contact-info-block-desc {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

.contact-info-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-info-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
  padding: 8px 0;
}

.contact-info-link:hover {
  color: var(--green);
}

.contact-info-link svg {
  flex-shrink: 0;
  color: var(--green);
  width: 20px;
  height: 20px;
}

/* Contact Form Card (Right - White Background) */
.contact-form-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 48px 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-form-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}

.contact-form-desc {
  font-size: 14px;
  color: var(--muted);
  margin: 0 0 32px;
  line-height: 1.6;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.btn-contact-submit {
  width: 100%;
  margin-top: 8px;
  font-size: 16px;
  padding: 16px 32px;
}

/* Map Section */
.contact-map-section {
  margin-top: 60px;
}

.contact-map {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-map iframe {
  width: 100%;
  height: 450px;
  border: none;
  display: block;
}

/* Responsive */
@media (max-width: 1024px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact-info-card,
  .contact-form-card {
    padding: 40px 32px;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 140px 0 60px;
  }

  .contact-page-title {
    font-size: 36px;
    margin-bottom: 40px;
  }

  .contact-info-card,
  .contact-form-card {
    padding: 32px 24px;
    border-radius: 20px;
  }

  .contact-info-card-title,
  .contact-form-title {
    font-size: 28px;
  }

  .contact-layout {
    gap: 24px;
    margin-bottom: 40px;
  }

  .contact-info-block {
    gap: 10px;
  }

  .contact-map iframe {
    height: 350px;
  }
}