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

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  background: #0a0e17;
  color: #fff;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn--primary {
  background: linear-gradient(135deg, #0ea5e9 0%, #6366f1 100%);
  color: #fff;
  border: none;
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(99, 102, 241, 0.4);
}
.btn--outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}
.btn--outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.05);
}
.btn--card {
  padding: 0;
  background: none;
  color: #0ea5e9;
  font-size: 15px;
  font-weight: 600;
  margin-top: auto;
}
.btn--card:hover {
  gap: 14px;
}
.btn--card:hover .btn__arrow {
  transform: translateX(4px);
}
.btn__arrow {
  transition: transform 0.3s ease;
}

.hero {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  background: radial-gradient(ellipse at 20% 50%, rgba(14, 165, 233, 0.15) 0%, transparent 60%), radial-gradient(ellipse at 80% 20%, rgba(99, 102, 241, 0.1) 0%, transparent 50%), #0a0e17;
}
.hero__nav {
  width: 100%;
  padding: 20px 80px;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 10;
}
.hero__nav-inner {
  width: 100%;
  max-width: 1280px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.hero__logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.hero__logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #0ea5e9, #6366f1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}
.hero__logo-text {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}
.hero__nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.hero__nav-link {
  font-size: 15px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}
.hero__nav-link:hover, .hero__nav-link--active {
  color: #fff;
}
.hero__cta-btn {
  padding: 10px 28px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #0ea5e9, #6366f1);
  border-radius: 50px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.hero__cta-btn:hover {
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
  transform: translateY(-1px);
}
.hero__body {
  flex: 1;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 80px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}
.hero__text {
  flex: 1;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.hero__badge {
  display: inline-flex;
  width: fit-content;
  padding: 6px 18px;
  border-radius: 50px;
  background: rgba(14, 165, 233, 0.12);
  border: 1px solid rgba(14, 165, 233, 0.3);
  color: #38bdf8;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.03em;
}
.hero__title {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
  letter-spacing: -0.02em;
}
.hero__description {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  max-width: 480px;
}
.hero__actions {
  display: flex;
  gap: 16px;
  padding-top: 8px;
}
.hero__hexagons {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hex-cluster {
  position: relative;
  width: 380px;
  height: 420px;
}
.hex-cluster::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(14, 165, 233, 0.15) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.hex {
  position: absolute;
  width: 190px;
  height: 210px;
}
.hex__inner {
  width: 100%;
  height: 100%;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: linear-gradient(160deg, rgba(14, 165, 233, 0.2) 0%, rgba(99, 102, 241, 0.15) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  position: relative;
}
.hex__inner::before {
  content: "";
  position: absolute;
  inset: 2px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: linear-gradient(160deg, rgba(14, 165, 233, 0.12) 0%, rgba(99, 102, 241, 0.08) 100%);
  z-index: 0;
}
.hex:hover .hex__inner {
  background: linear-gradient(160deg, rgba(14, 165, 233, 0.4) 0%, rgba(99, 102, 241, 0.3) 100%);
}
.hex__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  padding: 20px;
}
.hex__icon {
  width: 40px;
  height: 40px;
  color: #38bdf8;
}
.hex__label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.02em;
}
.hex--top {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.hex--bottom-left {
  bottom: 50px;
  left: 0;
}
.hex--bottom-right {
  bottom: 50px;
  right: 0;
}

.services {
  width: 100%;
  padding: 120px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
  background: #0d1220;
  position: relative;
}
.services::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(99, 102, 241, 0.3) 50%, transparent 100%);
}
.services__header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 600px;
}
.services__badge {
  display: inline-flex;
  padding: 6px 18px;
  border-radius: 50px;
  background: rgba(99, 102, 241, 0.12);
  border: 1px solid rgba(99, 102, 241, 0.3);
  color: #818cf8;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.03em;
}
.services__title {
  font-size: 44px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.services__subtitle {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}
.services__grid {
  width: 100%;
  max-width: 1280px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 40px 36px;
  border-radius: 20px;
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.4s ease;
}
.service-card:hover {
  border-color: rgba(14, 165, 233, 0.2);
  background: linear-gradient(170deg, rgba(14, 165, 233, 0.06) 0%, rgba(99, 102, 241, 0.03) 100%);
  transform: translateY(-4px);
}
.service-card__icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.15) 0%, rgba(99, 102, 241, 0.1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-card__icon {
  width: 28px;
  height: 28px;
  color: #38bdf8;
}
.service-card__title {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
}
.service-card__text {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
}

.blog {
  width: 100%;
  padding: 120px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
  background: #ffffff;
  position: relative;
}
.blog__header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 600px;
}
.blog__badge {
  display: inline-flex;
  padding: 6px 18px;
  border-radius: 50px;
  background: rgba(14, 165, 233, 0.1);
  border: 1px solid rgba(14, 165, 233, 0.2);
  color: #0284c7;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.03em;
}
.blog__title {
  font-size: 44px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #0f172a;
}
.blog__subtitle {
  font-size: 17px;
  color: #64748b;
  line-height: 1.6;
}
.blog__grid {
  width: 100%;
  max-width: 1280px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.post-card {
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  background: #fff;
  border: none;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}
.post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}
.post-card:hover .post-card__img {
  transform: scale(1.05);
}
.post-card__thumb {
  margin: 20px 20px 0;
  border-radius: 12px;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.post-card__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}
.post-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 28px 32px;
}
.post-card__title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.35;
  color: #0f172a;
}
.post-card__meta {
  font-size: 14px;
  font-weight: 400;
  color: #94a3b8;
  line-height: 1.5;
}
.post-card__excerpt {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.75;
  color: #64748b;
}
.post-card__link {
  display: inline-block;
  margin-top: auto;
  padding-top: 4px;
  font-size: 15px;
  font-weight: 600;
  color: #ED8B00;
  text-decoration: none;
  transition: color 0.3s ease;
cursor:pointer;
}
.post-card__link:hover {
  color: #b91c1c;
}

@media (max-width: 1100px) {
  .hero__body {
    flex-direction: column;
    text-align: center;
    padding: 40px 60px 60px;
  }
  .hero__text {
    max-width: 100%;
    align-items: center;
  }
  .hero__description {
    max-width: 520px;
  }
  .hero__actions {
    justify-content: center;
  }
  .hex-cluster {
    width: 340px;
    height: 380px;
  }
  .hex {
    width: 170px;
    height: 190px;
  }
}
@media (max-width: 991px) {
  .hero__nav {
    padding: 20px 40px;
  }
  .hero__body {
    padding: 40px 40px 60px;
  }
  .hero__title {
    font-size: 44px;
  }
  .services {
    padding: 80px 40px;
  }
  .services__title {
    font-size: 36px;
  }
  .services__grid {
    grid-template-columns: 1fr;
    max-width: 560px;
  }
  .blog {
    padding: 80px 40px;
  }
  .blog__title {
    font-size: 36px;
  }
  .blog__grid {
    grid-template-columns: 1fr;
    max-width: 560px;
  }
}
@media (max-width: 768px) {
  .hero__nav {
    padding: 16px 24px;
  }
  .hero__nav-inner {
    gap: 20px;
  }
  .hero__nav-links {
    display: none;
  }
  .hero__body {
    padding: 30px 24px 50px;
    gap: 50px;
  }
  .hero__title {
    font-size: 36px;
  }
  .hero__description {
    font-size: 15px;
  }
  .hero__actions {
    flex-direction: column;
    width: 100%;
    max-width: 280px;
  }
  .btn {
    width: 100%;
    justify-content: center;
  }
  .hex-cluster {
    width: 280px;
    height: 320px;
  }
  .hex {
    width: 140px;
    height: 155px;
  }
  .hex__icon {
    width: 32px;
    height: 32px;
  }
  .hex__label {
    font-size: 11px;
  }
  .hex--bottom-left {
    bottom: 40px;
  }
  .hex--bottom-right {
    bottom: 40px;
  }
  .services {
    padding: 64px 24px;
    gap: 48px;
  }
  .services__title {
    font-size: 30px;
  }
  .service-card {
    padding: 32px 28px;
  }
  .blog {
    padding: 64px 24px;
    gap: 48px;
  }
  .blog__title {
    font-size: 30px;
  }
  .post-card__body {
    padding: 22px 22px 26px;
  }
  .post-card__title {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .hero__title {
    font-size: 30px;
  }
  .hex-cluster {
    width: 240px;
    height: 280px;
  }
  .hex {
    width: 120px;
    height: 133px;
  }
  .hex__icon {
    width: 26px;
    height: 26px;
  }
  .hex__label {
    font-size: 10px;
  }
  .hex--bottom-left {
    bottom: 34px;
  }
  .hex--bottom-right {
    bottom: 34px;
  }
}
