html {
  scroll-behavior: smooth;
}

* {
  font-family: "Lexend Deca", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "slnt" 0;
  box-sizing: border-box;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, button, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  outline: none;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

:root {
  --primary: #00d9ff;
  --primary-dark: #0099cc;
  --bg-dark: #0a0e27;
  --bg-darker: #050810;
  --bg-card: #1a1f3a;
  --text-light: #e0e0e0;
  --text-lighter: #a8a8a8;
  --accent: #7c3aed;
  --accent-light: #a855f7;
  --border: #2a2f4a;
}

header.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 14, 39, .8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
  transition: all .3s ease;
}

header.header .container {
  display: flex;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  justify-content: space-between;
  align-items: center;
}

header.header .container .left .logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: 1.5rem;
  cursor: pointer;
  text-decoration: none;
  transition: transform .3s ease;
}

header.header .container .left .logo .text {
  background: linear-gradient(135deg, var(--primary), var(--accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: rgba(0,0,0,0);
  background-clip: text;
  font-weight: 700;
}

@media (max-width: 768px) {
  header.header .container .left .logo .text {
    display: none;
  }
}

header.header .container .left .logo .img {
  width: 100%;
  height: 50px;
  border-radius: 10px;
}

header.header .container .right {
  display: flex;
  align-items: center;
  gap: 16px;
}

header.header .container .right button {
  display: flex;
  align-items: center;
  justify-items: center;
  gap: 5px;
}

header.header .container .right .link {
  display: flex;
  align-items: center;
  gap: 5px;
  background: none;
  outline: none;
  border: none;
  font-size: 1rem;
  color: var(--text-lighter);
  font-weight: 500;
  position: relative;
  transition: color .3s ease;
  cursor: pointer;
  text-decoration: none;
}

@media (max-width: 600px) {
  header.header .container .right .link:nth-last-of-type(2) {
    display: none;
  }
}

@media (max-width: 400px) {
  header.header .container .right .link:nth-last-of-type(1) {
    display: none;
  }
}

header.header .container .right .link svg {
  font-size: 1.125rem;
}

header.header .container .right .link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width .3s ease;
}

header.header .container .right .link:hover {
  color: var(--primary);
}

header.header .container .right .link:hover::after {
  width: 100%;
}

header.header .container .right .btn {
  padding: .615rem 1rem;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all .3s ease;
  font-size: .95rem;
  gap: .5rem;
  background: #5865f2;
  color: #fff;
  display: inline-flex;
  text-decoration: none; 
  align-items: center;
}

header.header .container .right .btn svg {
  font-size: 1.225rem;
}

header.header .container .right .btn:hover {
  background: #4752c4;
  transform: translateY(-2px);
}

footer.footer {
  background: rgba(0, 0, 0, .5);
  border-top: 1px solid var(--border);
  padding: 3rem 2rem 1.5rem;
}

footer.footer .content {
  max-width: 1400px;
  margin: 0 auto;
  margin-bottom: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

footer.footer .content .section h4 {
  color: var(--primary);
  margin-bottom: 1rem;
}

footer.footer .content .section p,
footer.footer .content .section ul a {
  color: var(--text-lighter);
  text-decoration: none;
  transition: color .3s ease;
  line-height: 1.8;
}

footer.footer .content .section ul {
  list-style: none;
}

footer.footer .content .section ul a:hover {
  color: var(--primary);
}

footer.footer .bottom {
  text-align: center;
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  color: var(--text-lighter);
  font-size: .9rem;
}

.landing {
  font-family: "Lexend Deca", sans-serif;
  background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
  color: var(--text-light);
  overflow-x: hidden;
  min-height: 100vh;
}

.landing section .btn {
  padding: .75rem 1.5rem;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all .3s ease;
  font-size: .95rem;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  text-decoration: none;
}

.landing section .btn.primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--bg-dark);
  border: 2px solid rgba(0,0,0,0);
}

.landing section .btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 217, 255, .3);
}

.landing section .btn.secondary {
  background: rgba(0,0,0,0);
  color: var(--text-light);
  border: 2px solid var(--border);
}

.landing section .btn.secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: 0 0 15px rgba(0, 217, 255, .2);
}

.landing .hero {
  margin-top: 100px;
  padding: 5rem 2rem;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 768px) {
  .landing .hero {
    flex-direction: column;
  }
}

.landing .hero .content {
  flex: 1;
}

@media (max-width: 768px) {
  .landing .hero .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .landing .hero .content .title,
  .landing .hero .content .sub {
    text-align: center;
  }
}

.landing .hero .content .title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--primary), var(--accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: rgba(0,0,0,0);
  background-clip: text;
  font-weight: 700;
}

.landing .hero .content .sub {
  font-size: 1.1rem;
  color: var(--text-lighter);
  margin-bottom: 2rem;
  line-height: 1.6;
  font-weight: 500;
}

.landing .hero .content .buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.landing .hero .preview {
  flex: 1;
}

.landing .hero .preview .img {
  width: 100%;
  border-radius: 15px;
}

.landing .showcase,
.landing .pricing {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  padding: 3rem 2rem;
}

.landing .showcase {
  background: rgba(0,0,0,.3);
}

.landing .showcase .title,
.landing .pricing .title {
  text-align: center;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 3rem;
  background: linear-gradient(135deg, var(--primary), var(--accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: rgba(0,0,0,0);
  background-clip: text;
  font-weight: 700;
}

.landing .showcase .video {
  max-width: 900px;
  width: 100%;
  border-radius: 15px;
}

.landing .pricing .container {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  align-items: flex-start;
}

@media (max-width: 768px) {
  .landing .pricing .container {
    flex-direction: column-reverse;
    display: flex;
  }
}

.landing .pricing .container .card {
  width: 100%;
  background: linear-gradient(135deg, var(--bg-card), rgba(124, 58, 237, 0.05));
  border: 2px solid var(--border);
  border-radius: 15px;
  padding: 2.5rem;
  position: relative;
  transition: all .3s ease;
}

.landing .pricing .container .card:hover {
  transform: translateY(-5px);
}

.landing .pricing .container .card.featured {
  border: 2px solid var(--primary);
}

.landing .pricing .container .card.featured:hover {
  box-shadow: 0 20px 50px rgba(0, 217, 255, .3);
  transform: scale(1.01) translateY(-10px);
}

.landing .pricing .container .card .badge {
  position: absolute;
  top: -15px;
  right: 30px;
  background: var(--primary);
  color: var(--bg-dark);
  padding: .5rem 1rem;
  border-radius: 20px;
  font-size: .85rem;
  font-weight: 700;
}

.landing .pricing .container .card .name {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.landing .pricing .container .card .price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: .5rem;
}

.landing .pricing .container .card .price .currency {
  font-size: 1.5rem;
}

.landing .pricing .container .card .price .price_period {
  font-size: .9rem;
  color: var(--text-lighter);
}

.landing .pricing .container .card .period {
  color: var(--text-lighter);
  margin-bottom: 1rem;
}

.landing .pricing .container .card .description {
  color: var(--text-lighter);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.landing .pricing .container .card .features {
  list-style: none;
  margin-bottom: 2rem;
}

.landing .pricing .container .card .features li {
  color: var(--text-light);
  padding: .75rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: .75rem;
}

.landing .pricing .container .card .features .checkmark {
  color: var(--primary);
  font-weight: 700;
}

.team {
  font-family: "Lexend Deca", sans-serif;
  background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
  color: var(--text-light);
  overflow-x: hidden;
  min-height: 100vh;
}

.team .hero-team {
  margin-top: 83px;
  padding: 5rem 2rem;
  text-align: center;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(0, 217, 255, 0.1));
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team .hero-team .title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--primary), var(--accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: rgba(0,0,0,0);
  background-clip: text;
}

.team .hero-team .sub {
  font-size: 1.1rem;
  color: var(--text-lighter);
  line-height: 1.6;
}

.team .members {
  padding: 5rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.team .members .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.team .members .grid .card {
  background: linear-gradient(135deg, var(--bg-card), rgba(124, 58, 237, 0.05));
  border: 1px solid var(--border);
  padding: 2.5rem;
  border-radius: 15px;
  text-align: center;
  transition: all .3s ease;
  cursor: pointer;
}

.team .members .grid .card:hover {
  border-color: var(--primary);
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 217, 255, .2);
}

.team .members .grid .card .image {
  width: 100px;
  border-radius: 50%;
  object-fit: cover;
  transition: transform .3s ease;
  margin-bottom: 1.5rem;
}

.team .members .grid .card h3 {
  font-size: 1.5rem;
  color: var(--text-light);
  margin-bottom: .5rem;
}

.team .members .grid .card .role {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.team .members .grid .card .bio {
  color: var(--text-lighter);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: .95rem;
}

.team .members .grid .card .social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.team .members .grid .card .social-links a {
  color: var(--text-lighter);
  text-decoration: none;
  font-size: .9rem;
  padding: .5rem 1rem;
  border: 1px solid var(--border);
  border-radius: 20px;
  transition: all .3s ease;
}

.team .members .grid .card .social-links a:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(0, 217, 255, .1);
}


