@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&family=Poppins:wght@300;400;500;600;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-padding-top: 110px;
}

section {
  scroll-margin-top: 120px;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(
    circle at center,
    #1a0026 10%,
    #0a0420 50%,
    #02000a 90%
  );
  z-index: -1;
}

.skip-link {
  position: absolute;
  top: -50px;
  left: 20px;
  z-index: 2000;
  padding: 12px 18px;
  background: #05c7f2;
  color: #000;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  text-decoration: none;
  border-radius: 12px;
}

.skip-link:focus {
  top: 20px;
}

.star {
  position: absolute;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  box-shadow:
    0 0 6px rgba(255, 255, 255, 0.9),
    0 0 12px rgba(128, 0, 255, 0.6),
    0 0 20px rgba(255, 0, 255, 0.4);
  animation: twinkle 4s infinite alternate ease-in-out;
  z-index: 0;
  pointer-events: none;
}

#comets {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.comet {
  position: absolute;
  width: 2px;
  border-radius: 999px;
  opacity: 0.9;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 1),
    rgba(255, 255, 255, 0)
  );
  box-shadow:
    0 0 6px rgba(255, 255, 255, 0.9),
    0 0 12px rgba(15, 211, 255, 0.3);
  transform: rotate(145deg);
  pointer-events: none;
}

header,
#home,
.services-section,
.portfolio-section,
.about-section,
.pricing-section,
.pricing-details-section,
.contact-section,
.portfolio-page,
.portfolio-hero,
.portfolio-slider-section,
.privacy-section,
.footer {
  position: relative;
  z-index: 2;
}

@keyframes twinkle {
  0% {
    opacity: 0.3;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1.2);
  }
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* HEADER + NAV */

header {
  position: sticky;
  top: 20px;
  z-index: 1000;
  display: flex;
  justify-content: center;
  padding: 0 20px;
}

.navbar {
  display: flex;
  gap: 6px;
  padding: 10px;
  background: rgba(3, 3, 12, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  position: relative;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow:
    0 10px 26px rgba(0, 0, 0, 0.28),
    0 0 24px rgba(56, 102, 242, 0.06);
  overflow-x: auto;
  scrollbar-width: none;
}

.navbar::-webkit-scrollbar {
  display: none;
}

.nav-indicator {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 120px;
  height: calc(100% - 20px);
  background: linear-gradient(
    90deg,
    rgba(111, 4, 217, 0.95) 0%,
    rgba(27, 2, 115, 0.95) 25%,
    rgba(56, 102, 242, 0.95) 55%,
    rgba(5, 151, 242, 0.95) 78%,
    rgba(5, 199, 242, 0.95) 100%
  );
  border-radius: 16px;
  transition:
    left 0.4s ease,
    width 0.4s ease;
  box-shadow:
    0 4px 18px rgba(15, 211, 255, 0.25),
    0 0 28px rgba(252, 70, 194, 0.12);
  z-index: 1;
  pointer-events: none;
}

.nav-link {
  min-width: 104px;
  padding: 6px 24px;
  border-radius: 50px;
  color: rgba(255, 255, 255, 0.74);
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-size: 0.93rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
  position: relative;
  z-index: 2;
  transition:
    color 0.3s ease,
    background 0.3s ease,
    opacity 0.3s ease;
}

.nav-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.035);
}

.nav-link.active {
  color: #fff;
}

.nav-link-textonly {
  min-width: 96px;
}

.nav-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.nav-link:hover .nav-icon {
  transform: scale(1.08);
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 10px;
  padding: 0 10px;
}

.lang {
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.35);
  transition:
    color 0.3s ease,
    background 0.3s ease;
  padding: 4px 6px;
}

.lang:hover {
  color: #fff;
}

.lang.active {
  color: #fff;
  background: rgba(5, 199, 242, 0.15);
  border-radius: 6px;
  box-shadow: 0 0 10px rgba(5, 199, 242, 0.25);
}

.lang-divider {
  color: rgba(255, 255, 255, 0.25);
}

.lang::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0%;
  height: 2px;
  background: #05c7f2;
  transition: width 0.3s ease;
}

.lang:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  background: rgba(5, 5, 15, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 1.7rem;
  line-height: 1;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  cursor: pointer;
  z-index: 1101;
  box-shadow:
    0 0 14px rgba(5, 199, 242, 0.16),
    0 0 28px rgba(111, 4, 217, 0.12);
}

.menu-toggle:hover {
  border-color: rgba(5, 199, 242, 0.45);
  box-shadow:
    0 0 18px rgba(5, 199, 242, 0.25),
    0 0 34px rgba(111, 4, 217, 0.18);
}

/* HERO */

#home {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 70px;
  padding: 110px 60px 0;
  max-width: 1400px;
  margin: 0 auto;
  min-height: 100vh;
}

.first {
  transform: translateY(-40px);
}

.intro-text {
  font-family: "Montserrat", sans-serif;
  color: #fff;
  text-align: left;
  font-size: 5rem;
  font-weight: 800;
  line-height: 1.05;
  margin: 0;
}

.hero-title {
  display: inline-block;
  margin: 20px 0 0;
  font-family: "Poppins", sans-serif;
  text-align: left;
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.2;
  background: linear-gradient(
    90deg,
    rgba(111, 4, 217, 1) 0%,
    rgba(56, 102, 242, 1) 50%,
    rgba(5, 151, 242, 1) 75%,
    rgba(5, 199, 242, 1) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.whatido {
  font-family: "Poppins", sans-serif;
  text-align: left;
  margin-top: 20px;
  font-size: 1.15rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.82);
  max-width: 620px;
  line-height: 1.8;
}

.profile-pic {
  width: 600px;
  flex-shrink: 0;
}

.profile-pic img {
  width: 100%;
  height: auto;
  display: block;
  animation: float 7s ease-in-out infinite;
}

/* BUTTON */

.contact-btn {
  display: inline-block;
  margin-top: 30px;
  padding: 15px 30px;
  min-width: 220px;
  max-width: 100%;
  font-family: "Poppins", sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  text-align: center;
  background: linear-gradient(
    90deg,
    rgba(111, 4, 217, 1) 0%,
    rgba(27, 2, 115, 1) 25%,
    rgba(56, 102, 242, 1) 50%,
    rgba(5, 151, 242, 1) 75%,
    rgba(5, 199, 242, 1) 100%
  );
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  box-shadow:
    0 0 10px rgba(15, 211, 255, 0.5),
    0 0 25px rgba(252, 70, 194, 0.3);
  position: relative;
  overflow: hidden;
}

.contact-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow:
    0 0 20px rgba(15, 211, 255, 0.8),
    0 0 40px rgba(252, 70, 194, 0.6);
}

.contact-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.35),
    transparent
  );
  transition: left 0.6s ease;
}

.contact-btn:hover::before {
  left: 100%;
}

/* SECTIONS */

.services-section {
  max-width: 1200px;
  margin: -40px auto 0;
  padding: 0 40px 100px;
}

.portfolio-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px;
}

.about-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 140px 40px 120px;
}

.pricing-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 40px 120px;
}

.pricing-details-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 40px 120px;
}

.contact-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 140px 40px 120px;
}

.section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 40px;
}

.section-label {
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(142, 162, 255, 0.7);
  margin-bottom: 12px;
}

.section-heading h2,
.about-content h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 2.8rem;
  color: #fff;
  margin-bottom: 16px;
}

.section-text {
  font-family: "Poppins", sans-serif;
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.75);
}

/* SERVICES */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card,
.pricing-card,
.pricing-details-card,
.about-info-card,
.contact-form-card,
.contact-info-card,
.privacy-card {
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.service-card,
.pricing-card {
  border-radius: 24px;
  padding: 32px 26px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.service-card {
  min-height: 260px;
}

.service-card::before,
.pricing-card::before,
.pricing-details-card::before,
.about-info-card::before,
.contact-form-card::before,
.contact-info-card::before,
.privacy-card::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  pointer-events: none;
}

.service-card::before,
.pricing-card::before {
  border-radius: 24px;
  background: linear-gradient(
    90deg,
    rgba(111, 4, 217, 0.7) 0%,
    rgba(27, 2, 115, 0.7) 25%,
    rgba(56, 102, 242, 0.7) 50%,
    rgba(5, 151, 242, 0.7) 75%,
    rgba(5, 199, 242, 0.7) 100%
  );
}

.pricing-details-card::before,
.about-info-card::before,
.contact-form-card::before,
.contact-info-card::before,
.privacy-card::before {
  background: linear-gradient(
    120deg,
    rgba(111, 4, 217, 0.45),
    rgba(56, 102, 242, 0.55),
    rgba(5, 199, 242, 0.45)
  );
}

.service-card::before,
.pricing-card::before,
.pricing-details-card::before,
.about-info-card::before,
.contact-form-card::before,
.contact-info-card::before,
.privacy-card::before {
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.service-card:hover,
.pricing-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow:
    0 10px 30px rgba(6, 133, 255, 0.12),
    0 0 20px rgba(15, 211, 255, 0.08);
}

.service-icon,
.pricing-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 22px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #fff;
  background: linear-gradient(
    135deg,
    rgba(111, 4, 217, 0.9),
    rgba(56, 102, 242, 0.9),
    rgba(5, 199, 242, 0.9)
  );
  box-shadow:
    0 0 18px rgba(15, 211, 255, 0.18),
    0 0 30px rgba(252, 70, 194, 0.08);
}

.service-card h3,
.pricing-card h3,
.pricing-details-card h3 {
  font-family: "Montserrat", sans-serif;
  color: #fff;
  margin-bottom: 14px;
}

.service-card h3 {
  font-size: 1.35rem;
}

.service-card p,
.pricing-intro,
.pricing-details-text {
  font-family: "Poppins", sans-serif;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  font-weight: 300;
}

.service-card p {
  font-size: 0.98rem;
}

/* PORTFOLIO */

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.portfolio-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 280px;
  background: rgba(255, 255, 255, 0.03);
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.5),
    0 0 10px rgba(5, 151, 242, 0.08);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
  text-decoration: none;
  color: inherit;
  display: block;
}

.portfolio-card-link {
  position: absolute;
  inset: 0;
  z-index: 5;
  border-radius: 20px;
}

.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6) contrast(1.05);
  transition:
    transform 0.4s ease,
    filter 0.4s ease;
}

.portfolio-card-light img {
  filter: brightness(0.68) contrast(1.08);
}

.portfolio-card-graphic img {
  filter: brightness(0.65) contrast(1.08);
}

.card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
  color: #fff;
  padding: 24px 24px 26px;
  z-index: 2;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.75),
    rgba(0, 0, 0, 0.2),
    transparent
  );
  transition: background 0.4s ease;
}

.card-overlay h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.45rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.card-overlay p {
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 16px;
}

.portfolio-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow:
    0 20px 50px rgba(5, 151, 242, 0.25),
    0 0 40px rgba(111, 4, 217, 0.2);
}

.portfolio-card:hover img {
  filter: brightness(0.95) contrast(1.1);
  transform: scale(1.05);
}

.portfolio-card-light:hover img {
  filter: brightness(0.8) contrast(1.1);
}

.portfolio-card-graphic:hover img {
  filter: brightness(0.76) contrast(1.12);
}

.portfolio-card:hover .card-overlay {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.4),
    rgba(0, 0, 0, 0.1),
    transparent
  );
}

.portfolio-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(
    120deg,
    rgba(111, 4, 217, 0.35),
    rgba(56, 102, 242, 0.55),
    rgba(5, 199, 242, 0.35)
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 3;
}

.card-line {
  position: absolute;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  width: 62%;
  height: 3px;
  border-radius: 999px;
  overflow: hidden;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(5, 199, 242, 0.18) 20%,
    rgba(56, 102, 242, 0.28) 50%,
    rgba(5, 199, 242, 0.18) 80%,
    transparent 100%
  );
  box-shadow:
    0 0 6px rgba(5, 199, 242, 0.2),
    0 0 14px rgba(56, 102, 242, 0.12);
  z-index: 4;
}

.card-line::before {
  content: "";
  position: absolute;
  top: 0;
  left: -30%;
  width: 28%;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.95),
    #7defff,
    #05c7f2,
    transparent
  );
  box-shadow:
    0 0 10px rgba(5, 199, 242, 0.8),
    0 0 20px rgba(56, 102, 242, 0.45);
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-card:hover .card-line::before {
  transform: translateX(360%);
}

.portfolio-card::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 40px;
  background: radial-gradient(ellipse, rgba(5, 151, 242, 0.25), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.portfolio-card:hover::after {
  opacity: 1;
}

/* ABOUT */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image-wrap {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.about-image-circle {
  position: relative;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  padding: 6px;
  background: linear-gradient(
    135deg,
    rgba(111, 4, 217, 1),
    rgba(56, 102, 242, 1),
    rgba(5, 199, 242, 1)
  );
  box-shadow:
    0 0 40px rgba(15, 211, 255, 0.6),
    0 0 100px rgba(111, 4, 217, 0.35),
    0 0 160px rgba(5, 199, 242, 0.15);
  transition: box-shadow 0.3s ease;
  transform: translateX(-40px);
}

.about-image-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.about-image-circle::after {
  content: "";
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(94, 180, 255, 0.25),
    transparent 70%
  );
  z-index: -1;
}

.about-image-circle:hover {
  box-shadow:
    0 0 40px rgba(15, 211, 255, 0.6),
    0 0 80px rgba(111, 4, 217, 0.4);
}

.about-content {
  padding-left: 10px;
}

.about-text {
  font-family: "Poppins", sans-serif;
  font-size: 1.02rem;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 18px;
  max-width: 620px;
}

.about-points {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-point {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.about-check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(
    135deg,
    rgba(111, 4, 217, 0.9),
    rgba(56, 102, 242, 0.9),
    rgba(5, 199, 242, 0.9)
  );
  box-shadow:
    0 0 10px rgba(5, 199, 242, 0.22),
    0 0 18px rgba(111, 4, 217, 0.12);
}

.about-point p {
  font-family: "Poppins", sans-serif;
  font-size: 0.96rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
}

.about-info-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(2, minmax(200px, 1fr));
  gap: 16px;
  max-width: 500px;
}

.about-info-card {
  padding: 20px;
  border-radius: 18px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.about-info-card::before {
  border-radius: 18px;
}

.about-info-label {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(142, 162, 255, 0.7);
  margin-bottom: 6px;
}

.about-info-card strong {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  color: #fff;
}

.about-cta {
  margin-top: 40px;
}

/* PRICING */

.pricing-grid,
.pricing-details-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pricing-card {
  display: flex;
  flex-direction: column;
}

.pricing-card-featured {
  box-shadow:
    0 0 24px rgba(5, 199, 242, 0.12),
    0 0 44px rgba(111, 4, 217, 0.08);
}

.pricing-card h3 {
  font-size: 1.5rem;
}

.pricing-intro {
  font-size: 0.98rem;
  margin-bottom: 22px;
}

.pricing-list,
.pricing-details-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
}

.pricing-list {
  margin-bottom: 28px;
}

.pricing-list li,
.pricing-details-list li {
  position: relative;
  padding-left: 28px;
  font-family: "Poppins", sans-serif;
  line-height: 1.7;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.82);
}

.pricing-list li {
  font-size: 0.96rem;
}

.pricing-details-list li {
  font-size: 0.95rem;
}

.pricing-list li::before,
.pricing-details-list li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  transform: translateY(-50%);
  background: linear-gradient(
    135deg,
    rgba(111, 4, 217, 1),
    rgba(56, 102, 242, 1),
    rgba(5, 199, 242, 1)
  );
  box-shadow:
    0 0 10px rgba(5, 199, 242, 0.35),
    0 0 18px rgba(111, 4, 217, 0.18);
}

.pricing-price {
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
}

.pricing-note {
  font-family: "Poppins", sans-serif;
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.68);
  margin-bottom: 22px;
}

.pricing-btn {
  display: block;
  margin: auto auto 0;
}

.pricing-extra {
  max-width: 850px;
  margin: 36px auto 0;
  text-align: center;
}

.pricing-details-card {
  border-radius: 24px;
  padding: 30px 26px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.pricing-details-card::before {
  border-radius: 24px;
}

.pricing-details-card h3 {
  font-size: 1.35rem;
  margin-bottom: 16px;
}

.pricing-details-text {
  font-size: 0.96rem;
  margin-bottom: 22px;
}

/* CONTACT */

.contact-intro {
  max-width: 850px;
  margin: 0 auto;
}

.contact-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 28px;
  align-items: stretch;
}

.contact-form-card,
.contact-info-card {
  border-radius: 28px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.contact-form-card::before,
.contact-info-card::before {
  border-radius: 28px;
}

.contact-form {
  padding: 34px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  margin-bottom: 12px;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
}

.input-wrap {
  position: relative;
}

.textarea-wrap .input-icon {
  top: 18px;
  transform: none;
}

.input-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.9;
  pointer-events: none;
}

.input-icon svg {
  width: 20px;
  height: 20px;
  stroke: rgba(120, 180, 255, 0.8);
  transition:
    stroke 0.3s ease,
    filter 0.3s ease;
}

.input-wrap:focus-within .input-icon svg {
  stroke: #05c7f2;
  filter: drop-shadow(0 0 6px rgba(5, 199, 242, 0.6));
}

.input-wrap input,
.input-wrap textarea {
  width: 100%;
  border: 1px solid rgba(94, 180, 255, 0.28);
  border-radius: 18px;
  background: rgba(8, 8, 20, 0.45);
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  outline: none;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.input-wrap input:hover,
.input-wrap textarea:hover {
  border-color: rgba(5, 199, 242, 0.4);
}

.input-wrap input {
  height: 64px;
  padding: 0 18px 0 56px;
}

.input-wrap textarea {
  resize: vertical;
  min-height: 150px;
  padding: 18px;
}

.input-wrap input::placeholder,
.input-wrap textarea::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.input-wrap input:focus,
.input-wrap textarea:focus {
  border-color: rgba(5, 199, 242, 0.75);
  box-shadow:
    0 0 12px rgba(5, 199, 242, 0.18),
    0 0 24px rgba(111, 4, 217, 0.08);
  background: rgba(10, 10, 24, 0.62);
}

.contact-form .contact-btn {
  margin-top: 10px;
}

.contact-info-card {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.contact-info-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 0 30px rgba(5, 199, 242, 0.15),
    0 0 60px rgba(111, 4, 217, 0.1);
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 10px;
}

.contact-info-item:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-info-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: linear-gradient(
    135deg,
    rgba(111, 4, 217, 0.9),
    rgba(56, 102, 242, 0.9),
    rgba(5, 199, 242, 0.9)
  );
  box-shadow:
    0 0 14px rgba(5, 199, 242, 0.22),
    0 0 26px rgba(111, 4, 217, 0.12);
}

.contact-info-icon svg {
  width: 24px;
  height: 24px;
  stroke: #fff;
  flex-shrink: 0;
}

.contact-info-text span {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 0.88rem;
  color: rgba(142, 162, 255, 0.78);
  margin-bottom: 4px;
}

.contact-info-text strong {
  font-family: "Montserrat", sans-serif;
  font-size: 1.1rem;
  color: #fff;
  font-weight: 600;
}

.contact-info-text a {
  color: #fff;
  text-decoration: none;
}

.contact-info-text a:hover,
.contact-info-text a:focus-visible {
  text-decoration: underline;
}

.form-status {
  margin-top: 18px;
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  min-height: 24px;
  color: rgba(255, 255, 255, 0.85);
}

.form-status.success {
  color: #7defff;
}

.form-status.error {
  color: #ff8fb1;
}

/* HELPERS */

.fade-in-section {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.fade-in-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.portfolio-button-wrap {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.scroll-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 58px;
  height: 58px;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(111, 4, 217, 0.95),
    rgba(56, 102, 242, 0.95),
    rgba(5, 199, 242, 0.95)
  );
  color: #fff;
  cursor: pointer;
  box-shadow:
    0 0 18px rgba(5, 199, 242, 0.28),
    0 0 34px rgba(111, 4, 217, 0.18);
  z-index: 1200;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px) scale(0.92);
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.scroll-to-top svg {
  width: 26px;
  height: 26px;
  stroke-width: 3;
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.scroll-to-top:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow:
    0 0 24px rgba(5, 199, 242, 0.45),
    0 0 42px rgba(111, 4, 217, 0.28);
}

.scroll-to-top:hover svg {
  filter: drop-shadow(0 0 6px rgba(5, 199, 242, 0.8));
}

.nav-link:focus-visible,
.contact-btn:focus-visible,
input:focus-visible,
textarea:focus-visible,
a:focus-visible,
.scroll-to-top:focus-visible {
  outline: 2px solid #05c7f2;
  outline-offset: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* PRIVACY */

.privacy-page {
  min-height: 100vh;
  color: #e5e7eb;
}

.privacy-page h1,
.privacy-page h2 {
  color: #fff;
  font-family: "Montserrat", sans-serif;
}

.privacy-section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 140px 24px 100px;
}

.privacy-card {
  margin-top: 40px;
  padding: 36px 30px;
  border-radius: 24px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.privacy-card::before {
  border-radius: 24px;
}

.privacy-card h2 {
  font-size: 1.5rem;
  color: #fff;
  margin: 32px 0 14px;
}

.privacy-card h2:first-child {
  margin-top: 0;
}

.privacy-card p,
.privacy-card li {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.82);
}

.privacy-card ul {
  margin: 12px 0 0 22px;
}

.privacy-card a {
  color: #7defff;
  text-decoration: none;
}

.privacy-card a:hover,
.privacy-card a:focus-visible {
  text-decoration: underline;
}

.privacy-updated {
  margin-top: 36px;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.6);
}

/* FOOTER */

.footer {
  margin-top: 80px;
  padding: 30px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 5, 20, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer p {
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #05c7f2;
}

/* LARGE SCREENS */

@media (min-width: 1600px) {
  #home {
    max-width: 1200px;
    gap: 50px;
    padding-top: 90px;
  }

  .intro-text {
    font-size: 4rem;
  }

  .hero-title {
    font-size: 2.4rem;
  }

  .whatido {
    font-size: 1rem;
    max-width: 520px;
  }

  .profile-pic {
    width: 480px;
  }
}

/* TABLET */

@media (max-width: 1100px) {
  #home {
    gap: 50px;
    padding: 100px 50px 40px;
  }

  .intro-text {
    font-size: 4rem;
  }

  .hero-title {
    font-size: 2.4rem;
  }

  .profile-pic {
    width: 460px;
  }

  .services-grid,
  .portfolio-grid,
  .about-grid,
  .contact-grid,
  .pricing-grid,
  .pricing-details-grid {
    grid-template-columns: 1fr;
  }

  .about-info-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-content {
    padding-left: 0;
    text-align: center;
  }

  .about-image-wrap {
    justify-content: center;
  }

  .about-image-circle {
    width: 300px;
    height: 300px;
    transform: none;
  }

  .contact-info-card {
    gap: 0;
  }
}

/* MOBILE */

@media (max-width: 820px) {
  .profile-pic img {
    animation: none;
  }
  header {
    position: fixed;
    top: 20px;
    left: 0;
    width: 100%;
    justify-content: flex-start;
    padding: 0 20px;
  }

  .navbar {
    position: relative;
    width: auto;
    min-width: 0;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    overflow: visible;
  }

  .nav-indicator {
    display: none !important;
  }

  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav-link,
  .lang-switch {
    display: none;
  }

  .navbar.open {
    position: absolute;
    top: 0;
    left: 0;
    width: 280px;
    padding: 22px 18px 18px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    background: rgba(5, 5, 15, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    box-shadow:
      0 20px 50px rgba(0, 0, 0, 0.45),
      0 0 28px rgba(56, 102, 242, 0.08);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }

  .navbar.open .menu-toggle {
    align-self: flex-start;
    margin-bottom: 10px;
  }

  .navbar.open .nav-link {
    display: flex;
    width: 100%;
    min-width: 0;
    justify-content: flex-start;
    padding: 12px 14px;
    border-radius: 14px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.88);
    background: transparent;
  }

  .navbar.open .nav-link:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
  }

  .navbar.open .nav-link.active {
    background: rgba(5, 199, 242, 0.12);
    color: #fff;
    box-shadow: inset 0 0 0 1px rgba(5, 199, 242, 0.45);
  }

  .navbar.open .nav-icon {
    width: 18px;
    height: 18px;
  }

  .navbar.open .lang-switch {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    margin-left: 0;
    margin-top: 8px;
    padding: 10px 14px 4px;
    width: 100%;
  }

  .navbar.open .lang {
    padding: 4px 6px;
    font-size: 0.9rem;
  }

  .navbar.open .lang.active {
    background: rgba(5, 199, 242, 0.15);
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(5, 199, 242, 0.2);
  }

  #home {
    flex-direction: column;
    text-align: center;
    padding: 120px 24px 40px;
    min-height: auto;
    gap: 30px;
  }

  .first {
    transform: translateY(0);
  }

  .intro-text,
  .hero-title,
  .whatido {
    text-align: center;
  }

  .intro-text {
    font-size: 3rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .whatido {
    font-size: 1rem;
  }

  .profile-pic {
    width: 320px;
  }

  .contact-btn {
    min-width: 200px;
    font-size: 1rem;
  }

  .services-section,
  .portfolio-section,
  .about-section,
  .pricing-section,
  .pricing-details-section,
  .contact-section {
    padding-left: 24px;
    padding-right: 24px;
  }

  .services-section {
    padding-bottom: 80px;
  }

  .portfolio-section,
  .about-section,
  .pricing-section,
  .pricing-details-section,
  .contact-section {
    padding-top: 90px;
    padding-bottom: 80px;
  }

  .section-heading h2,
  .about-content h2 {
    font-size: 2.2rem;
  }

  .card-overlay h3 {
    font-size: 1.2rem;
  }

  .card-overlay p {
    font-size: 0.85rem;
  }

  .contact-form {
    padding: 24px;
  }

  .contact-info-card {
    padding: 20px;
  }

  .contact-info-item {
    align-items: flex-start;
  }

  .contact-info-text strong {
    font-size: 1rem;
  }

  .scroll-to-top {
    right: 18px;
    bottom: 18px;
    width: 52px;
    height: 52px;
  }

  .scroll-to-top svg {
    width: 22px;
    height: 22px;
  }

  .pricing-card,
  .pricing-details-card {
    padding: 26px 22px;
  }

  .pricing-card h3,
  .pricing-details-card h3 {
    font-size: 1.25rem;
  }

  .pricing-price {
    font-size: 1.7rem;
  }

  .pricing-list li,
  .pricing-details-list li,
  .pricing-details-text,
  .privacy-card p,
  .privacy-card li {
    font-size: 0.94rem;
  }

  .privacy-section {
    padding: 120px 20px 80px;
  }

  .privacy-card {
    padding: 26px 20px;
  }

  .privacy-card h2 {
    font-size: 1.25rem;
  }

  .footer-content {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* REDUCED MOTION */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .star,
  .profile-pic img,
  .fade-in-section,
  .nav-indicator,
  .portfolio-card,
  .contact-btn,
  .scroll-to-top svg,
  .card-line::before {
    animation: none !important;
    transition: none !important;
  }

  .fade-in-section {
    opacity: 1;
    transform: none;
  }
}
