* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --orange: #f5821f;
  --purple: #9f279b;
  --green: #8cc63f;
  --black: #080808;
  --dark: #151015;
  --text: #2b202a;
  --muted: #7a6c79;
  --cream: #fbf7f1;
  --white: #ffffff;
  --border: rgba(21, 16, 21, 0.1);
  --shadow: 0 24px 80px rgba(21, 16, 21, 0.1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at 10% 8%, rgba(245, 130, 31, 0.14), transparent 30%),
    radial-gradient(circle at 90% 12%, rgba(159, 39, 155, 0.12), transparent 32%),
    radial-gradient(circle at 50% 55%, rgba(140, 198, 63, 0.08), transparent 34%),
    linear-gradient(135deg, #fff7ef 0%, #fff9fb 42%, #f8fff1 100%);
  background-attachment: fixed;
  color: var(--text);
  overflow-x: hidden;
}

body.intro-active {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
}

/* INTRO */

.intro {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 16% 18%, rgba(245, 130, 31, 0.34), transparent 34%),
    radial-gradient(circle at 84% 22%, rgba(159, 39, 155, 0.30), transparent 36%),
    radial-gradient(circle at 50% 92%, rgba(140, 198, 63, 0.24), transparent 36%),
    linear-gradient(135deg, #fff7ef 0%, #fff9fb 38%, #f7fff0 100%);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 1s ease, background 1s ease;
  overflow: hidden;
}

.intro::before {
  content: "";
  position: absolute;
  width: 760px;
  height: 760px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.42), transparent 62%);
  top: -280px;
  left: -220px;
  opacity: 0.9;
}

.intro::after {
  content: "";
  position: absolute;
  width: 680px;
  height: 680px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.34), transparent 62%);
  bottom: -260px;
  right: -220px;
  opacity: 0.85;
}

.intro-content {
  position: relative;
  z-index: 2;
  text-align: center;
  transform: translateY(0) scale(1);
  transition: transform 1.25s cubic-bezier(.16, 1, .3, 1);
  will-change: transform;
  padding: 56px 64px;
  border-radius: 44px;
  background: rgba(255, 255, 255, 0.36);
  border: 1px solid rgba(255, 255, 255, 0.52);
  backdrop-filter: blur(18px);
  box-shadow: 0 28px 90px rgba(21, 16, 21, 0.08);
}

.intro-logo {
  width: min(560px, 78vw);
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 18px 34px rgba(21, 16, 21, 0.10));
  transition: width 1.25s cubic-bezier(.16, 1, .3, 1), filter 1s ease;
}

.intro-phrase {
  margin-top: 42px;
  color: var(--dark);
  font-size: clamp(24px, 4.2vw, 56px);
  line-height: 1.22;
  letter-spacing: 0.06em;
  font-weight: 400;
  text-transform: uppercase;
  transition: opacity 0.7s ease, transform 0.7s ease;
  text-shadow: 0 10px 34px rgba(255, 255, 255, 0.6);
}

.intro-hint {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(43, 32, 42, 0.46);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: pulse 1.8s infinite;
  z-index: 2;
  white-space: nowrap;
}

@keyframes pulse {
  0%, 100% {
    opacity: 0.35;
    transform: translateX(-50%) translateY(0);
  }

  50% {
    opacity: 1;
    transform: translateX(-50%) translateY(-4px);
  }
}

body.entered .intro {
  pointer-events: none;
  background: rgba(255, 255, 255, 0);
  opacity: 0;
  transition-delay: 0.78s;
}

body.entered .intro-content {
  transform: translateY(-42vh) scale(0.28);
  background: rgba(255, 255, 255, 0);
  border-color: transparent;
  box-shadow: none;
  backdrop-filter: blur(0);
}

body.entered .intro-logo {
  filter: drop-shadow(0 8px 20px rgba(21, 16, 21, 0));
}

body.entered .intro-phrase,
body.entered .intro-hint {
  opacity: 0;
}

body.entered .intro-phrase {
  transform: translateY(18px);
}

/* HEADER */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 92px;
  padding: 18px 6%;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  opacity: 0;
  transform: translateY(-20px);
  pointer-events: none;
  transition: 0.8s ease;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(21, 16, 21, 0.055);
  box-shadow: 0 12px 38px rgba(21, 16, 21, 0.035);
}

body.entered .header {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  transition-delay: 0.45s;
}

.header-logo-area {
  grid-column: 2;
  display: flex;
  justify-content: center;
}

.header-logo {
  width: 154px;
  display: block;
  filter: drop-shadow(0 8px 18px rgba(21, 16, 21, 0.06));
}

.nav {
  grid-column: 1;
  display: flex;
  gap: 28px;
  align-items: center;
  font-size: 14px;
  font-weight: 800;
  color: rgba(43, 32, 42, 0.74);
}

.nav a {
  transition: 0.25s ease;
}

.nav a:hover {
  color: var(--purple);
}

.header-button {
  justify-self: end;
  grid-column: 3;
  padding: 13px 22px;
  border-radius: 999px;
  background: var(--dark);
  color: var(--white);
  font-size: 14px;
  font-weight: 900;
  transition: 0.25s ease;
}

.header-button:hover {
  transform: translateY(-2px);
  background: var(--purple);
}

/* MOBILE MENU */

.mobile-menu-button {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(21, 16, 21, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(21, 16, 21, 0.05);
}

.mobile-menu-button span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--dark);
  display: block;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: min(86vw, 390px);
  height: 100vh;
  background:
    radial-gradient(circle at top right, rgba(245, 130, 31, 0.08), transparent 38%),
    radial-gradient(circle at bottom left, rgba(159, 39, 155, 0.08), transparent 38%),
    #ffffff;
  z-index: 1001;
  padding: 26px;
  transform: translateX(110%);
  transition: 0.42s cubic-bezier(.16, 1, .3, 1);
  box-shadow: -24px 0 80px rgba(21, 16, 21, 0.14);
  display: flex;
  flex-direction: column;
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-menu-top img {
  width: 138px;
}

.mobile-menu-top button {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(21, 16, 21, 0.08);
  background: #ffffff;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  color: var(--dark);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 54px;
}

.mobile-nav a {
  padding: 18px 0;
  border-bottom: 1px solid rgba(21, 16, 21, 0.08);
  font-size: 30px;
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 900;
  color: var(--dark);
}

.mobile-menu-cta {
  margin-top: auto;
  min-height: 56px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange), var(--purple));
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 22px;
  font-weight: 900;
  box-shadow: 0 18px 45px rgba(159, 39, 155, 0.18);
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(21, 16, 21, 0.22);
  backdrop-filter: blur(4px);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease;
}

.mobile-menu-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

/* CONTENT */

.site-content {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.9s ease;
}

body.entered .site-content {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.7s;
}

.eyebrow {
  display: inline-flex;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(159, 39, 155, 0.08);
  color: var(--purple);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

/* BUTTONS */

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  border-radius: 999px;
  font-weight: 900;
  transition: 0.25s ease;
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--purple));
  box-shadow: 0 18px 45px rgba(159, 39, 155, 0.22);
}

.btn-secondary {
  color: var(--dark);
  border: 1px solid rgba(21, 16, 21, 0.16);
  background: rgba(255, 255, 255, 0.48);
}

.btn-primary:hover,
.btn-secondary:hover {
  transform: translateY(-3px);
}

/* HERO */

.hero {
  min-height: 100vh;
  padding: 180px 6% 90px;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 70px;
  align-items: center;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(245, 130, 31, 0.055);
  left: -180px;
  bottom: 40px;
  z-index: -1;
}

.hero h1,
.section-heading h2,
.catalog-panel h2,
.about h2,
.contact h2 {
  font-size: clamp(38px, 6vw, 78px);
  line-height: 0.94;
  letter-spacing: -0.055em;
  color: var(--dark);
}

.hero p,
.section-heading p,
.catalog-panel p,
.about p,
.contact > p {
  margin-top: 26px;
  font-size: 19px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 720px;
}

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

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

.hero-stats div {
  padding: 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(21, 16, 21, 0.07);
  box-shadow: 0 12px 34px rgba(21, 16, 21, 0.035);
}

.hero-stats strong {
  display: block;
  color: var(--dark);
  font-size: 18px;
  margin-bottom: 6px;
}

.hero-stats span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

.hero-visual-premium {
  min-height: 560px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orbit {
  position: absolute;
  border-radius: 999px;
  filter: blur(0.2px);
  animation: floatSoft 7s ease-in-out infinite;
}

.orbit-orange {
  width: 280px;
  height: 280px;
  background: rgba(245, 130, 31, 0.18);
  top: 40px;
  right: 40px;
}

.orbit-purple {
  width: 240px;
  height: 240px;
  background: rgba(159, 39, 155, 0.14);
  bottom: 64px;
  left: 26px;
  animation-delay: 0.8s;
}

.orbit-green {
  width: 160px;
  height: 160px;
  background: rgba(140, 198, 63, 0.16);
  top: 90px;
  left: 90px;
  animation-delay: 1.2s;
}

@keyframes floatSoft {
  0%, 100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-18px) scale(1.03);
  }
}

.connection-card {
  position: relative;
  z-index: 3;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(22px);
  box-shadow: 0 26px 70px rgba(21, 16, 21, 0.1);
}

.main-connection-card {
  width: min(100%, 430px);
  min-height: 440px;
  border-radius: 46px;
  padding: 44px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.main-connection-card span {
  color: var(--orange);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  margin-bottom: 18px;
}

.main-connection-card h2 {
  font-size: 46px;
  line-height: 0.94;
  letter-spacing: -0.05em;
  color: var(--dark);
}

.main-connection-card p {
  margin-top: 18px;
  font-size: 17px;
  line-height: 1.55;
  color: var(--muted);
}

.mini-card {
  position: absolute;
  z-index: 4;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(21, 16, 21, 0.06);
  box-shadow: 0 18px 40px rgba(21, 16, 21, 0.08);
  backdrop-filter: blur(18px);
  min-width: 150px;
  animation: floatSoft 6s ease-in-out infinite;
}

.mini-card strong {
  display: block;
  color: var(--dark);
  font-size: 17px;
  margin-bottom: 4px;
}

.mini-card span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.mini-card-one {
  top: 80px;
  left: 20px;
}

.mini-card-two {
  right: 0;
  top: 210px;
  animation-delay: 0.5s;
}

.mini-card-three {
  left: 46px;
  bottom: 78px;
  animation-delay: 1s;
}

/* INDUSTRIES */

.industries {
  padding: 120px 6%;
}

.section-heading {
  max-width: 920px;
  margin-bottom: 54px;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.industry-card {
  min-height: 220px;
  border: 1px solid rgba(21, 16, 21, 0.08);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px);
  border-radius: 30px;
  padding: 22px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 12px 34px rgba(21, 16, 21, 0.04);
  transition: 0.3s ease;
  text-align: left;
}

.industry-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 55px rgba(21, 16, 21, 0.1);
  border-color: rgba(159, 39, 155, 0.18);
}

.industry-card.active {
  border-color: rgba(159, 39, 155, 0.35);
  box-shadow: 0 22px 52px rgba(159, 39, 155, 0.12);
  background: linear-gradient(180deg, #ffffff, #fcf8fc);
}

.industry-card-media {
  min-height: 118px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.industry-card img {
  max-width: 100%;
  max-height: 76px;
  object-fit: contain;
  transition: 0.25s ease;
}

.industry-card:hover img {
  transform: scale(1.04);
}

.industry-card-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.industry-card-info strong {
  font-size: 18px;
  color: var(--dark);
  line-height: 1.2;
}

.industry-card-info span {
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--purple);
  opacity: 0.8;
}

/* CATALOG */

.catalog-preview {
  padding: 30px 6% 120px;
}

.catalog-preview.is-hidden {
  display: none;
}

.catalog-panel {
  border-radius: 42px;
  padding: 48px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.54)),
    radial-gradient(circle at top right, rgba(245, 130, 31, 0.12), transparent 35%),
    radial-gradient(circle at bottom left, rgba(159, 39, 155, 0.10), transparent 35%);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(21, 16, 21, 0.06);
  box-shadow: 0 22px 60px rgba(21, 16, 21, 0.07);
}

.catalog-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 26px;
}

.catalog-side {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}

.catalog-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(159, 39, 155, 0.08);
  color: var(--purple);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-grid {
  margin-top: 38px;
  display: block;
}

/* CARROSSEL DO CATÁLOGO */

.catalog-carousel {
  position: relative;
  overflow: hidden;
  border-radius: 36px;
  padding: 28px 78px 72px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(21, 16, 21, 0.07);
  box-shadow: 0 18px 54px rgba(21, 16, 21, 0.08);
  backdrop-filter: blur(18px);
}

.catalog-viewport {
  overflow: hidden;
  border-radius: 28px;
}

.catalog-track {
  display: flex;
  transition: transform 0.48s cubic-bezier(.16, 1, .3, 1);
  will-change: transform;
}

.catalog-slide {
  min-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.catalog-page-card {
  width: min(100%, 820px);
  border-radius: 30px;
  background: #ffffff;
  border: 1px solid rgba(21, 16, 21, 0.07);
  box-shadow: 0 12px 30px rgba(21, 16, 21, 0.045);
  overflow: hidden;
}

.catalog-page-button {
  width: 100%;
  border: 0;
  background: #f8f5f8;
  padding: 20px;
  cursor: pointer;
  display: block;
}

.catalog-page-button img {
  width: 100%;
  height: min(70vh, 620px);
  object-fit: contain;
  display: block;
  border-radius: 20px;
  background: #ffffff;
  user-select: none;
  -webkit-user-drag: none;
}

.catalog-page-info {
  padding: 18px 20px 22px;
}

.catalog-page-info span {
  display: block;
  color: var(--purple);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.catalog-page-info strong {
  display: block;
  color: var(--dark);
  font-size: 20px;
}

.catalog-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 8;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  border: 1px solid rgba(21, 16, 21, 0.08);
  background: rgba(255, 255, 255, 0.86);
  color: var(--dark);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(21, 16, 21, 0.10);
  backdrop-filter: blur(14px);
  transition: 0.25s ease;
}

.catalog-arrow:hover {
  background: var(--purple);
  color: #ffffff;
  transform: translateY(-50%) scale(1.04);
}

.catalog-arrow.prev {
  left: 20px;
}

.catalog-arrow.next {
  right: 20px;
}

.catalog-counter {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  min-height: 38px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(159, 39, 155, 0.08);
  color: var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.catalog-swipe-hint {
  display: none;
  margin-top: 14px;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

/* ESTADO SEM CATÁLOGO */

.catalog-empty-state {
  min-height: 260px;
  border-radius: 30px;
  padding: 34px;
  background:
    radial-gradient(circle at top left, rgba(245, 130, 31, 0.08), transparent 32%),
    radial-gradient(circle at bottom right, rgba(159, 39, 155, 0.08), transparent 32%),
    #ffffff;
  border: 1px solid rgba(21, 16, 21, 0.07);
  box-shadow: 0 12px 30px rgba(21, 16, 21, 0.045);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.catalog-empty-state span {
  color: var(--purple);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.catalog-empty-state h3 {
  font-size: 32px;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--dark);
}

.catalog-empty-state p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

/* CATALOG MODAL */

.catalog-modal {
  position: fixed;
  inset: 0;
  background: rgba(21, 16, 21, 0.82);
  backdrop-filter: blur(12px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
}

.catalog-modal.open {
  display: flex;
}

.catalog-modal-content {
  width: min(100%, 980px);
  max-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.catalog-modal-content img {
  max-width: 100%;
  max-height: 92vh;
  object-fit: contain;
  border-radius: 22px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.catalog-modal-close {
  position: fixed;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 0;
  background: #ffffff;
  color: var(--dark);
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  z-index: 2001;
}

/* ABOUT */

.about {
  margin: 0 6% 120px;
  padding: 90px 8%;
  border-radius: 54px;
  background: var(--dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(245, 130, 31, 0.18);
  right: -120px;
  top: -120px;
}

.about h2 {
  color: var(--white);
  max-width: 980px;
  position: relative;
}

.about p {
  color: rgba(255, 255, 255, 0.72);
  position: relative;
}

.about-cards {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  position: relative;
}

.about-cards article {
  min-height: 180px;
  border-radius: 28px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.about-cards strong {
  font-size: 24px;
  margin-bottom: 12px;
}

.about-cards span {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
}

/* CONTACT */

.contact {
  padding: 110px 6%;
  text-align: center;
  position: relative;
}

.contact::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(159, 39, 155, 0.06);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.contact h2 {
  max-width: 940px;
  margin: 0 auto;
}

.contact > p {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 42px;
}

.contact-options {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.contact-card {
  min-height: 340px;
  padding: 38px;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(21, 16, 21, 0.08);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 50px rgba(21, 16, 21, 0.07);
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.contact-card span {
  color: var(--purple);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.contact-card h3 {
  font-size: 34px;
  line-height: 1;
  letter-spacing: -0.05em;
  color: var(--dark);
}

.contact-card p {
  margin-top: 18px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  flex: 1;
}

.contact-card .btn-primary,
.contact-card .btn-secondary {
  width: 100%;
  min-height: 56px;
  margin-top: 28px;
}

.contact-card .btn-secondary {
  color: var(--white);
  border: 0;
  background: linear-gradient(135deg, var(--orange), var(--purple));
  box-shadow: 0 18px 45px rgba(159, 39, 155, 0.22);
}

.rh-card {
  background:
    radial-gradient(circle at top right, rgba(140, 198, 63, 0.12), transparent 36%),
    radial-gradient(circle at bottom left, rgba(159, 39, 155, 0.10), transparent 36%),
    rgba(255, 255, 255, 0.72);
}

.contact-extras {
  max-width: 980px;
  margin: 26px auto 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.contact-social,
.location-card {
  border-radius: 34px;
  padding: 34px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(21, 16, 21, 0.08);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 50px rgba(21, 16, 21, 0.07);
  text-align: left;
}

.contact-social span,
.location-card span {
  color: var(--purple);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
  display: block;
}

.contact-social h3,
.location-card h3 {
  font-size: 30px;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--dark);
}

.contact-social p,
.location-card p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.social-links {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.social-link-card {
  min-height: 74px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  padding: 12px 14px;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(21, 16, 21, 0.12);
  color: var(--dark);
  transition: 0.25s ease;
}

.social-link-card:hover {
  transform: translateY(-2px);
  border-color: rgba(159, 39, 155, 0.28);
  box-shadow: 0 12px 28px rgba(21, 16, 21, 0.08);
}

.social-link-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--purple));
  font-size: 12px;
  letter-spacing: 0.08em;
}

.social-link-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.social-link-meta strong {
  color: var(--dark);
  font-size: 14px;
  line-height: 1.1;
}

.social-link-meta small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.2;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.map-embed-wrapper {
  position: relative;
  margin-top: 20px;
  width: 100%;
  height: 220px;
  border-radius: 18px;
  overflow: hidden;
  display: block;
  border: 1px solid rgba(21, 16, 21, 0.1);
  box-shadow: 0 14px 38px rgba(21, 16, 21, 0.08);
  transition: 0.25s ease;
  cursor: pointer;
}

.map-embed-wrapper:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 52px rgba(21, 16, 21, 0.12);
}

.map-embed-frame {
  width: 100%;
  height: 100%;
}

.map-embed-frame iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.map-embed-cta {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(21, 16, 21, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--dark);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.04em;
  box-shadow: 0 6px 18px rgba(21, 16, 21, 0.1);
}

/* FOOTER */

.footer {
  padding: 44px 6%;
  background: #050505;
  color: rgba(255, 255, 255, 0.65);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer img {
  width: 160px;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  max-width: 260px;
}

.footer-social-title {
  width: 100%;
  text-align: center;
  color: rgba(255, 255, 255, 0.45);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.footer-social-link {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.65);
  transition: 0.25s ease;
  flex-shrink: 0;
}

.footer-social-link:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(245, 130, 31, 0.08);
  transform: translateY(-2px);
}

/* RESPONSIVE */

@media (max-width: 1100px) {
  .industry-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .catalog-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .catalog-side {
    align-items: flex-start;
  }

  .about-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .header {
    height: 84px;
    grid-template-columns: 1fr auto;
  }

  .header-logo-area {
    grid-column: 1;
    justify-content: flex-start;
  }

  .header-logo {
    width: 138px;
  }

  .nav {
    display: none;
  }

  .header-button {
    display: none;
  }

  .mobile-menu-button {
    display: flex;
    grid-column: 2;
    justify-self: end;
  }

  body.entered .intro-content {
    transform: translateY(-41vh) scale(0.24);
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 140px;
  }

  .hero-visual-premium {
    min-height: 430px;
  }

  .main-connection-card {
    min-height: 340px;
    padding: 34px;
  }

  .main-connection-card h2 {
    font-size: 36px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .mini-card {
    transform: scale(0.86);
  }

  .mini-card-one {
    top: 34px;
    left: 0;
  }

  .mini-card-two {
    right: 0;
    top: 160px;
  }

  .mini-card-three {
    left: 0;
    bottom: 26px;
  }

  .industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .industry-card {
    min-height: 190px;
  }

  .catalog-panel {
    padding: 34px;
    border-radius: 30px;
  }

  .catalog-carousel {
    padding: 18px 18px 74px;
    border-radius: 30px;
  }

  .catalog-page-button {
    padding: 12px;
  }

  .catalog-page-button img {
    height: 68vh;
    max-height: 620px;
  }

  .catalog-arrow {
    top: auto;
    bottom: 18px;
    transform: none;
    width: 46px;
    height: 46px;
    font-size: 26px;
  }

  .catalog-arrow:hover {
    transform: none;
  }

  .catalog-arrow.prev {
    left: 22px;
  }

  .catalog-arrow.next {
    right: 22px;
  }

  .catalog-counter {
    bottom: 22px;
  }

  .catalog-swipe-hint {
    display: block;
  }

  .about {
    padding: 70px 7%;
    border-radius: 34px;
  }

  .contact-options {
    grid-template-columns: 1fr;
  }

  .location-grid {
    grid-template-columns: 1fr;
  }

  .social-links {
    grid-template-columns: 1fr 1fr;
  }

  .social-link-card {
    min-height: 68px;
  }

  .contact-card {
    min-height: 300px;
    padding: 30px;
  }

  .contact-card h3 {
    font-size: 30px;
  }

  .footer {
    flex-direction: column;
    text-align: center;
  }

  .footer-brand {
    align-items: center;
  }
}

@media (max-width: 520px) {
  .contact-social,
  .location-card {
    padding: 28px 24px;
  }

  .social-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .intro-logo {
    width: 86vw;
  }

  .intro-content {
    padding: 38px 26px;
    border-radius: 32px;
  }

  .intro-phrase {
    margin-top: 36px;
    font-size: 27px;
    padding: 0 10px;
  }

  .hero h1,
  .section-heading h2,
  .catalog-panel h2,
  .about h2,
  .contact h2 {
    letter-spacing: -0.035em;
  }

  .industry-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
  }

  .catalog-modal {
    padding: 14px;
  }

  .catalog-modal-close {
    top: 14px;
    right: 14px;
  }
}