@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;;
}

html , body {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  color: #111;
  background: #fff;
  line-height: 1.6;
}

/* Layout utility */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: transparent;
  color: #fff;
  z-index: 999;
  transition: background .35s ease, backdrop-filter .35s ease;
}

.nav.nav-bg {
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(8px);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav .logo {
  font-weight: 700;
}

.nav .logo img {
  width: 280px;
  height: auto;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 28px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.35s;
}

.nav-links a:hover{
  color: #4049cc;
}

.nav-toggle {
  display: none;
  font-size: 1.6rem;
  cursor: pointer;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    background: #111;
    width: 200px;
    flex-direction: column;
    padding: 14px 0;
    display: none;
  }

  .nav-links li {
    padding: 10px 20px;
  }

  .nav-links.show {
    display: flex;
  }
}


/* Hero */
.hero {
  background: linear-gradient(rgba(0, 0, 0, .55), rgba(0, 0, 0, .55)),
    url('images/header.png') center/cover no-repeat;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 0 5%;
}

.hero-content h1 {
  color: #fff;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
}

.hero-content p {
  color: #eee;
  margin: 18px 0 30px;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  gap: 12px;
}

.btn {
  padding: 12px 32px;
  background: #fff;
  color: #111;
  text-decoration: none;
  font-weight: 600;
  border: none;
}

.btn.outline {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}

/* Section headings */
section h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 30px;
}

/* About */
.about {
  padding: 120px 5%;
  background: #0b0b0b;
  color: #fff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 80px;
  align-items: center;
}

.about-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 20px;
}

.about-text p {
  margin-bottom: 14px;
  max-width: 620px;
  color: #e3e3e3;
}

.about-badges {
  margin-top: 34px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.about-badges span {
  border: 1px solid #2f2f2f;
  padding: 10px 18px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(4px);
  transition: border .25s, background .25s;
}

.about-badges span:hover {
  border: 1px solid #fff;
  background: rgba(255, 255, 255, 0.12);
}

/* Image frame with depth, no childish effects */
.about-media {
  position: relative;
}

.media-frame {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid #2f2f2f;
  transform: translateY(0);
  transition: transform .4s ease, box-shadow .4s ease;
}

.media-frame:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.55);
}

.media-frame img {
  width: 100%;
  display: block;
  object-fit: cover;
  filter: grayscale(20%);
  transition: filter .4s ease, transform .4s ease;
}

.media-frame:hover img {
  filter: grayscale(0%);
  transform: scale(1.04);
}

/* Responsive */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}


/* Services */
.services {
  padding: 120px 5%;
  background: #0f0f0f;
  color: #fff;
}

.services h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 50px;
}

.service-grid {
  display: grid;
  gap: 40px;
  /* grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); */

}

/* Card with depth, clean motion */
.service-card {
  background: #151515;
  border: 1px solid #262626;
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: border .25s, transform .35s ease, box-shadow .35s ease;
}

.service-card:hover {
  border: 1px solid #4049cc;
  transform: translateY(-6px);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.55);
}

/* Image reveal */
.card-media {
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 20px;
}

.card-media img {
  width: 120px;
  height: auto;
  display: block;
  object-fit: cover;
  filter: invert();
  transform: scale(1);
  transition: filter .35s ease, transform .35s ease;
}

.service-card:hover .card-media img {
  /* filter: grayscale(0); */
  transform: scale(1.06);
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-weight: 600;
  color: #fff;
}

.service-card p {
  color: #cfcfcf;
  line-height: 1.5;
}

/* Motion stagger (no JS) */
.service-card {
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp .6s forwards;
}

.service-card:nth-child(1) {
  animation-delay: .05s;
}

.service-card:nth-child(2) {
  animation-delay: .15s;
}

.service-card:nth-child(3) {
  animation-delay: .25s;
}

.service-card:nth-child(4) {
  animation-delay: .35s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* Process */
.process {
  padding: 140px 5%;
  background: #000;
  color: #fff;
}

.process h2 {
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  font-weight: 700;
  margin-bottom: 60px;
}

.process-grid {
  display: grid;
  gap: 38px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Minimal brutalist geometry */
.process-card {
  position: relative;
  background: #0e0e0e;
  border: 1px solid #2a2a2a;
  padding: 32px;
  overflow: hidden;
  transition: border .25s, transform .35s ease, box-shadow .35s ease;
}

.process-card:hover {
  border: 1px solid #4049cc;
  transform: translateY(-6px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.65);
}

/* Step number as a fixed, large typographic anchor */
.step-count {
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1;
  display: block;
  margin-bottom: 14px;
  opacity: .09;
  transition: opacity .35s , color 0.35s;
}

.process-card:hover .step-count {
  opacity: 1;
  color: #4049cc;
}

.process-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.process-card p {
  color: #cfcfcf;
  line-height: 1.5;
  max-width: 300px;
}

/* Subtle background motion plane (no neon, no cheap gradients) */
.process-card::after {
  content: "";
  position: absolute;
  top: -30%;
  right: -30%;
  width: 200px;
  height: 200px;
  background: radial-gradient(rgba(255, 255, 255, 0.05), transparent 70%);
  transform: scale(0);
  transition: transform .45s ease;
}

.process-card:hover::after {
  transform: scale(1);
}

/* Staggered appearance without JS */
.process-card {
  opacity: 0;
  transform: translateY(24px);
  animation: rise .55s forwards cubic-bezier(.16, .8, .32, 1);
}

.process-card:nth-child(1) {
  animation-delay: .05s
}

.process-card:nth-child(2) {
  animation-delay: .15s
}

.process-card:nth-child(3) {
  animation-delay: .25s
}

.process-card:nth-child(4) {
  animation-delay: .35s
}

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* Why */
.why {
  padding: 140px 5%;
  background: #0b0b0b;
  color: #fff;
}

.why h2 {
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  font-weight: 700;
  margin-bottom: 60px;
}

.why-grid {
  display: grid;
  gap: 38px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.why-card {
  position: relative;
  background: #111;
  border: 1px solid #262626;
  padding: 34px;
  transition: border .25s, transform .35s ease, box-shadow .35s ease;
  overflow: hidden;
}

.why-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.why-card p {
  color: #cfcfcf;
  line-height: 1.5;
  max-width: 260px;
}

.why-card:hover {
  border: 1px solid #4049cc;
  transform: translateY(-6px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.65);
}

/* Subtle geometric flare, no gradients */
.why-card::after {
  content: "";
  position: absolute;
  bottom: -25%;
  left: -15%;
  width: 240px;
  height: 240px;
  background: radial-gradient(rgba(255, 255, 255, 0.05), transparent 70%);
  transform: scale(0);
  transition: transform .45s ease;
}

.why-card:hover::after {
  transform: scale(1);
}

/* Staggered entrance */
.why-card {
  opacity: 0;
  transform: translateY(24px);
  animation: riseWhy .55s forwards cubic-bezier(.16, .8, .32, 1);
}

.why-card:nth-child(1) {
  animation-delay: .05s
}

.why-card:nth-child(2) {
  animation-delay: .15s
}

.why-card:nth-child(3) {
  animation-delay: .25s
}

.why-card:nth-child(4) {
  animation-delay: .35s
}

.why-card:nth-child(5) {
  animation-delay: .45s
}

@keyframes riseWhy {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* Contact */
.contact {
  padding: 160px 5%;
  background: #000;
  color: #fff;
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 90px;
  align-items: start;
}

.contact-text h2 {
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 12px;
}

.contact-text p {
  color: #cfcfcf;
  margin-bottom: 22px;
}

.contact-info span {
  font-weight: 600;
  border: 1px solid #232323;
  padding: 12px 18px;
  display: inline-block;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(3px);
}

/* Form: brutalist geometry, motion on hover, no childish UI */
.contact-form {
  display: grid;
  gap: 14px;
  opacity: 0;
  transform: translateY(24px);
  animation: riseContact .55s forwards cubic-bezier(.16, .8, .32, 1);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px;
  border: 1px solid #232323;
  background: #0f0f0f;
  color: #fff;
  transition: border .25s, background .25s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border: 1px solid #fff;
  background: #151515;
  outline: none;
}

.contact-form button {
  padding: 16px;
  border: 1px solid #fff;
  background: #fff;
  color: #000;
  font-weight: 700;
  cursor: pointer;
  transition: transform .3s ease, box-shadow .3s ease;
}

.contact-form button:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(255, 255, 255, 0.1);
}

/* Accent flare, no neon */
.contact-form::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  top: -20%;
  right: -10%;
  background: radial-gradient(rgba(255, 255, 255, 0.04), transparent 70%);
  pointer-events: none;
}

@media (max-width: 1024px) {
  .contact-wrap {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

/* Entrance motion */
@keyframes riseContact {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* Footer */
.footer {
  background: #000;
  padding: 90px 6% 20px;;
  position: relative;
  color: #fff;
  overflow: hidden;
}

/* depth lighting */
.footer::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  left: -120px;
  bottom: -120px;
  background: radial-gradient(rgba(255, 255, 255, 0.06), transparent 60%);
  filter: blur(12px);
  pointer-events: none;
}

/* glass fracture overlay */
.footer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.04), transparent 50%);
  mix-blend-mode: overlay;
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .6fr 1fr;
  align-items: center;
  gap: 40px;
}

.footer-col.brand img {
  width: 280px;
  height: auto;
}

.footer-col h3 {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: .5px;
  margin-bottom: 10px;
}

.footer-col p {
  color: #cfcfcf;
}

.footer-col.links {
  display: flex;
  gap: 12px;
}

.footer-col.links a {
  color: #e6e6e6;
  font-weight: 600;
  border-bottom: 1px solid transparent;
  width: fit-content;
  transition: border .25s, opacity .25s;
}

.footer-col.links a:hover {
  border-bottom: 1px solid #fff;
  opacity: .8;
}

.footer-col.copy {
  text-align: right;
  color: #b8b8b8;
  font-size: .9rem;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .footer-col.copy {
    text-align: left;
    margin-top: 25px;
  }
}


.small-hero {
  min-height: 40vh;
  justify-content: center;
}

.privacy {
  padding: 80px 5%;
  background: #fafafa;
  line-height: 1.7;
  font-size: 1rem;
}


@media screen and (max-width: 992px) {
  .btn {
    padding: 12px 15px;
  }
}




.popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(12px);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .45s cubic-bezier(.18,.8,.32,1);
  z-index: 9999;
}

/* visible state */
.popup.show {
  opacity: 1;
  pointer-events: auto;
}

.popup-frame {
  width: 100%;
  max-width: 520px;
  perspective: 1400px;
}

.popup-panel {
  background: #0b0b0b;
  border: 1px solid #1a1a1a;
  padding: 46px;
  color: #fff;
  transform: rotateX(-16deg) translateY(40px);
  opacity: 0;
  animation: panelIn .6s forwards cubic-bezier(.16,.78,.32,1);
  position: relative;
  overflow: hidden;
}

/* lighting sweep */
.popup-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(255,255,255,0.06), transparent 60%);
  mix-blend-mode: overlay;
  pointer-events: none;
  opacity: 0;
  animation: sweep 1.2s .35s forwards ease-out;
}

/* subtle noise texture */
.popup-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAB…') repeat;
  opacity: .04;
  pointer-events: none;
}

.popup-panel h3 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.popup-panel p {
  color: #c4c4c4;
  margin-bottom: 26px;
}

.popup-fields {
  display: grid;
  gap: 14px;
}

.popup-fields input,
.popup-fields textarea {
  width: 100%;
  padding: 16px;
  background: #000;
  border: 1px solid #232323;
  color: #fff;
  font-size: 0.95rem;
  transition: border .25s, background .25s;
}

.popup-fields input:focus,
.popup-fields textarea:focus {
  border: 1px solid #fff;
  background: #111;
  outline: none;
}

.popup-fields button {
  padding: 16px;
  background: #fff;
  color: #000;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: transform .35s, box-shadow .35s;
}

.popup-fields button:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(255,255,255,0.12);
}

/* close button */
.popup-close {
  position: absolute;
  top: 12px;
  right: 18px;
  font-size: 28px;
  cursor: pointer;
  color: #666;
  transition: color .2s;
}

.popup-close:hover {
  color: #fff;
}

/* motion */
@keyframes panelIn {
  to {
    opacity: 1;
    transform: rotateX(0deg) translateY(0);
  }
}

@keyframes sweep {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@media(max-width:600px) {
  .popup-panel {
    padding: 32px;
  }
}
