* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", Arial, sans-serif;
  background: #070713;
  color: #ffffff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
  background: rgba(7, 7, 19, 0.8);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.navbar {
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 22px;
  font-weight: 700;
}

.logo span {
  color: #a78bfa;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 28px;
}

.nav-links a {
  color: #c7c7d1;
  font-size: 15px;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #ffffff;
}

.menu-btn {
  display: none;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 22px;
  padding: 6px 12px;
  border-radius: 10px;
}

.hero {
  max-width: 1180px;
  margin: 0 auto;
  padding: 130px 24px 70px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 60px;
}

.eyebrow {
  color: #a78bfa;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero h1 {
  font-size: 54px;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 24px;
}

.hero-text {
  max-width: 600px;
  color: #b9b9c8;
  font-size: 18px;
  margin-bottom: 34px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.3s;
}

.primary-btn {
  background: #a78bfa;
  color: #080812;
}

.primary-btn:hover {
  background: #c4b5fd;
  transform: translateY(-3px);
}

.secondary-btn {
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: white;
}

.secondary-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-3px);
}

.hero-card {
  background: linear-gradient(145deg, rgba(167, 139, 250, 0.18), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 30px;
  border-radius: 30px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.card-label {
  color: #c4b5fd;
  margin-bottom: 18px;
  font-size: 14px;
}

.hero-card h2 {
  font-size: 30px;
  line-height: 1.22;
  margin-bottom: 14px;
}

.hero-card p {
  color: #c7c7d1;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.hero-stats div {
  padding: 14px 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stats strong {
  display: block;
  font-size: 24px;
  color: #ffffff;
  margin-bottom: 4px;
}

.hero-stats span {
  display: block;
  font-size: 11px;
  line-height: 1.4;
  color: #b9b9c8;
}

@media (max-width: 720px) {
  .hero-stats {
    grid-template-columns: 1fr;
  }
}

.hero-card {
  padding: 24px;
}

.hero-card h2 {
  font-size: 28px;
}

.hero-stats div {
  padding: 14px;
}

.skills {
  gap: 8px;
}

.skills span {
  font-size: 13px;
}

.skills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.skills span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #e9e9ff;
  font-size: 14px;
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 80px 24px;
}

section {
  scroll-margin-top: 110px;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 44px;
}

.section-heading h2,
.contact-section h2 {
  font-size: 44px;
  line-height: 1.1;
  margin-bottom: 16px;
}

.section-heading p {
  color: #b9b9c8;
}

.work-grid,
.services-grid,
.process-grid {
  display: grid;
  gap: 24px;
}

.work-grid {
  grid-template-columns: repeat(3, 1fr);
}

.work-card,
.service-card,
.process-card {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 26px;
  overflow: hidden;
}

.work-card {
  transition: 0.3s;
}

.work-card:hover {
  transform: translateY(-8px);
  border-color: rgba(167, 139, 250, 0.4);
}

.work-image {
  height: 240px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 22px;
}

.work-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: 0.4s;
}

.work-card:hover .work-image img {
  transform: scale(1.06);
}

.work-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 7, 19, 0.45), transparent 65%);
}

.work-image span {
  position: relative;
  z-index: 2;
}

.work-image span {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(7, 7, 19, 0.65);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.finance {
  background: linear-gradient(135deg, #0f766e, #67e8f9);
}

.beauty {
  background: linear-gradient(135deg, #be185d, #f9a8d4);
}

.fitness {
  background: linear-gradient(135deg, #ea580c, #fde68a);
}

.work-content {
  padding: 24px;
}

.project-type {
  color: #a78bfa;
  font-size: 14px;
  margin-bottom: 10px;
}

.work-content h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.work-content p {
  color: #b9b9c8;
  margin-bottom: 20px;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.project-tags span {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(167, 139, 250, 0.12);
  color: #d8ccff;
  font-size: 12px;
}

.work-content a {
  color: #c4b5fd;
  font-weight: 700;
}

.services-grid {
  grid-template-columns: repeat(2, 1fr);
}

.service-card,
.process-card {
  padding: 28px;
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: rgba(167, 139, 250, 0.14);
  color: #c4b5fd;
  font-weight: 800;
  margin-bottom: 24px;
}

.service-card ul {
  list-style: none;
  margin-top: 22px;
  display: grid;
  gap: 10px;
}

.service-card li {
  color: #d8d8e8;
  font-size: 14px;
  position: relative;
  padding-left: 22px;
}

.service-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #a78bfa;
  font-weight: 800;
}

.service-card h3,
.process-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.service-card p,
.process-card p {
  color: #b9b9c8;
}

.process-section {
  padding-top: 50px;
}

.process-grid {
  grid-template-columns: repeat(4, 1fr);
}

.process-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: rgba(167, 139, 250, 0.14);
  color: #c4b5fd;
  font-weight: 800;
  margin-bottom: 24px;
}

.process-card {
  position: relative;
  transition: 0.3s;
}

.process-card:hover {
  transform: translateY(-6px);
  border-color: rgba(167, 139, 250, 0.35);
}

.contact-section {
  max-width: 980px;
  margin: 80px auto;
  padding: 76px 40px;
  text-align: center;
  border-radius: 34px;
  background:
    radial-gradient(circle at top left, rgba(167, 139, 250, 0.28), transparent 36%),
    linear-gradient(145deg, rgba(167, 139, 250, 0.16), rgba(34, 211, 238, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-section p {
  color: #c7c7d1;
  max-width: 620px;
  margin: 0 auto 28px;
}

.contact-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.contact-info {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 30px;
  color: #b9b9c8;
  font-size: 14px;
}

.contact-info span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  max-width: 100%;
  word-break: break-word;
}


.contact-info a {
  color: #ffffff;
  font-weight: 700;
}

.footer {
  text-align: center;
  padding: 28px;
  color: #8f8fa3;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  gap: 6px;
}

/* Responsive */
@media (max-width: 950px) {

  .hero,
  .work-grid,
  .services-grid,
  .process-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero {
    padding-top: 130px;
  }

  .hero h1 {
    font-size: 48px;
  }
}

@media (max-width: 1024px) {
  .contact-section {
    margin: 70px 40px;
    padding: 70px 32px;
  }
}

@media (max-width: 720px) {
  .nav-links {
    position: absolute;
    top: 72px;
    left: 24px;
    right: 24px;
    display: none;
    flex-direction: column;
    background: #101020;
    padding: 24px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-links.active {
    display: flex;
  }

  .menu-btn {
    display: block;
  }

  .hero,
  .work-grid,
  .services-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 40px;
  }

  .section-heading h2,
  .contact-section h2 {
    font-size: 34px;
  }


  .contact-section {
    margin: 60px 24px;
    padding: 56px 24px;
  }

  .contact-section h2 {
    font-size: 32px;
  }

  .contact-info {
    flex-direction: column;
    align-items: center;
  }


  .hero {
    gap: 40px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }
}