* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #080808;
  --surface: #111111;
  --surface-strong: #171717;
  --card: rgba(20, 20, 20, 0.88);
  --gold: #d4af37;
  --gold-light: #f1d476;
  --gold-soft: rgba(212, 175, 55, 0.14);
  --green: #25d366;
  --green-light: #39e37b;
  --text: #f7f1e7;
  --text-muted: #b9b0a0;
  --border: rgba(255, 255, 255, 0.08);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
  --radius-xl: 32px;
  --radius-lg: 24px;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  min-width: 320px;
  font-family: 'Cairo', sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(212, 175, 55, 0.11), transparent 30%),
    radial-gradient(circle at bottom left, rgba(212, 175, 55, 0.08), transparent 28%),
    linear-gradient(180deg, #090909 0%, #0d0d0d 100%);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.page {
  position: relative;
  isolation: isolate;
}

.section-wrap {
  width: min(100%, 1080px);
  margin: 0 auto;
  padding: 0 1rem;
}

.hero {
  position: relative;
  padding: clamp(3.5rem, 9vw, 7rem) 0 clamp(2.5rem, 7vw, 5rem);
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: auto;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(70px);
  opacity: 0.55;
}

.hero::before {
  width: min(42vw, 320px);
  height: min(42vw, 320px);
  top: 0;
  right: -5%;
  background: rgba(212, 175, 55, 0.16);
}

.hero::after {
  width: min(32vw, 220px);
  height: min(32vw, 220px);
  bottom: 5%;
  left: -3%;
  background: rgba(212, 175, 55, 0.08);
}

.hero-panel {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  padding: clamp(1.5rem, 4vw, 3rem);
  text-align: center;
  border: 1px solid rgba(212, 175, 55, 0.16);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(24, 24, 24, 0.9) 0%, rgba(12, 12, 12, 0.96) 100%);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), transparent 32%);
  pointer-events: none;
}

.hero-pill,
.section-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.24);
  background: var(--gold-soft);
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 800;
}

.hero-mark {
  width: clamp(72px, 16vw, 104px);
  height: clamp(72px, 16vw, 104px);
  margin: 1.3rem auto 1rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.3);
  background: radial-gradient(circle at 30% 30%, rgba(212, 175, 55, 0.22), rgba(212, 175, 55, 0.05));
  color: var(--gold-light);
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 900;
  line-height: 1;
}

.hero-title {
  font-size: clamp(3.2rem, 13vw, 5.8rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--text);
}

.hero-subtitle {
  margin-top: 0.8rem;
  font-size: clamp(1.15rem, 3.8vw, 1.7rem);
  font-weight: 700;
  color: var(--gold);
}

.hero-tagline {
  margin-top: 1rem;
  font-size: clamp(1.15rem, 4vw, 1.8rem);
  font-weight: 800;
  color: rgba(247, 241, 231, 0.84);
}

.hero-desc {
  max-width: 38rem;
  margin: 1rem auto 0;
  font-size: 1rem;
  color: var(--text-muted);
  text-wrap: balance;
}

.hero-points {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 1.6rem auto 0;
  max-width: 38rem;
}

.hero-points li {
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-width: 230px;
  padding: 1rem 1.5rem;
  border-radius: 999px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 800;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(37, 211, 102, 0.22);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.02);
  color: var(--gold-light);
  border: 1px solid rgba(212, 175, 55, 0.28);
}

.contact-section {
  padding: clamp(3rem, 8vw, 5rem) 0 5rem;
}

.section-heading {
  max-width: 42rem;
  margin: 0 auto 2rem;
  text-align: center;
}

.section-heading h2 {
  margin-top: 1rem;
  font-size: clamp(2.1rem, 7vw, 3.25rem);
  line-height: 1;
  font-weight: 900;
  color: var(--gold-light);
}

.section-heading p {
  margin-top: 0.85rem;
  font-size: 1rem;
  color: var(--text-muted);
}

.contact-grid {
  display: grid;
  gap: 1rem;
  max-width: 760px;
  margin: 0 auto;
}

.contact-card {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.25rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(23, 23, 23, 0.95) 0%, rgba(14, 14, 14, 0.98) 100%);
  text-decoration: none;
  box-shadow: var(--shadow);
  transition: transform 0.18s ease, border-color 0.18s ease;
}

.contact-card:hover {
  transform: translateY(-2px);
}

.contact-card-catalog {
  border-color: rgba(37, 211, 102, 0.34);
}

.contact-card-direct {
  border-color: rgba(212, 175, 55, 0.24);
}

.contact-card-phone {
  border-color: rgba(255, 255, 255, 0.12);
}

.contact-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 1.45rem;
  flex-shrink: 0;
}

.contact-copy {
  min-width: 0;
}

.contact-copy strong {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
}

.contact-copy small {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.92rem;
  color: var(--text-muted);
  overflow-wrap: anywhere;
}

@media (max-width: 640px) {
  .section-wrap {
    padding: 0 0.9rem;
  }

  .hero {
    padding: 2.5rem 0 2rem;
  }

  .hero-panel {
    padding: 1.4rem 1rem 1.3rem;
    border-radius: 24px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
    min-width: 0;
  }

  .hero-points {
    gap: 0.6rem;
  }

  .hero-points li {
    width: 100%;
  }

  .contact-card {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .contact-copy {
    text-align: center;
  }
}

@media (max-width: 380px) {
  .hero-title {
    font-size: clamp(2.6rem, 18vw, 3.6rem);
  }

  .hero-subtitle {
    font-size: 1.02rem;
  }

  .hero-tagline {
    font-size: 1.02rem;
  }
}
