@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

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

:root {
  --color-bg: #EDEDED;
  --color-nav: #6C6C6C;
  --color-white: #FFFFFF;
  --color-black: #6C6C6C;
  --color-accent: #00FDCF;
  --color-accent-dark: #0D3A38;
  --color-text-gray: #6C6C6C;
  --color-text-light: #8F8F8F;
  --color-text-lighter: rgba(136,136,136,0.48);
  --color-text-muted: #8B8782;
  --color-text-spec: #666666;
  --font: 'Poppins', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--color-bg);
  color: var(--color-text-gray);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ── NAVIGATION ── */
nav {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 12px 40px;
  background: var(--color-nav);
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 100;
}



.nav-logo {
  font-family: var(--font);
  font-weight: 600;
  font-size: 22px;
  color: var(--color-white);
  text-decoration: none;
  letter-spacing: -0.5px;
}

.nav-buttons {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}

.nav-link {
  font-family: var(--font);
  font-weight: 400;
  font-size: 16px;
  color: var(--color-white);
  text-decoration: none;
  padding: 10px 24px;
  transition: opacity 0.2s;
}

.nav-link:hover { opacity: 0.75; }

.nav-btn-primary {
  font-family: var(--font);
  font-weight: 400;
  font-size: 16px;
  color: var(--color-black);
  background: var(--color-white);
  border: none;
  border-radius: 24px;
  padding: 10px 32px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: background 0.2s, color 0.2s;
}

.nav-btn-primary:hover {
  background: var(--color-accent);
  color: var(--color-accent-dark);
}

/* ── FOOTER ── */
footer {
  background: var(--color-bg);
  padding: 80px 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 42px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  width: 100%;
  max-width: 860px;
  padding: 0 24px;
}

.footer-title {
  font-weight: 600;
  font-size: clamp(28px, 4vw, 16px);
  line-height: 1.5;
  text-align: center;
  color: var(--color-text-gray);
}

.footer-desc {
  font-weight: 400;
  font-size: clamp(14px, 2vw, 12px);
  line-height: 1.6;
  text-align: center;
  color: var(--color-text-gray);
}

.footer-nav-buttons {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.footer-nav-btn {
  font-family: var(--font);
  font-weight: 400;
  font-size: 16px;
  color: var(--color-text-gray);
  background: var(--color-white);
  border: none;
  border-radius: 24px;
  padding: 10px 32px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: background 0.2s;
}

.footer-nav-btn:hover { background: #6C6C6C; }

.footer-bottom {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 16px 80px;
  flex-wrap: wrap;
  gap: 55px;
}

footer {
  background-color: #6C6C6C !important;
}

.footer-nav-btn {
  background: #FFFFFF !important;
}

.footer-title,
.footer-desc,
.footer-copyright {
  color: #FFFFFF !important;
}


.footer-bottom-logo {
  font-family: var(--font);
  font-weight: 600;
  font-size: 18px;
  color: var(--color-text-gray);
  text-decoration: none;
}

.footer-copyright {
  font-weight: 400;
  font-size: 16px;
  color: var(--color-text-gray);
  text-align: right;
}


/* ── RESPONSIVE HELPERS ── */
@media (max-width: 768px) {
  nav {
    padding: 16px 20px;
    flex-wrap: wrap;
    gap: 12px;
  }

  .footer-bottom {
    padding: 16px 20px;
    justify-content: center;
    text-align: center;
  }

  .footer-copyright { text-align: center; }
}
