:root {
  /* Light Theme */
  --bg: #f0f0f0;
  --bg-main: #fff;
  --border-main: #e6e6e6;
  --bg-card: #fff;
  --border-card: #f0f0f0;
  --bg-box: #f7f7f7;
  --text-body: #373737;
  --text: #666666;
  --bg-primary: #141414;

}

[data-theme="dark"] {
  /* Dark Theme */
  --bg: #161616;
  --bg-main: #212121;
  --border-main: #2c2c2c;
  --bg-card: #373737;
  --border-card: #424242;
  --bg-box: #2c2c2c;
  --text-body: #ffffff;
  --text: #a0a0a0;
  --bg-primary: #383838;

}

a {
  text-decoration: none;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text-body);
  line-height: 1.6;

}

.p-24 {
  padding: 1.5rem;
}

.mb-8 {
  margin-bottom: 0.5rem;
}

.mb-12 {
  margin-bottom: 0.75rem;
}

.mb-16 {
  margin-bottom: 1rem;
}

.mb-24 {
  margin-bottom: 1.5rem;
}

.mb-32 {
  margin-bottom: 2rem;
}


p,
.text {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: -0.32px;
  line-height: 170%;
  color: var(--text);
}


.card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 12px;
  box-shadow: 0px 1.2px 1.2px 0px rgba(10, 10, 10, 0.06), 0px 5px 10px 0px rgba(10, 10, 10, 0.04);
}

.card-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all .2s ease-in;
}

.card-flex:hover {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.card-flex:hover svg {
  margin-right: -5px
}


.card-flex .card-icon {
margin: 0 15px 0 0;
height: 61px;
}
.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 0 auto;
}

.card.team {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  height: 320px; 
}

.card-img {
  width: 100%;
  height: 180px; 
  overflow: hidden;
}
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 4px 0;
  color: #222222;
}
.card-body p {
  margin: 0 0 8px 0;
  color: #555555;
  font-size: 0.95rem;
}
.card-body ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 8px;
}
.card-body ul li a svg {
  width: 24px;
  height: 24px;
  fill: #222222;
}

.stats .card-title {
  font-size: 36px;
}

.card .arrow svg {
  width: 24px;
  height: auto;
  transition: all .2s ease-in;
}

.card .arrow svg path {
  stroke: #fff;
}

.card .card-body,
.card.card-body {
  padding: 1rem;
}

.card-body ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  margin-top: 10px;
}

.card-body ul li {
  margin: 0 10px 0 0;
}

.card-body ul li a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgb(33, 33, 33);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: all .2s ease;
}

.card-body ul li a:hover {
  box-shadow: 0px 1px 1px 0px rgba(22, 22, 22, 0), 0px 0px 0px 4px rgba(0, 0, 0, 0.1);
}


.card-body ul li a svg {
  width: 25px;
  height: auto;
  fill: #fff;
}

.card-dashed {
  padding: 1rem;
  background-color: transparent;
  border: 2px dashed var(--border-card);
  border-radius: 12px;
}

.bg-white {
  background-color: white;
}

.card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border: 1px solid var(--border-card);
  background-color: var(--bg-box);
  border-radius: 50%;
  box-shadow: rgba(0, 0, 0, 0.08) 0px 0.8px 0.8px 0px, rgba(0, 0, 0, 0.04) 0px 3.2px 6.4px 0px;
}

.icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--border-card);
  overflow: hidden;
}

.icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

.card-title {
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: -.2px;
  line-height: 120%;
  color: var(--text-body);
  margin-bottom: 6px;
}

.card-light {
  padding: 1.5rem;
  background-color: var(--bg-box);
  border-radius: 12px;
}

.card-light .card-light-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: -.2px;
  line-height: 120%;
  color: var(--text);
  margin-bottom: 1.5rem;
}


/* ---------- NAV ---------- */
.container {
  max-width: 560px;
  margin: 8px auto;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .5rem 1rem;
  height: 64px;
  background: var(--bg-main);
  border-radius: 12px;
  margin: 8px 0;
  position: sticky;
  top: 8px;
  z-index: 100;
  border: 1px solid var(--border-main);
  box-shadow: 0px 1.2px 1.2px 0px rgba(10, 10, 10, 0.06), 0px 5px 10px 0px rgba(10, 10, 10, 0.04);
}

.nav .home a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-box);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--text-body);
}

.light {
  background-color: transparent;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* ---------- HERO ---------- */
main {
  padding: .5rem .5rem;
  background: var(--bg-main);
  border: 1px solid var(--border-main);
  border-radius: 16px;
  box-shadow: 0px 1.2px 1.2px 0px rgba(10, 10, 10, 0.06), 0px 5px 10px 0px rgba(10, 10, 10, 0.04);
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: var(--text-body);
  padding: 1.5rem 1.5rem;
}

.hero h1 {
  /* font-size: clamp(2rem, 5vw, 3.5rem); */
  font-size: 3rem;
  line-height: 1;
  /* margin-bottom: 1rem; */
}

.hero p {
  max-width: 600px;
  margin-bottom: 1.5rem;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: -0.32px;
  line-height: 170%;
  color: var(--text);
}

.hero-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem
}

.btn-primary {
  align-items: center;
  justify-content: center;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 8px;
  height: 36px;
  position: relative;
  padding: 0 12px 0 8px;
  color: #ffffff;
  background-color: var(--bg-primary);
  border: 1px solid var(--bg-primary);
  border-radius: 6px;
  box-shadow: 0px 8px 16px 0px rgba(23, 23, 23, 0.1), 0px 1px 1px 0px rgba(23, 23, 23, 0.1), inset 0px -1px 1px 0px rgb(204 204 204 / 4%), 0px 0px 0px 0.1px rgb(0 0 0 / 8%);
  transition: all .2s ease;

}

.btn-primary:hover {
  box-shadow: 0px 8px 16px 0px rgba(22, 22, 22, 0), 0px 1px 1px 0px rgba(23, 23, 23, 0.1), inset 0px -1px 1px 0px rgb(77, 77, 77), 0px 0px 0px 5px rgba(0, 0, 0, 0.1);
}

.btn-outline {
  align-items: center;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 8px;
  height: 36px;
  position: relative;
  padding: 0 12px 0 8px;
  color: var(--text-body);
  background-color: transparent;
  border: 1px solid var(--border-main);
  border-radius: 6px;
  transition: all .2s ease;
}

.btn-outline:hover {
  box-shadow: 0px 1px 1px 0px rgba(22, 22, 22, 0), 0px 0px 0px 4px rgba(0, 0, 0, 0.1);
}

.comming-soon .card-title {
  color: #a0a0a0;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: -.2px;
  line-height: 120%;
}

.comming-soon .text {
  color: #a0a0a0;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: -.32px;
  line-height: 170%;
}

.comming-soon {
  display: flex;
  align-items: center;
  gap: 1rem;
}


.dot {
  display: flex;
  background-color: #ccc;
  border-radius: 100%;
  height: 8px;
  width: 8px;
}

.grid {
  display: grid;
  grid-template-columns: auto auto;
  gap: 1rem;
}

.medium {
  font-weight: 500;
}

.semibold {
  font-weight: 600;
}

.w-100 {
  width: 100%;
}

.card-img {
  padding: 6px;
}

.card-img img {
  border-radius: 8px;
}

.team .card-body {
  padding-top: 4px;
}

.contacts-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.label {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  color: var(--text);
}

.value {
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: -.2px;
  line-height: 120%;
  color: var(--text-body);
}


.form {
  display: flex;
  flex-direction: column;
  gap: 8px;

}

.form-comtrol {
  padding: 12px;
  border-radius: 8px;
  color: var(--text-body);
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--border-card);
  background-color: var(--bg-box);
  outline: 0;
}

::placeholder {
  color: #a0a0a0;
}

.submit-btn {
  height: 48px;
  box-shadow: none;
  transition: all .2s ease;
}

.submit-btn:hover {
  box-shadow: none;
  background-color: #373737;
}

/* ---------- FOOTER ---------- */
footer {
  padding: 2rem;
  text-align: center;
  color: var(--text-light);
  font-size: 0.875rem;
}

/* ---------- RESPONSIVE NAV (optional JS) ---------- */
@media (max-width: 640px) {
  .nav ul {
    display: none;
  }

  .nav .menu-toggle {
    display: block;
    cursor: pointer;
    font-size: 1.25rem;
    background: none;
    border: none;
  }
}


.copy-btn {
  width: 118px;
}


.btn-text {
  width: 75px;
  display: inline-block;
  transition: transform 200ms ease, opacity 200ms ease;

}

.btn-text.shift-left {
  transform: translateX(-4px);
}

.btn-text.shift-right {
  transform: translateX(4px);
}