/* =========================
   NOVEX - GLOBAL SETUP
========================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap');

:root {
  --bg-main: #050505;
  --bg-soft: #0d0d0d;

  --text-main: #ffffff;
  --text-muted: rgba(255,255,255,0.62);
  --text-soft: rgba(255,255,255,0.42);

  --border-soft: rgba(255,255,255,0.10);
  --border-strong: rgba(255,255,255,0.22);

  --glass: rgba(255,255,255,0.06);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg-main);
  color: var(--text-main);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}


/* =========================
   NAVIGATION
========================= */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 24px 60px;

  background: rgba(5,5,5,0.28);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.logo img {
  height: 42px;
  object-fit: contain;
}

.menu {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);

  display: flex;
  align-items: center;
  gap: 34px;
}

.menu a {
  position: relative;
  text-decoration: none;

  color: rgba(255,255,255,0.72);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 1.4px;
  text-transform: uppercase;

  padding: 10px 0;
  transition: 0.25s ease;
}

.menu a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;

  width: 0;
  height: 1px;

  background: #fff;
  transform: translateX(-50%);
  transition: width 0.25s ease;
}

.menu a:hover,
.menu a.active {
  color: #fff;
}

.menu a:hover::after,
.menu a.active::after {
  width: 58px;
}


/* =========================
   HERO
========================= */

.hero {
  min-height: 100vh;
  background: url("assets/images/hero.png") center/cover no-repeat;

  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;

  background:
    radial-gradient(circle at center, rgba(255,255,255,0.08), transparent 35%),
    rgba(0,0,0,0.35);
}

.hero-content {
  position: relative;
  z-index: 2;

  text-align: center;
  transform: translateY(40px);
}

.hero-title {
  width: clamp(380px, 55vw, 980px);
  height: auto;
  margin: 0 auto;
}

.hero-subtitle {
  max-width: 620px;
  margin: 0 auto 34px;

  color: rgba(255,255,255,0.78);
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: 0.4px;
}

.buttons {
  display: flex;
  justify-content: center;
}

.btn {
  display: inline-block;
  text-decoration: none;
}

.primary {
  position: relative;
  overflow: hidden;

  background: var(--glass);
  border: 1px solid var(--border-soft);

  color: white;

  border-radius: 10px;
  padding: 18px 42px;

  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 1.4px;
  text-transform: uppercase;

  backdrop-filter: blur(10px);
  transition: 0.3s ease;
}

.primary:hover {
  background: rgba(255,255,255,0.13);
  border-color: rgba(255,255,255,0.42);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255,255,255,0.08);
}

.scroll-down {
  position: absolute;
  left: 50%;
  bottom: calc(70px + env(safe-area-inset-bottom));
  transform: translateX(-50%);
  z-index: 3;

  width: 54px;
  height: 54px;

  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.08);
  color: white;

  font-size: 2rem;
  cursor: pointer;

  backdrop-filter: blur(10px);
  transition: 0.3s ease;
  animation: softBounce 2s ease-in-out infinite;
}

.scroll-down:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.75);
}

@keyframes softBounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(8px);
  }
}


/* =========================
   SECTION BASE
========================= */

section {
  padding: clamp(90px, 10vw, 150px) 20px;
  background: var(--bg-main);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.work,
.contact {
  background: var(--bg-soft);
}

.section-container {
  max-width: 1160px;
  margin: 0 auto;
  text-align: center;
}

.section-label {
  display: inline-block;

  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.76rem;
  font-weight: 500;

  margin-bottom: 18px;
}

.section-container h2 {
  max-width: 820px;
  margin: 0 auto;

  font-size: clamp(2.4rem, 5vw, 5rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -2px;
}

.section-intro {
  max-width: 680px;
  margin: 26px auto 70px;

  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
}


/* =========================
   SERVICES
========================= */

.service-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;

  max-width: 760px;
  margin: 0 auto 70px;
}

.service-stats div {
  padding: 22px;
  border-top: 1px solid var(--border-soft);
}

.service-stats strong {
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 8px;
}

.service-stats span {
  color: var(--text-soft);
  font-size: 0.9rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card {
  min-height: 330px;

  padding: 34px 24px;
  text-align: left;

  border-left: 1px solid rgba(255,255,255,0.08);
  border-top: 1px solid rgba(255,255,255,0.12);

  background: transparent;
  transition: 0.35s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-top-color: var(--border-strong);
}

.service-number {
  display: inline-block;

  color: var(--text-soft);
  font-size: 0.85rem;
  letter-spacing: 2px;

  margin-bottom: 90px;
}

.service-card h3 {
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 16px;
}

.service-card p {
  color: var(--text-muted);
  line-height: 1.7;
}

.service-card ul {
  list-style: none;
  margin-top: 28px;
}

.service-card li {
  color: rgba(255,255,255,0.72);
  margin-bottom: 12px;
  font-size: 0.92rem;
}

.service-card li::before {
  content: "✦";
  margin-right: 10px;
  color: white;
}

.services-cta {
  margin-top: 64px;
  text-align: center;
}

.services-cta p {
  color: var(--text-soft);
  margin-bottom: 22px;
}


/* =========================
   WORK / CASES
========================= */

.work-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: center;

  margin-top: 70px;
  padding: 34px 0;

  border-top: 1px solid var(--border-soft);
}

.work-content {
  text-align: left;
}

.work-tag {
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
}

.work-content h3 {
  margin-top: 18px;

  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 500;
  letter-spacing: -1.5px;
}

.work-content p {
  margin-top: 22px;

  color: var(--text-muted);
  line-height: 1.8;
}

.work-content ul {
  list-style: none;
  margin-top: 28px;
}

.work-content li {
  margin-bottom: 12px;
  color: rgba(255,255,255,0.72);
}

.work-content li::before {
  content: "✦";
  margin-right: 10px;
}

.work-link {
  display: inline-block;
  margin-top: 32px;

  color: white;
  text-decoration: none;

  border-bottom: 1px solid rgba(255,255,255,0.4);
  padding-bottom: 6px;

  transition: 0.25s ease;
}

.work-link:hover {
  border-color: white;
}

.work-preview {
  overflow: hidden;
  border: 1px solid var(--border-soft);
}

.work-preview img {
  width: 100%;
  display: block;
}


/* =========================
   PRICES
========================= */

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;

  margin-top: 70px;
}

.price-card {
  min-height: 430px;

  padding: 34px 24px;
  text-align: left;

  border-left: 1px solid rgba(255,255,255,0.08);
  border-top: 1px solid rgba(255,255,255,0.12);

  background: transparent;
  transition: 0.35s ease;
}

.price-card:hover {
  transform: translateY(-6px);
  border-top-color: var(--border-strong);
}

.price-card.featured {
  border-top-color: rgba(255,255,255,0.34);
}

.price-tag {
  display: inline-block;

  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.72rem;

  margin-bottom: 36px;
}

.price-card h3 {
  font-size: 1.45rem;
  font-weight: 500;
  margin-bottom: 18px;
}

.price {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 32px;
}

.price-card ul {
  list-style: none;
}

.price-card li {
  color: var(--text-muted);
  margin-bottom: 14px;
  line-height: 1.5;
}

.price-card li::before {
  content: "✦";
  margin-right: 10px;
  color: white;
}


/* =========================
   ABOUT
========================= */

.about-layout {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 80px;
  align-items: start;

  text-align: left;
}

.about-left h2 {
  font-size: clamp(2.4rem, 5vw, 5rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -2px;
}

.about-right p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 26px;
}

.about-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;

  margin-top: 34px;
}

.about-points span {
  padding: 12px 18px;

  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-soft);

  color: rgba(255,255,255,0.78);
  font-size: 0.9rem;
}


/* =========================
   CONTACT
========================= */

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: start;

  text-align: left;
}

.contact-left h2 {
  font-size: clamp(2.4rem, 5vw, 5rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -2px;
}

.contact-left p {
  margin-top: 26px;

  color: var(--text-muted);
  line-height: 1.8;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;

  margin-top: 34px;
  color: rgba(255,255,255,0.78);
}

.contact-form {
  padding: 34px 0;
  border-top: 1px solid var(--border-soft);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-bottom: 14px;

  padding: 16px 18px;

  border-radius: 8px;
  border: 1px solid var(--border-soft);
  background: rgba(255,255,255,0.04);

  color: white;
  font-family: inherit;
  outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--text-soft);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(255,255,255,0.42);
}

.contact-form button {
  width: 100%;
  margin-top: 10px;
}


/* =========================
   FOOTER
========================= */

.footer-container {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 0.6fr 0.7fr;
  gap: 70px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-column h4 {
  color: rgba(255,255,255,0.45);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.footer-column a {
  color: rgba(255,255,255,0.62);
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-column a:hover {
  color: white;
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}


/* =========================
   MOBILE MENU FIX
========================= */

.menu-toggle {
  display: none;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.menu-toggle span {
  position: absolute;
  left: 50%;
  width: 18px;
  height: 1.5px;
  background: white;
  transition: 0.3s ease;
}

.menu-toggle span:first-child {
  top: 18px;
  transform: translateX(-50%);
}

.menu-toggle span:last-child {
  top: 27px;
  transform: translateX(-50%);
}

@media (max-width: 768px) {
  .nav {
    padding: 20px 24px;
  }

  .logo img {
    height: 36px;
  }

  .menu {
    display: none;
  }

  .menu.open {
  padding-top: 85px;
  position: fixed;
  inset: 0;
  z-index: 9998;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 22px;

  padding-top: 50px;

  background: rgba(5,5,5,0.98);
  backdrop-filter: blur(24px);

  transform: none;
  animation: menuFadeIn 0.35s ease forwards;
  } 

  .menu.open a {
  width: min(320px, 80vw);
  padding: 18px 0;

  text-align: center;
  font-size: 1rem;
  letter-spacing: 2.5px;

  border-bottom: 1px solid rgba(255,255,255,0.08);
  transform: translateY(35px);
  }

  .menu.open a::after {
   display: none;
  }

  .menu-toggle {
  display: block;
  position: fixed;
  top: 18px;
  right: 22px;
  z-index: 9999;

  width: 46px;
  height: 46px;

  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.035);
  border-radius: 50%;

  backdrop-filter: blur(12px);
}

  .menu-toggle.open span:first-child {
    top: 26px;
    transform: translateX(-50%) rotate(45deg);
  }

  .menu-toggle.open span:last-child {
    top: 26px;
    transform: translateX(-50%) rotate(-45deg);
  }

  .hero-title {
    width: 82vw;
  }

  .services-grid,
  .price-grid,
  .service-stats,
  .work-card,
  .about-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

.hero-content,
.scroll-down {
  transition: opacity 0.35s ease, transform 0.35s ease;
}

body.menu-is-open .hero-content {
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}

body.menu-is-open .scroll-down {
  opacity: 0;
  pointer-events: none;
}

.menu-toggle.open span:first-child,
.menu-toggle.open span:last-child {
  top: 23px;
}

@keyframes menuFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.logo {
  position: relative;
  z-index: 10000;
}

@media (min-width: 769px) {
  body.menu-is-open .hero-content,
  body.menu-is-open .scroll-down {
    opacity: 1;
    pointer-events: auto;
  }

  .menu {
    display: flex;
  }
}

.prices-cta {
  margin-top: 70px;
  text-align: center;
}

.prices-cta p {
  color: var(--text-muted);
  margin-bottom: 24px;
  font-size: 1rem;
}


@media (max-width: 768px) {
  .menu.open {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;

  height: min(620px, 86vh);
  z-index: 9998;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;

  background: rgba(5, 5, 5, 0.96);
  backdrop-filter: blur(26px);
  -webkit-backdrop-filter: blur(26px);

  border-bottom: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 30px 80px rgba(0,0,0,0.45);
}

  body.menu-is-open .hero-content,
  body.menu-is-open .scroll-down {
    opacity: 1;
  }
}

.scroll-down {
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll-down span {
  width: 14px;
  height: 14px;
  border-right: 1.5px solid white;
  border-bottom: 1.5px solid white;
  transform: rotate(45deg) translate(-2px, -2px);
}

/* =========================
   LEGAL PAGES
========================= */

.legal-page {
  padding: 150px 20px 70px;
}

.legal-page .section-container {
  max-width: 820px;
  text-align: left;
}

.legal-page h1 {
  font-size: clamp(2.5rem, 5vw, 5rem);
  margin-bottom: 40px;
  letter-spacing: -2px;
}

.legal-page p,
.legal-page li {
  color: var(--text-muted);
  line-height: 1.9;
  font-size: 1rem;
}

.legal-page ul {
  margin: 24px 0 34px 20px;
}

.legal-back {
  text-decoration: none;
  color: rgba(255,255,255,0.72);
  font-size: 0.8rem;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  transition: 0.25s ease;
}

.legal-back:hover {
  color: #fff;
}

body.legal-body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body.legal-body .legal-page {
  flex: 1;
}

.copyright {
  margin-top: 32px;

  color: rgba(255,255,255,0.32);
  font-size: 0.78rem;
  line-height: 1.6;
}

/* FOOTER OVERRIDE */

.footer {
  background: #000;
  padding: 80px 20px 45px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-container {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.8fr;
  gap: 80px;
  align-items: start;
}

.footer-brand img {
  height: 44px;
  width: auto;
}

.footer-brand p {
  max-width: 460px;
  margin-top: 26px;
  color: rgba(255,255,255,0.52);
  line-height: 1.8;
}

.copyright {
  margin-top: 36px;
  color: rgba(255,255,255,0.30);
  font-size: 0.78rem;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-column h4 {
  color: rgba(255,255,255,0.40);
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.footer-column a {
  color: rgba(255,255,255,0.62);
  text-decoration: none;
  font-size: 0.9rem;
  transition: 0.25s ease;
}

.footer-column a:hover {
  color: #fff;
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 42px;
  }
}

.legal-footer {
  display: block;
}

.legal-footer .footer-brand {
  max-width: 520px;
}