@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap");

:root {
  --blue: #3a85ff;
  --teal: #28c7b7;
  --bg-light: #f2faff;
  --text-dark: #1a1a1a;
  --text-light: #5f6a7a;
  --white: #fff;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: var(--bg-light);
  color: var(--text-dark);
  overflow-x: hidden;
}

header {
  padding: 1.2rem 2rem;
  background: var(--white);
  box-shadow: 0 3px 18px rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 0;
  z-index: 10;
}

nav {
  max-width: 1300px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.logo img {
  width: 44px;
  height: 44px;
  background: #fff;
  border-radius: 8px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.logo-text .t1 {
  font-weight: 700;
  font-size: 1.10rem;
  font-family: "Montserrat";
}

.logo-text .t2 {
  font-size: 0.8rem;
  color: var(--text-light);
  font-family: "Montserrat";
}

.menu {
  display: flex;
  gap: 1.7rem;
}

.menu a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
}

.menu a:hover {
  color: var(--blue);
}

.hero {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 1300px;
  margin: auto;
  padding: 5rem 2rem 6rem;
}

.hero-text {
  flex: 1;
  min-width: 400px;
  padding-right: 2rem;
}

.hero-text h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  margin: 0 0 1rem;
  background: linear-gradient(90deg, var(--blue), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
  line-height: 1.1;
}

.hero-text p {
  max-width: 500px;
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 2.5rem;
}

.hero-text button {
  background: linear-gradient(90deg, var(--blue), var(--teal));
  color: var(--white);
  padding: 0.9rem 2.1rem;
  border: none;
  border-radius: 40px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.25s;
}

.hero-text button:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.hero-visual {
  position: relative;
  flex: 1;
  min-width: 280px;
  height: 360px;
  border-radius: 30px;
  background: linear-gradient(135deg, var(--white), #e9f6ff);
  background-image: url(/images/hero.png);
  background-repeat: no-repeat;
  background-position: 50%;
  /* box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08); */
  overflow: hidden;
}

.blob {
  position: absolute;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, var(--teal), var(--blue));
  filter: blur(60px);
  opacity: 0.15;
  border-radius: 50%;
}

.blob1 {
  top: -40px;
  left: -40px;
}
.blob2 {
  bottom: -40px;
  right: -40px;
}

.divider {
  width: 100%;
  height: 90px;
  background: var(--white);
  clip-path: ellipse(70% 100% at 50% 0%);
  margin-bottom: -2rem;
}

.about {
  background: var(--white);
  padding: 6rem 2rem 5rem;
  text-align: center;
}

.about h2 {
  font-size: 2.3rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: var(--blue);
}

.about p {
  max-width: 700px;
  margin: 0 auto;
  color: var(--text-light);
  font-size: 1.1rem;
}

.icons {
  max-width: 1100px;
  margin: 4rem auto 0;
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  padding: 0 2rem;
}

.icon-box {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
}

.icon-circle {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  border-radius: 50%;
  opacity: 0.9;
  padding: 10px;
  box-sizing: border-box;
}

.icon-circle img {
  width: 100%;
  filter: invert(100%);
}

.icon-box h3 {
  margin: 0.5rem 0;
  font-weight: 600;
}

.icon-box p {
  color: var(--text-light);
  font-size: 0.95rem;
}

.cta {
  margin: 6rem auto 3rem;
  max-width: 1200px;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  color: var(--white);
  padding: 3.5rem 2rem;
  border-radius: 28px;
  text-align: center;
}

.cta h2 {
  margin: 0 0 1rem;
  font-size: 2.1rem;
}

.cta p {
  margin: 0 0 2rem;
  font-size: 1.1rem;
  opacity: 0.95;
}

.cta button {
  background: var(--white);
  color: var(--blue);
  padding: 0.9rem 2.1rem;
  border: none;
  border-radius: 40px;
  font-size: 1rem;
  cursor: pointer;
  font-weight: 600;
}

footer {
  text-align: center;
  padding: 2rem 1rem;
  color: var(--text-light);
  font-size: 0.85rem;
}

@media (max-width: 1270px) {
  .hero {
    text-align: center;
  }
  .hero-text {
    padding-right: 0;
  }
  .hero-visual {
    margin-top: 3rem;
  }
  .menu {
    display: none;
  }
  .cta {
    border-radius: 0;
  }
}