/* ================= ROOT VARIABLES ================= */
:root {
  --pink: #c2185b;
  --dark: #263238;
  --light-bg: #f3f4f6;
}

/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: #ffffff;
  color: #222;
  overflow-x: hidden;
}

/* ================= NAVBAR ================= */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;

  height: 84px;
  max-width: 1440px;
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding-right: 80px;
  background-color: #f9fafb;

  box-shadow: 0 15px 20px rgba(0, 0, 0, 0.06);
}

/* Logo */
.logo {
  margin-left: 97px;
}

.logo img {
  height: 36px;
  display: block;
}

/* Navigation menu */
.nav-menu {
  display: flex;
  align-items: center;
}

.nav-menu a {
  font-size: 17px;
  font-weight: 400;
  text-decoration: none;
  color: #18191f;
  margin: 0 18px;
}

.nav-menu a.active {
  font-weight: 600;
}

/* Contact button */
.btn-contact {
  height: 40px;
  padding: 0 24px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  background-color: var(--pink);
  color: #ffffff;

  font-size: 15px;
  font-weight: 600;
  line-height: 1;

  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
}

/* ================= HERO ================= */
.hero {
  max-width: 1440px;
  height: 600px;
  margin: 0 auto;

  background-color: var(--light-bg);

  padding: 96px 144px;
  display: flex;
  align-items: center;

  position: relative;
}

/* Hero text */
.hero-text {
  max-width: 600px;
  z-index: 1;
}

.hero-text h1 {
  font-size: 64px;
  font-weight: 600;
  line-height: 76px;
  color: #4d4d4d;
}

.hero-text h1 span {
  color: var(--pink);
}

/* Hero button */
.hero-btn {
  margin-top: 32px;

  height: 52px;
  width: 137px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  background-color: var(--pink);
  color: #ffffff;

  font-size: 16px;
  font-weight: 600;

  border-radius: 999px;
  text-decoration: none;
}

/* Background number */
.hero-bg-number {
  position: absolute;
  right: -20px;
  bottom: -34px;

  font-family: 'Poppins', sans-serif;
  font-size: 300px;
  font-weight: 700;
  line-height: 0.9;

  color: #cfd0d1;

  display: flex;
  flex-direction: column;
  align-items: flex-end;

  pointer-events: none;
  user-select: none;
}

/* ================= PARTNERS ================= */
.partners {
  max-width: 1440px;
  margin: 0 auto;
  padding: 96px 144px;

  text-align: center;
}

.partners h2 {
  font-size: 36px;
  font-weight: 600;
  color: #4d4d4d;
  margin-bottom: 12px;
}

.partners p {
  font-size: 16px;
  color: #717171;
  margin-bottom: 48px;
}

/* Partner logos grid */
.partners-logos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 40px;
}

.partner-logo {
  height: 48px;
  background-color: #e5e7eb;
  border-radius: 8px;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* ================= FOOTER ================= */
.footer {
  max-width: 1440px;
  height: 86px;
  margin: 0 auto;

  background-color: var(--dark);
  color: #f5f7fa;

  padding: 0 144px;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* Footer inner layout */
.footer-inner {
  display: flex;
  align-items: center;
  gap: 100px;
}

/* Footer logo */
.footer-logo img {
  height: 50px;
  display: block;
}

/* Footer text */
.footer-text {
  height: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.footer-text p {
  font-size: 14px;
  line-height: 20px;
  opacity: 0.8;
}

.footer-text strong {
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
}
