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

:root {
  --cream: #fbf7ef;
  --black: #07070a;
  --gray: #6f6f76;
  --line: rgba(12, 12, 15, 0.1);
  --purple: #8b5cf6;
  --purple-light: #eadcff;
  --white: #ffffff;
}

body {
  font-family: "Inter", sans-serif;
  background: linear-gradient(135deg, #fbf7ef 0%, #f7efe5 45%, #efe6ff 100%);
  color: var(--black);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.bg-blur {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
  pointer-events: none;
  z-index: -1;
}

.bg-blur-1 {
  width: 360px;
  height: 360px;
  background: #d8c2ff;
  top: 180px;
  right: 12%;
}

.bg-blur-2 {
  width: 300px;
  height: 300px;
  background: #ffe1c6;
  bottom: 80px;
  left: 10%;
}

/* HEADER */

.site-header {
  width: calc(100% - 64px);
  max-width: 1360px;
  margin: 16px auto 0;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px);
  position: sticky;
  top: 20px;
  z-index: 100;
}

.logo {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -1px;
}

.logo span {
  color: var(--purple);
}

.nav-links {
  display: flex;
  gap: 42px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 700;
  position: relative;
}

.nav-links a.active::after,
.nav-links a:hover::after {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--purple);
  border-radius: 50%;
  position: absolute;
  left: 50%;
  bottom: -12px;
  transform: translateX(-50%);
}

.header-btn,
.btn {
  padding: 18px 30px;
  border-radius: 16px;
  background: var(--black);
  color: white;
  font-size: 16px;
  font-weight: 800;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  transition: 0.35s ease;
}

.header-btn:hover,
.btn:hover {
  transform: translateY(-3px);
  background: var(--purple);
}

.menu-toggle {
  display: none;
}

.btn-secondary {
  background: transparent;
  color: var(--black);
  border: 1px solid var(--black);
}

.btn-secondary:hover {
  color: white;
  border-color: var(--purple);
}

/* GENERAL */

.page {
  width: calc(100% - 64px);
  max-width: 1360px;
  margin: 0 auto;
}

section {
  margin-top: 56px;
}

.section-label {
  color: var(--purple);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(34px, 5vw, 64px);
  line-height: 0.95;
  letter-spacing: -0.06em;
  max-width: 720px;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
}

.text-link {
  font-size: 14px;
  font-weight: 800;
}

/* HERO */

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  overflow: visible;
}

.hero-content {
  width: 42%;
  position: relative;
  z-index: 5;
  padding-top: 40px;
}

.hero-badge {
  font-size: 14px;
  margin-bottom: 18px;
  font-weight: 700;
}

.hero-badge span {
  color: var(--purple);
}

.hero-title {
  font-size: clamp(52px, 5.5vw, 88px);
  line-height: 0.9;
  letter-spacing: -0.09em;
  font-weight: 950;
  max-width: 620px;
}

.outline {
  color: transparent;
  -webkit-text-stroke: 1.4px rgba(7, 7, 10, 0.55);
}

.purple-outline {
  color: transparent;
  -webkit-text-stroke: 1.4px var(--purple);
}

.hero-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray);
  max-width: 420px;
  margin: 26px 0 32px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-visual {
  position: absolute;
  right: -40px;
  top: 40px;
  width: 58%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  pointer-events: none;
}

.glow {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.38), transparent 70%);
  filter: blur(35px);
  z-index: 1;
  animation: glowPulse 5s ease-in-out infinite;
}

.hero-mockup {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 860px;
  filter:
    drop-shadow(0 60px 90px rgba(0, 0, 0, 0.22))
    drop-shadow(0 0 60px rgba(139, 92, 246, 0.2));
  animation: floatMockup 6s ease-in-out infinite;
}

.hero-social {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  gap: 24px;
  font-size: 12px;
  font-weight: 900;
  color: rgba(7, 7, 10, 0.55);
  z-index: 5;
}

/* ABOUT */

.about {
  display: grid;
  grid-template-columns: minmax(380px, 0.42fr) minmax(0, 0.58fr);
  gap: 58px;
  align-items: center;
  margin-top: 120px;
}

.about-image {
  width: 420px;
  height: 420px;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(135deg, #eadcff, #fff4e8);
  box-shadow: 0 24px 70px rgba(40, 30, 20, 0.1);
}

.about-content {
  max-width: none;
}

.about-content .section-title {
  font-size: clamp(34px, 4vw, 54px);
  max-width: 900px;
}

.about-content p {
  color: var(--gray);
  font-size: 16px;
  line-height: 1.7;
  max-width: 760px;
  margin: 20px 0 24px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  margin-top: 42px;
  max-width: 900px;
}

.stats div {
  border-right: 1px solid var(--line);
}

.stats div:last-child {
  border-right: none;
}

.stats strong {
  font-size: 42px;
  letter-spacing: -0.06em;
  display: block;
}

.stats span {
  color: var(--gray);
  font-size: 13px;
}

/* CARDS */

.card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 18px 50px rgba(40, 30, 20, 0.08);
}

/* SERVICES */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 42px;
}

.service-card {
  padding: 34px;
  min-height: 310px;
  transition: 0.35s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 80px rgba(139, 92, 246, 0.18);
  border-color: rgba(139, 92, 246, 0.35);
}

.service-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--purple-light);
  color: var(--purple);
  display: grid;
  place-items: center;
  margin-bottom: 28px;
}

.service-card h3 {
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.service-card p {
  color: var(--gray);
  line-height: 1.6;
  margin: 18px 0 28px;
}

.price {
  font-weight: 900;
  display: flex;
  justify-content: space-between;
}

/* PROJECT */

.project-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 42px;
}

.project-card {
  overflow: hidden;
  transition: 0.35s ease;
}

.project-card:hover {
  transform: translateY(-8px);
}

.project-thumb {
  height: 190px;
  background-size: cover;
  background-position: center;
}

.thumb-1 {
  background-image: linear-gradient(rgba(0,0,0,.25), rgba(0,0,0,.25)), url("../image/Screenshot\ 2026-05-21\ 182636.png");
}

.thumb-2 {
  background-image: linear-gradient(rgba(0,0,0,.25), rgba(0,0,0,.25)), url("../image/second.png");
}

.thumb-3 {
  background-image: linear-gradient(rgba(0,0,0,.25), rgba(0,0,0,.25)), url("../image/third.png");
}

.thumb-4 {
  background-image: linear-gradient(rgba(0,0,0,.25), rgba(0,0,0,.25)), url("../image/re.png");
}

.project-info {
  padding: 18px;
}

.project-info h3 {
  font-size: 18px;
}

.project-info span {
  display: inline-block;
  margin-top: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--purple-light);
  color: var(--purple);
  font-size: 11px;
  font-weight: 800;
}

/* CTA */

.cta {
  position: relative;
  overflow: hidden;
  padding: 58px;
  border-radius: 32px;
  background: linear-gradient(135deg, #f3eaff, #fff4e8);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cta h2 {
  font-size: clamp(34px, 4vw, 58px);
  letter-spacing: -0.06em;
  line-height: 1;
}

.cta h2 span {
  color: var(--purple);
}

.cta p {
  color: var(--gray);
  margin-top: 14px;
}

.cta-orb {
  position: absolute;
  right: 80px;
  bottom: -70px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: radial-gradient(circle, #b58cff, #8b5cf6);
  filter: blur(2px);
  opacity: 0.45;
}

.cta-star {
  position: absolute;
  right: 280px;
  bottom: 50px;
  color: var(--purple);
  font-size: 38px;
}

/* FOOTER */

.footer {
  margin-top: 80px;
  padding: 28px 36px;
  border-radius: 28px 28px 0 0;
  background: var(--black);
  color: white;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 48px;
}

.footer-brand h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.footer-brand p {
  color: #aaa;
  font-size: 12px;
  line-height: 1.5;
  max-width: 300px;
}

.footer-copy {
  color: #aaa;
  font-size: 12px;
  white-space: nowrap;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-socials a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  font-size: 12px;
  font-weight: 800;
}

.footer-socials a:hover {
  background: var(--purple);
}

/* ANIMATION */

@keyframes floatMockup {
  0%, 100% {
    transform: translateY(0) rotate(-2deg);
  }

  50% {
    transform: translateY(-16px) rotate(1.5deg);
  }
}

@keyframes glowPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.65;
  }

  50% {
    transform: scale(1.12);
    opacity: 1;
  }
}

.language-modal {
  position: fixed;
  inset: 0;
  background: rgba(7, 7, 10, 0.45);
  backdrop-filter: blur(12px);
  display: grid;
  place-items: center;
  z-index: 9999;
}

.language-box {
  width: min(420px, 90%);
  padding: 38px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  text-align: center;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.18);
}

.language-box h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.language-box p {
  color: var(--gray);
  margin-bottom: 28px;
}

.language-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
}

.language-actions button {
  border: none;
  padding: 14px 24px;
  border-radius: 14px;
  background: var(--black);
  color: white;
  font-weight: 800;
  cursor: pointer;
}

.language-actions button:last-child {
  background: var(--purple);
}

/* RESPONSIVE */
.language-toggle {
  border: none;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--purple);
  color: white;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.language-toggle:hover {
  background: var(--black);
}

@media (max-width: 1100px) {
  .page,
  .site-header {
    width: calc(100% - 36px);
  }

  .hero {
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 72px 0 30px;
  }

  .hero-content {
    width: 100%;
    padding-top: 0;
  }

  .hero-visual {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    height: auto;
    justify-content: center;
  }

  .hero-mockup {
    max-width: 720px;
  }

  .about {
    grid-template-columns: 1fr;
    gap: 38px;
    margin-top: 76px;
  }

  .about-image {
    width: min(420px, 100%);
    height: auto;
    aspect-ratio: 1;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .project-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-copy {
    white-space: normal;
  }
}

@media (max-width: 760px) {
  .page,
  .site-header {
    width: calc(100% - 24px);
  }

  .site-header {
    margin-top: 10px;
    padding: 12px 14px;
    border-radius: 18px;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
  }

  .logo {
    font-size: 18px;
  }

  .nav-links {
    order: 4;
    width: 100%;
    display: none;
    grid-template-columns: 1fr;
    gap: 8px;
    padding-top: 10px;
  }

  .nav-links a {
    width: 100%;
    padding: 14px 16px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.84);
    font-size: 14px;
  }

  .nav-links a.active,
  .nav-links a:hover {
    background: var(--purple-light);
    color: var(--purple);
  }

  .nav-links a.active::after,
  .nav-links a:hover::after {
    display: none;
  }

  .header-btn {
    display: none;
  }

  .menu-toggle {
    width: 54px;
    height: 54px;
    border: 0;
    border-radius: 18px;
    background: var(--purple);
    color: white;
    display: grid;
    place-items: center;
    font-size: 22px;
    cursor: pointer;
    box-shadow: 0 16px 34px rgba(139, 92, 246, 0.28);
    transition: 0.25s ease;
  }

  .menu-toggle:hover {
    background: var(--black);
    transform: translateY(-2px);
  }

  .site-header.menu-open .nav-links {
    display: grid;
  }

  section {
    margin-top: 42px;
  }

  .section-title {
    font-size: clamp(30px, 10vw, 46px);
    line-height: 1;
    letter-spacing: -0.05em;
  }

  .section-head {
    display: grid;
    gap: 16px;
  }

  .hero {
    padding-top: 54px;
  }

  .hero-title {
    font-size: clamp(42px, 13vw, 58px);
    line-height: 0.94;
  }

  .hero-text {
    margin: 20px 0 24px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
    justify-content: center;
    padding: 15px 20px;
    border-radius: 14px;
    font-size: 14px;
  }

  .hero-mockup {
    max-width: 100%;
  }

  .glow {
    width: 280px;
    height: 280px;
  }

  .about {
    margin-top: 54px;
  }

  .stats {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 28px;
  }

  .stats div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding-bottom: 16px;
  }

  .stats div:last-child {
    border-bottom: 0;
  }

  .services-grid,
  .project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 28px;
  }

  .service-card {
    min-height: auto;
    padding: 18px;
    border-radius: 18px;
  }

  .service-icon {
    width: 38px;
    height: 38px;
    margin-bottom: 18px;
  }

  .service-card h3,
  .project-info h3 {
    font-size: 16px;
    line-height: 1.15;
  }

  .service-card p {
    font-size: 13px;
    line-height: 1.45;
    margin: 12px 0 18px;
  }

  .price {
    font-size: 14px;
  }

  .project-thumb {
    height: 130px;
  }

  .project-info {
    padding: 14px;
  }

  .cta {
    display: grid;
    gap: 24px;
    padding: 30px 22px;
    border-radius: 24px;
  }

  .cta h2 {
    font-size: clamp(30px, 10vw, 44px);
  }

  .cta-orb,
  .cta-star {
    display: none;
  }

  .footer {
    margin-top: 54px;
    padding: 24px 20px;
    border-radius: 22px 22px 0 0;
  }

  .footer-socials {
    flex-wrap: wrap;
  }

  .language-box {
    padding: 28px 22px;
    border-radius: 22px;
  }

  .language-actions {
    display: grid;
  }
}
