.noise::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.035;
  background-image:
    radial-gradient(circle at 25% 25%, #000 0.6px, transparent 0.7px),
    radial-gradient(circle at 75% 75%, #000 0.6px, transparent 0.7px);
  background-size: 22px 22px;
  z-index: 1;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  padding-top: 12px;
}

.topbar-shell {
  width: min(var(--container), calc(100% - 24px));
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(18, 21, 26, 0.58);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.16);
  border-radius: 22px;
}

.topbar-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 22px;
  color: white;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  height: 64px;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.25));
  transition: 0.3s;
}

.logo:hover {
  transform: scale(1.05);
}

.nav {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.05);
  padding: 7px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.nav a {
  padding: 9px 14px;
  border-radius: 999px;
  transition: 0.2s ease;
}

.nav a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.hero {
  position: relative;
  margin-top: -94px;
  padding-top: 94px;
  overflow: hidden;
  color: white;

  background:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.6),
      rgba(0, 0, 0, 0.2) 60%,
      transparent
    ),
    url("../images/nisip-texture.jpg") center/cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 22% 25%,
      rgba(199, 144, 63, 0.17),
      transparent 26%
    ),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.26));
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 200px;

  background: linear-gradient(to bottom, rgba(245, 242, 236, 0), #f5f2ec);
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 38px;
  align-items: end;
  min-height: 860px;
  padding: 84px 0 128px;
}

.hero p {
  max-width: 670px;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.86);
  margin: 22px 0 0;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.18);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 34px;
  max-width: 760px;
}

.mini-stat {
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.mini-stat strong {
  display: block;
  font-size: 22px;
  margin-bottom: 4px;
}

.hero-panel {
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 32px;
  padding: 28px;
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
  align-self: center;
}

.hero-panel h3 {
  margin: 0 0 10px;
  font-size: 30px;
  letter-spacing: -0.03em;
}

.hero-panel p {
  margin: 0;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 22px;
}

.stat {
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  padding: 20px;
  min-height: 118px;
}

.stat strong {
  display: block;
  font-size: 28px;
  margin-bottom: 6px;
  letter-spacing: -0.04em;
}

.about-grid,
.contact-grid,
.cta-grid,
.advantages-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.about-feature {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 22px;
}

.chip {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(35, 41, 51, 0.08);
  border-radius: 18px;
  padding: 14px 16px;
  font-weight: 700;
  color: var(--text);
}

.products {
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.45),
      rgba(255, 255, 255, 0.15)
    ),
    #efe9df;
}

.product-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 26px 24px 12px;
  color: #fff;
}

.product-content h3 {
  margin: 0 0 8px;
  font-size: 28px;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #fff;
}

.product-content p {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.86);
  max-width: 320px;
}
.advantages-wrap .card {
  min-height: 100%;
}

.adv-list {
  display: grid;
  gap: 14px;
}

.adv-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--surface-strong);
  border: 1px solid rgba(255, 255, 255, 0.55);
  backdrop-filter: var(--blur);
  border-radius: 20px;
  padding: 18px 20px;
  font-weight: 700;
  box-shadow: var(--shadow-soft);
}

.adv-item::before {
  content: "";
  flex: 0 0 12px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  box-shadow: 0 0 0 7px rgba(199, 144, 63, 0.12);
}

.cta {
  background:
    radial-gradient(
      circle at left top,
      rgba(199, 144, 63, 0.18),
      transparent 24%
    ),
    linear-gradient(135deg, #13161a, #21262d 55%, #1a1d23);
  color: white;
}

.cta-shell {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 34px;
  padding: 34px;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
}

.form-box {
  background: rgba(255, 255, 255, 0.98);
  color: var(--text);
  border-radius: 28px;
  padding: 30px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
}

.form-grid {
  display: grid;
  gap: 14px;
}

.form-label {
  font-size: 13px;
  font-weight: 700;
  color: #4b5563;
  margin-bottom: 6px;
  display: block;
}

.contact-grid .card {
  min-height: 100%;
}

.contact-note {
  margin-top: 18px;
  padding: 14px 16px;
  background: rgba(199, 144, 63, 0.08);
  border: 1px solid rgba(199, 144, 63, 0.12);
  border-radius: 18px;
  color: #6a4b22;
  font-weight: 600;
}

.footer {
  padding: 18px 0 42px;
  color: var(--muted);
  font-size: 14px;
  position: relative;
  z-index: 2;
}

.footer-top {
  border-top: 1px solid rgba(35, 41, 51, 0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.map-btn {
  margin-top: 12px;
  padding: 12px 18px;
  border-radius: 14px;

  background: rgba(0, 0, 0, 0.85);
  color: #fff;

  border: 1px solid rgba(255, 255, 255, 0.08);

  font-weight: 600;
  font-size: 14px;

  cursor: pointer;

  display: inline-flex;
  align-items: center;
  gap: 8px;

  transition: all 0.25s ease;
}

.map-btn:hover {
  background: #000;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.map-btn::before {
  content: "📍";
  font-size: 14px;
}
