:root {
  --color-primary-black: #0e0e10;
  --color-secondary-navy: #0a1a33;
  --color-accent-blue: #2979ff;
  --color-highlight-neutral: #b5b5b5;
  --font-family-sans: "Inter", "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-family-sans);
  background-color: var(--color-primary-black);
  color: var(--color-highlight-neutral);
  -webkit-font-smoothing: antialiased;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid rgba(181, 181, 181, 0.1);
  transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem 2rem;
}

.nav__logo-link {
  display: inline-flex;
  align-items: center;
}

.nav__logo-image {
  display: block;
  height: 38px;
  width: auto;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-left: 2.5rem;
}

.nav__link {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
  transition: color 0.2s ease;
  position: relative;
  padding-bottom: 0.35rem;
}

.nav__link:hover,
.nav__link:focus-visible {
  color: var(--color-accent-blue);
}

.nav__link--active {
  color: #ffffff;
}

.nav__link::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(
    135deg,
    rgba(41, 121, 255, 0),
    rgba(41, 121, 255, 0.65),
    rgba(41, 121, 255, 0)
  );
  opacity: 0;
  transform: scaleX(0.6);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav__link:hover::after,
.nav__link:focus-visible::after,
.nav__link--active::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav__socials {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav__icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  color: rgba(255, 255, 255, 0.82);
  transition: color 0.2s ease, transform 0.2s ease;
}

.nav__icon {
  width: 1.25rem;
  height: 1.25rem;
  fill: currentColor;
}

.nav__icon-link:hover,
.nav__icon-link:focus-visible {
  color: var(--color-accent-blue);
  transform: translateY(-1px);
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 1.25rem;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-weight: 500;
  font-size: 0.9rem;
  background: transparent;
  transition: border-color 0.2s ease, background-color 0.2s ease;
  white-space: nowrap;
}

.nav__cta:hover,
.nav__cta:focus-visible {
  border-color: rgba(41, 121, 255, 0.65);
  background: linear-gradient(
    135deg,
    rgba(41, 121, 255, 0.12),
    rgba(41, 121, 255, 0.28)
  );
  box-shadow: 0 0 24px rgba(41, 121, 255, 0.22);
}

/* Hamburger Menu */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 101;
  position: relative;
  outline: none;
}

.nav__hamburger:focus {
  outline: none;
}

.nav__hamburger:focus-visible {
  outline: 2px solid var(--color-accent-blue);
  outline-offset: 2px;
}

.nav__hamburger-line {
  width: 100%;
  height: 2px;
  background: var(--color-accent-blue);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
  position: absolute;
}

.nav__hamburger-line:nth-child(1) {
  top: 15%;
}

.nav__hamburger-line:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.nav__hamburger-line:nth-child(3) {
  bottom: 15%;
}

.nav__hamburger--active .nav__hamburger-line:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.nav__hamburger--active .nav__hamburger-line:nth-child(2) {
  opacity: 0;
  transform: translateY(-50%) scale(0);
}

.nav__hamburger--active .nav__hamburger-line:nth-child(3) {
  bottom: auto;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

/* Mobile Menu */
.nav__mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(14, 14, 16, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 100;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 6rem 2rem 3rem;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}

.nav__mobile-menu--active {
  transform: translateX(0);
}

.nav__mobile-links {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}

.nav__mobile-link {
  font-size: 1.5rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s ease, transform 0.2s ease;
  padding: 0.5rem 0;
  position: relative;
}

.nav__mobile-link:hover,
.nav__mobile-link:focus-visible {
  color: var(--color-accent-blue);
  transform: translateX(8px);
}

.nav__mobile-link--active {
  color: #ffffff;
}

.nav__mobile-link--active::before {
  content: "";
  position: absolute;
  left: -1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 60%;
  background: var(--color-accent-blue);
  border-radius: 2px;
}

.nav__mobile-footer {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: auto;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.nav__mobile-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border-radius: 8px;
  border: 2px solid rgba(41, 121, 255, 0.5);
  color: #ffffff;
  font-weight: 600;
  font-size: 1rem;
  background: linear-gradient(
    135deg,
    rgba(41, 121, 255, 0.12),
    rgba(41, 121, 255, 0.28)
  );
  transition: all 0.2s ease;
  text-align: center;
}

.nav__mobile-cta:hover,
.nav__mobile-cta:focus-visible {
  border-color: rgba(41, 121, 255, 0.8);
  background: linear-gradient(
    135deg,
    rgba(41, 121, 255, 0.2),
    rgba(41, 121, 255, 0.35)
  );
  box-shadow: 0 0 30px rgba(41, 121, 255, 0.4);
  transform: translateY(-2px);
}

.nav__mobile-socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.nav__mobile-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s ease, transform 0.2s ease;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.nav__mobile-icon-link:hover,
.nav__mobile-icon-link:focus-visible {
  color: var(--color-accent-blue);
  transform: translateY(-2px);
  background: rgba(41, 121, 255, 0.1);
  border-color: rgba(41, 121, 255, 0.3);
}

.nav__mobile-icon {
  width: 1.25rem;
  height: 1.25rem;
  fill: currentColor;
}

@media (max-width: 960px) {
  .nav {
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.5rem;
  }

  .nav__hamburger {
    display: flex;
  }

  .nav__links {
    display: none;
  }

  .nav__actions {
    display: none;
  }
}

@media (max-width: 640px) {
  .nav {
    padding: 0.875rem 1rem;
  }

  .nav__logo {
    margin-top: 0.5rem;
  }

  .nav__logo-image {
    height: 32px;
  }

  .nav__hamburger {
    width: 1.75rem;
    height: 1.75rem;
    margin-right: 0.5rem;
  }

  .nav__mobile-menu {
    padding: 5rem 1.5rem 2rem;
  }

  .nav__mobile-links {
    gap: 1.5rem;
  }

  .nav__mobile-link {
    font-size: 1.25rem;
  }

  .nav__mobile-footer {
    gap: 1.5rem;
    padding-top: 2rem;
  }

  .nav__mobile-cta {
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
  }

  .nav__mobile-socials {
    gap: 1.25rem;
  }

  .nav__mobile-icon-link {
    width: 2.25rem;
    height: 2.25rem;
  }

  .nav__mobile-icon {
    width: 1.125rem;
    height: 1.125rem;
  }
}

[data-section] {
  scroll-margin-top: 96px;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 2rem;
  padding-bottom: 6rem;
  background: var(--color-primary-black);
}

.hero__background {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 1) 60%,
    rgba(0, 0, 0, 0.9) 75%,
    rgba(0, 0, 0, 0.6) 85%,
    rgba(0, 0, 0, 0.2) 95%,
    rgba(0, 0, 0, 0) 100%
  );
  -webkit-mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 1) 60%,
    rgba(0, 0, 0, 0.9) 75%,
    rgba(0, 0, 0, 0.6) 85%,
    rgba(0, 0, 0, 0.2) 95%,
    rgba(0, 0, 0, 0) 100%
  );
}

/* Animated Earth-like element */
.hero__earth {
  position: absolute;
  left: 50%;
  top: 45%;
  transform: translate(-50%, -50%);
  width: 60vw;
  height: 60vw;
  max-width: 800px;
  max-height: 800px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 30% 40%,
    rgba(41, 121, 255, 0.25) 0%,
    rgba(10, 26, 51, 0.4) 30%,
    rgba(14, 14, 16, 0.6) 60%,
    var(--color-primary-black) 100%
  );
  box-shadow: 
    0 0 80px rgba(41, 121, 255, 0.2),
    inset -100px -50px 200px rgba(41, 121, 255, 0.12),
    inset 100px 50px 200px rgba(10, 26, 51, 0.25);
  animation: rotateEarth 60s linear infinite;
  filter: blur(1px);
  opacity: 0.7;
}

/* City lights effect on Earth */
.hero__earth::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background-image: 
    radial-gradient(circle at 25% 35%, rgba(41, 121, 255, 0.5) 1px, transparent 1px),
    radial-gradient(circle at 45% 50%, rgba(41, 121, 255, 0.4) 1px, transparent 1px),
    radial-gradient(circle at 60% 30%, rgba(41, 121, 255, 0.45) 1px, transparent 1px),
    radial-gradient(circle at 35% 60%, rgba(41, 121, 255, 0.35) 1px, transparent 1px),
    radial-gradient(circle at 70% 55%, rgba(41, 121, 255, 0.4) 1px, transparent 1px),
    radial-gradient(circle at 50% 25%, rgba(41, 121, 255, 0.45) 1px, transparent 1px);
  background-size: 20% 20%, 15% 15%, 18% 18%, 12% 12%, 16% 16%, 14% 14%;
  background-position: 25% 35%, 45% 50%, 60% 30%, 35% 60%, 70% 55%, 50% 25%;
  animation: twinkle 3s ease-in-out infinite alternate;
}

@keyframes rotateEarth {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes twinkle {
  from {
    opacity: 0.6;
  }
  to {
    opacity: 1;
  }
}

/* Concentric rings */
.hero__rings {
  position: absolute;
  left: 50%;
  top: 45%;
  transform: translate(-50%, -50%);
  width: 60vw;
  height: 60vw;
  max-width: 800px;
  max-height: 800px;
}

.hero__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(41, 121, 255, 0.1);
  background-image: radial-gradient(
    circle,
    transparent 48%,
    rgba(41, 121, 255, 0.06) 49%,
    rgba(41, 121, 255, 0.06) 51%,
    transparent 52%
  );
  background-size: 4px 4px;
  animation: rotateRing 40s linear infinite;
  opacity: 0.6;
}

.hero__ring--1 {
  animation-duration: 50s;
  animation-direction: reverse;
}

.hero__ring--2 {
  width: 120%;
  height: 120%;
  top: -10%;
  left: -10%;
  animation-duration: 60s;
}

.hero__ring--3 {
  width: 140%;
  height: 140%;
  top: -20%;
  left: -20%;
  animation-duration: 70s;
  animation-direction: reverse;
}

@keyframes rotateRing {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Stars background */
.hero__stars {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(2px 2px at 20% 30%, rgba(255, 255, 255, 0.2), transparent),
    radial-gradient(1px 1px at 40% 70%, rgba(255, 255, 255, 0.25), transparent),
    radial-gradient(1px 1px at 60% 20%, rgba(255, 255, 255, 0.2), transparent),
    radial-gradient(2px 2px at 80% 50%, rgba(255, 255, 255, 0.15), transparent),
    radial-gradient(1px 1px at 30% 80%, rgba(255, 255, 255, 0.2), transparent),
    radial-gradient(1px 1px at 70% 10%, rgba(255, 255, 255, 0.25), transparent),
    radial-gradient(2px 2px at 50% 60%, rgba(255, 255, 255, 0.15), transparent);
  background-size: 200% 200%;
  animation: twinkleStars 8s ease-in-out infinite alternate;
  opacity: 0.7;
}

@keyframes twinkleStars {
  from {
    opacity: 0.5;
  }
  to {
    opacity: 1;
  }
}

/* Gradient circles */
.hero__gradient-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.4;
  animation: pulseGradient 8s ease-in-out infinite;
}

.hero__gradient-circle--top-right {
  top: -10%;
  right: -5%;
  width: 380px;
  height: 380px;
  background: radial-gradient(
    circle,
    rgba(41, 121, 255, 0.6) 0%,
    rgba(41, 121, 255, 0.3) 40%,
    transparent 70%
  );
  animation-delay: 0s;
}

.hero__gradient-circle--bottom-left {
  bottom: -10%;
  left: -5%;
  width: 420px;
  height: 420px;
  background: radial-gradient(
    circle,
    rgba(41, 121, 255, 0.5) 0%,
    rgba(41, 121, 255, 0.25) 40%,
    transparent 70%
  );
  animation-delay: 2s;
}

@keyframes pulseGradient {
  0%, 100% {
    transform: scale(1);
    opacity: 0.4;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.6;
  }
}

/* Hero Content */
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 2rem;
  text-align: center;
}

.hero__heading {
  font-size: clamp(2.25rem, 7vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin: 0 auto 2rem auto;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}

.hero__heading-line {
  display: block;
}

.hero__heading-accent {
  color: var(--color-accent-blue);
  background: linear-gradient(135deg, var(--color-accent-blue), rgba(41, 121, 255, 0.8));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(41, 121, 255, 0.5);
}

.hero__subheading {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--color-highlight-neutral);
  margin: 0 auto 3rem auto;
  font-weight: 400;
  line-height: 1.6;
  max-width: 600px;
}

.hero__subheading-accent {
  color: var(--color-accent-blue);
  font-weight: 600;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  border-radius: 8px;
  background: var(--color-accent-blue);
  color: #ffffff;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(41, 121, 255, 0.3);
  border: 2px solid transparent;
  margin: 0 auto;
}

.hero__cta:hover,
.hero__cta:focus-visible {
  background: rgba(41, 121, 255, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(41, 121, 255, 0.4);
  border-color: rgba(41, 121, 255, 0.5);
}

.hero__cta:active {
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 960px) {
  .hero {
    min-height: 90vh;
    padding: 1.5rem;
  }

  .hero__earth {
    width: 80vw;
    height: 80vw;
    opacity: 0.6;
  }

  .hero__rings {
    width: 80vw;
    height: 80vw;
    opacity: 0.5;
  }

  .hero__gradient-circle--top-right {
    width: 250px;
    height: 250px;
  }

  .hero__gradient-circle--bottom-left {
    width: 300px;
    height: 300px;
  }

  .hero__content {
    padding: 2rem 1rem;
    text-align: center;
  }

  .hero__heading {
    text-align: center;
  }

  .hero__subheading {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 85vh;
  }

  .hero__earth {
    width: 100vw;
    height: 100vw;
    opacity: 0.4;
  }

  .hero__rings {
    width: 100vw;
    height: 100vw;
    opacity: 0.3;
  }

  .hero__gradient-circle--top-right {
    width: 200px;
    height: 200px;
  }

  .hero__gradient-circle--bottom-left {
    width: 230px;
    height: 230px;
  }

  .hero__heading {
    gap: 0.25rem;
  }

  .hero__cta {
    width: 100%;
    max-width: 300px;
  }
}

/* Work Section */
.work {
  position: relative;
  padding: 6rem 2rem;
  background: var(--color-primary-black);
  overflow: hidden;
}

.work__background {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.3) 10%,
    rgba(0, 0, 0, 0.7) 25%,
    rgba(0, 0, 0, 1) 40%,
    rgba(0, 0, 0, 1) 100%
  );
  -webkit-mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.3) 10%,
    rgba(0, 0, 0, 0.7) 25%,
    rgba(0, 0, 0, 1) 40%,
    rgba(0, 0, 0, 1) 100%
  );
}

/* Gradient circles for work section */
.work__gradient-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.4;
  animation: pulseGradient 8s ease-in-out infinite;
}

.work__gradient-circle--top-right {
  top: 5%;
  right: -5%;
  width: 380px;
  height: 380px;
  background: radial-gradient(
    circle,
    rgba(41, 121, 255, 0.6) 0%,
    rgba(41, 121, 255, 0.3) 40%,
    transparent 70%
  );
  animation-delay: 1s;
}

.work__gradient-circle--bottom-left {
  bottom: 5%;
  left: -5%;
  width: 420px;
  height: 420px;
  background: radial-gradient(
    circle,
    rgba(41, 121, 255, 0.5) 0%,
    rgba(41, 121, 255, 0.25) 40%,
    transparent 70%
  );
  animation-delay: 3s;
}

.work__container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.work__heading {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 4rem 0;
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  white-space: nowrap;
}

.work__heading-icon {
  color: var(--color-accent-blue);
  font-size: 1.2em;
  font-weight: 400;
  flex-shrink: 0;
}

.work__heading-text {
  white-space: nowrap;
}

.work__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.work__card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.work__card:hover {
  transform: translateY(-4px);
  border-color: rgba(41, 121, 255, 0.3);
  box-shadow: 0 8px 32px rgba(41, 121, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
}

.work__card-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: rgba(10, 26, 51, 0.5);
  position: relative;
}

.work__card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.work__card-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: rgba(41, 121, 255, 0.9);
  border: 2px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0;
  z-index: 10;
  backdrop-filter: blur(10px);
}

.work__card-image:hover .work__card-play-btn {
  opacity: 1;
}

.work__card-play-btn:hover {
  background: rgba(41, 121, 255, 1);
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 0 30px rgba(41, 121, 255, 0.6);
}

.work__play-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: #ffffff;
  margin-left: 0.2rem;
}

.work__card-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(41, 121, 255, 0.1) 0%,
    rgba(10, 26, 51, 0.3) 50%,
    rgba(41, 121, 255, 0.1) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.work__card-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(41, 121, 255, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(41, 121, 255, 0.15) 0%, transparent 50%);
  opacity: 0.6;
}

.work__card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.work__card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
}

.work__card-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
}

.work__card-tech {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.work__tech-badge {
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.25rem 0.75rem;
  background: rgba(41, 121, 255, 0.15);
  border: 1px solid rgba(41, 121, 255, 0.3);
  border-radius: 4px;
  color: var(--color-accent-blue);
}

.work__card-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-highlight-neutral);
  margin: 0;
  flex: 1;
}

.work__card-links {
  display: flex;
  gap: 1.5rem;
  margin-top: auto;
  padding-top: 0.5rem;
}

.work__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-accent-blue);
  transition: all 0.2s ease;
  text-decoration: none;
}

.work__link:hover,
.work__link:focus-visible {
  color: #ffffff;
  transform: translateX(2px);
}

.work__link-icon {
  width: 1rem;
  height: 1rem;
  transition: transform 0.2s ease;
}

.work__link:hover .work__link-icon,
.work__link:focus-visible .work__link-icon {
  transform: translateX(2px);
}

/* Video Modal Styles */
.work__video-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.work__video-modal[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
}

.work__video-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(8px);
}

.work__video-modal-content {
  position: relative;
  width: 90%;
  max-width: 1200px;
  max-height: 90vh;
  background: rgba(10, 26, 51, 0.95);
  border: 1px solid rgba(41, 121, 255, 0.3);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transform: scale(0.9);
  transition: transform 0.3s ease;
  z-index: 1001;
}

.work__video-modal[aria-hidden="false"] .work__video-modal-content {
  transform: scale(1);
}

.work__video-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(41, 121, 255, 0.2);
  border: 1px solid rgba(41, 121, 255, 0.4);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 1002;
}

.work__video-modal-close:hover {
  background: rgba(41, 121, 255, 0.4);
  transform: rotate(90deg);
}

.work__video-modal-close svg {
  width: 1.25rem;
  height: 1.25rem;
}

.work__video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: 8px;
}

.work__video-player {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

/* Responsive Design for Work Section */
@media (max-width: 960px) {
  .work {
    padding: 4rem 1.5rem;
  }

  .work__gradient-circle--top-right {
    width: 250px;
    height: 250px;
  }

  .work__gradient-circle--bottom-left {
    width: 300px;
    height: 300px;
  }

  .work__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .work__heading {
    margin-bottom: 3rem;
  }
}

@media (max-width: 640px) {
  .work {
    padding: 3rem 1rem;
    padding-top: 1rem;
  }

  .work__heading {
    font-size: clamp(1.5rem, 6vw, 2rem);
    gap: 0.5rem;
  }

  .work__gradient-circle--top-right {
    width: 200px;
    height: 200px;
  }

  .work__gradient-circle--bottom-left {
    width: 230px;
    height: 230px;
  }

  .work__card-content {
    padding: 1.25rem;
  }

  .work__card-title {
    font-size: 1.25rem;
  }

  .work__card-links {
    flex-direction: column;
    gap: 1rem;
  }
}

/* Services Section */
.services {
  position: relative;
  padding: 6rem 2rem;
  background: var(--color-primary-black);
  overflow: hidden;
}

.services__background {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.3) 10%,
    rgba(0, 0, 0, 0.7) 25%,
    rgba(0, 0, 0, 1) 40%,
    rgba(0, 0, 0, 1) 100%
  );
  -webkit-mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.3) 10%,
    rgba(0, 0, 0, 0.7) 25%,
    rgba(0, 0, 0, 1) 40%,
    rgba(0, 0, 0, 1) 100%
  );
}

/* Gradient circles for services section */
.services__gradient-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.4;
  animation: pulseGradient 8s ease-in-out infinite;
}

.services__gradient-circle--top-left {
  top: 5%;
  left: -5%;
  width: 380px;
  height: 380px;
  background: radial-gradient(
    circle,
    rgba(41, 121, 255, 0.6) 0%,
    rgba(41, 121, 255, 0.3) 40%,
    transparent 70%
  );
  animation-delay: 1s;
}

.services__gradient-circle--bottom-right {
  bottom: 5%;
  right: -5%;
  width: 420px;
  height: 420px;
  background: radial-gradient(
    circle,
    rgba(41, 121, 255, 0.5) 0%,
    rgba(41, 121, 255, 0.25) 40%,
    transparent 70%
  );
  animation-delay: 3s;
}

.services__container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.services__heading {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 4rem 0;
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
}

.services__heading-icon {
  color: var(--color-accent-blue);
  font-size: 1.2em;
  font-weight: 400;
}

.services__primary {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}

.services__secondary {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.services__card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  position: relative;
}

.services__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(41, 121, 255, 0.15) 50%,
    transparent 100%
  );
  transition: left 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
  pointer-events: none;
  opacity: 0;
}


.services__card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(41, 121, 255, 0.6);
  box-shadow: 
    0 20px 60px rgba(41, 121, 255, 0.35),
    0 8px 32px rgba(41, 121, 255, 0.2),
    0 0 0 2px rgba(41, 121, 255, 0.1);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.06),
    rgba(41, 121, 255, 0.03)
  );
}

.services__card:hover::before {
  left: 100%;
  opacity: 1;
}

.services__card--primary {
  width: 100%;
}

.services__card--secondary {
  width: 100%;
  position: relative;
  opacity: 0.85;
}

.services__card--secondary:hover {
  opacity: 1;
}

.services__card-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 0;
}

.services__card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  min-width: 3.5rem;
  background: linear-gradient(
    135deg,
    rgba(41, 121, 255, 0.15),
    rgba(41, 121, 255, 0.25)
  );
  border: 1px solid rgba(41, 121, 255, 0.3);
  border-radius: 12px;
  color: var(--color-accent-blue);
  transition: all 0.3s ease;
}

.services__card-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  stroke: currentColor;
}

.services__card:hover .services__card-icon {
  background: linear-gradient(
    135deg,
    rgba(41, 121, 255, 0.25),
    rgba(41, 121, 255, 0.35)
  );
  border-color: rgba(41, 121, 255, 0.5);
  box-shadow: 0 4px 16px rgba(41, 121, 255, 0.2);
  transform: scale(1.05);
}

.services__card-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  padding: 0.5rem 1rem;
  background: linear-gradient(
    135deg,
    rgba(41, 121, 255, 0.2),
    rgba(41, 121, 255, 0.35)
  );
  border: 1px solid rgba(41, 121, 255, 0.5);
  border-radius: 20px;
  color: var(--color-accent-blue);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 3;
  box-shadow: 0 4px 12px rgba(41, 121, 255, 0.2);
  animation: pulseBadge 2s ease-in-out infinite;
  pointer-events: none;
}

@keyframes pulseBadge {
  0%, 100% {
    box-shadow: 0 4px 12px rgba(41, 121, 255, 0.2);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 4px 16px rgba(41, 121, 255, 0.35);
    transform: scale(1.02);
  }
}

.services__card-content {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  z-index: 2;
}

.services__card-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: #ffffff;
  margin: 0;
  line-height: 1.2;
}

.services__card-description {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-highlight-neutral);
  margin: 0;
}

.services__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.services__feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  transition: all 0.2s ease;
}

.services__feature-item:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(41, 121, 255, 0.2);
  transform: translateX(4px);
}

.services__feature-icon {
  width: 1.25rem;
  height: 1.25rem;
  min-width: 1.25rem;
  margin-top: 0.125rem;
  color: var(--color-accent-blue);
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.services__feature-item span {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--color-highlight-neutral);
  flex: 1;
}

/* Responsive Design for Services Section */
@media (max-width: 960px) {
  .services {
    padding: 4rem 1.5rem;
  }

  .services__gradient-circle--top-left {
    width: 250px;
    height: 250px;
  }

  .services__gradient-circle--bottom-right {
    width: 300px;
    height: 300px;
  }

  .services__secondary {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .services__heading {
    margin-bottom: 3rem;
  }

  .services__primary {
    margin-bottom: 2.5rem;
  }

  .services__card-content {
    padding: 2rem;
  }

  .services__card-header {
    gap: 1rem;
  }

  .services__card-icon {
    width: 3rem;
    height: 3rem;
    min-width: 3rem;
  }

  .services__card-icon svg {
    width: 1.5rem;
    height: 1.5rem;
  }

  .services__card-badge {
    top: 1rem;
    right: 1rem;
    padding: 0.4rem 0.85rem;
    font-size: 0.7rem;
  }

  .services__features {
    gap: 0.875rem;
  }

  .services__feature-item {
    padding: 0.625rem;
  }
}

@media (max-width: 640px) {
  .services {
    padding: 3rem 1rem;
  }

  .services__gradient-circle--top-left {
    width: 200px;
    height: 200px;
  }

  .services__gradient-circle--bottom-right {
    width: 230px;
    height: 230px;
  }

  .services__card-content {
    padding: 1.5rem;
    gap: 1.25rem;
  }

  .services__card-header {
    gap: 0.875rem;
    flex-wrap: wrap;
  }

  .services__card-icon {
    width: 2.75rem;
    height: 2.75rem;
    min-width: 2.75rem;
  }

  .services__card-icon svg {
    width: 1.375rem;
    height: 1.375rem;
  }

  .services__card-badge {
    top: 0.75rem;
    right: 0.75rem;
    padding: 0.35rem 0.75rem;
    font-size: 0.65rem;
  }

  .services__card-title {
    font-size: 1.5rem;
  }

  .services__card-description {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .services__features {
    gap: 0.75rem;
  }

  .services__feature-item {
    padding: 0.625rem;
    font-size: 0.9rem;
  }

  .services__feature-icon {
    width: 1.125rem;
    height: 1.125rem;
    min-width: 1.125rem;
  }

  .services__feature-item span {
    font-size: 0.9rem;
  }
}

/* About Section */
.about {
  position: relative;
  padding: 6rem 2rem;
  background: var(--color-primary-black);
  overflow: hidden;
}

.about__background {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.3) 10%,
    rgba(0, 0, 0, 0.7) 25%,
    rgba(0, 0, 0, 1) 40%,
    rgba(0, 0, 0, 1) 100%
  );
  -webkit-mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.3) 10%,
    rgba(0, 0, 0, 0.7) 25%,
    rgba(0, 0, 0, 1) 40%,
    rgba(0, 0, 0, 1) 100%
  );
}

.about__gradient-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.4;
  animation: pulseGradient 8s ease-in-out infinite;
}

.about__gradient-circle--bottom-left {
  bottom: 5%;
  left: -5%;
  width: 420px;
  height: 420px;
  background: radial-gradient(
    circle,
    rgba(41, 121, 255, 0.5) 0%,
    rgba(41, 121, 255, 0.25) 40%,
    transparent 70%
  );
  animation-delay: 2s;
}

.about__container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.about__main-heading {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 4rem 0;
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
}

.about__heading-icon {
  color: var(--color-accent-blue);
  font-size: 1.2em;
  font-weight: 400;
}

.about__content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

.about__heading {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 400;
  color: #ffffff;
  margin: 0;
  line-height: 1.2;
  white-space: nowrap;
}

.about__text {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about__paragraph {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #ffffff;
  margin: 0;
}

/* Values Heading */
.about__values-heading {
  font-size: 2.25rem;
  font-weight: 700;
  color: #2979ff;
  margin: 5rem 0 2rem 0;
  text-align: center;
  line-height: 1.2;
  letter-spacing: 0.02em;
  display: block;
  text-shadow: 0 0 10px rgba(41, 121, 255, 0.3);
}

/* Values Carousel */
.about__values-carousel {
  overflow: hidden;
  position: relative;
  padding: 2rem 0;
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 5%,
    black 95%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 5%,
    black 95%,
    transparent 100%
  );
}

.about__carousel-track {
  display: flex;
  gap: 1.5rem;
  animation: scrollCarousel 60s linear infinite;
  width: fit-content;
}

@keyframes scrollCarousel {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.about__value-card {
  flex-shrink: 0;
  width: 320px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 1.5rem 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.about__value-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(41, 121, 255, 0.08) 0%,
    rgba(41, 121, 255, 0.03) 50%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.about__value-card:hover {
  transform: translateY(-4px);
  border-color: rgba(41, 121, 255, 0.3);
  box-shadow: 
    0 12px 40px rgba(41, 121, 255, 0.2),
    0 4px 16px rgba(41, 121, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
}

.about__value-card:hover::before {
  opacity: 1;
}

.about__value-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.about__value-icon {
  width: 3rem;
  height: 3rem;
  color: var(--color-accent-blue);
  filter: drop-shadow(0 0 8px rgba(41, 121, 255, 0.4));
  transition: all 0.3s ease;
}

.about__value-card:hover .about__value-icon {
  transform: scale(1.1);
  filter: drop-shadow(0 0 12px rgba(41, 121, 255, 0.6));
}

.about__value-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 0.5rem 0;
  line-height: 1.2;
  transition: color 0.3s ease;
  text-align: center;
}

.about__value-card:hover .about__value-title {
  color: var(--color-accent-blue);
}

.about__value-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
  transition: color 0.3s ease;
  text-align: center;
}

.about__value-card:hover .about__value-description {
  color: rgba(255, 255, 255, 0.9);
}

/* Responsive Design for About Section */
@media (max-width: 960px) {
  .about {
    padding: 4rem 1.5rem;
  }

  .about__main-heading {
    margin-bottom: 3rem;
  }

  .about__content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about__gradient-circle--bottom-left {
    width: 300px;
    height: 300px;
  }

  .about__text {
    gap: 1.5rem;
  }

  .about__values-heading {
    margin: 4rem 0 1.5rem 0;
    font-size: 1.875rem;
  }

  .about__values-carousel {
    padding: 1.5rem 0;
  }

  .about__carousel-track {
    gap: 1.25rem;
  }

  .about__value-card {
    width: 280px;
    padding: 1.25rem 1.75rem;
  }
}

@media (max-width: 640px) {
  .about {
    padding: 3rem 1rem;
  }

  .about__gradient-circle--bottom-left {
    width: 230px;
    height: 230px;
  }

  .about__main-heading {
    margin-bottom: 2.5rem;
  }

  .about__content {
    gap: 2rem;
  }

  .about__heading {
    font-size: 1.75rem;
    white-space: normal;
  }

  .about__paragraph {
    font-size: 1.05rem;
    line-height: 1.7;
  }

  .about__text {
    gap: 1.25rem;
  }

  .about__values-heading {
    margin: 3rem 0 1rem 0;
    font-size: 1.625rem;
  }

  .about__values-carousel {
    padding: 1rem 0;
  }

  .about__carousel-track {
    gap: 1rem;
    animation-duration: 50s;
  }

  .about__value-card {
    width: 260px;
    padding: 1rem 1.5rem;
  }

  .about__value-icon-wrapper {
    margin-bottom: 0.875rem;
  }

  .about__value-icon {
    width: 2.5rem;
    height: 2.5rem;
  }

  .about__value-title {
    font-size: 1.375rem;
    margin-bottom: 0.75rem;
  }

  .about__value-description {
    font-size: 0.9rem;
  }
}

/* Contact Section */
.contact {
  position: relative;
  padding: 6rem 2rem;
  background: var(--color-primary-black);
  overflow: hidden;
}

.contact__background {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.contact__gradient-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.4;
  animation: pulseGradient 8s ease-in-out infinite;
}

.contact__gradient-circle--top-right {
  top: 5%;
  right: -5%;
  width: 380px;
  height: 380px;
  background: radial-gradient(
    circle,
    rgba(41, 121, 255, 0.6) 0%,
    rgba(41, 121, 255, 0.3) 40%,
    transparent 70%
  );
  animation-delay: 1s;
}

.contact__gradient-circle--bottom-left {
  bottom: 5%;
  left: -5%;
  width: 420px;
  height: 420px;
  background: radial-gradient(
    circle,
    rgba(41, 121, 255, 0.5) 0%,
    rgba(41, 121, 255, 0.25) 40%,
    transparent 70%
  );
  animation-delay: 3s;
}

.contact__container {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
}

.contact__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

/* Contact Info Section */
.contact__info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact__heading {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 0.75rem 0;
  line-height: 1.1;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.contact__heading-icon {
  color: var(--color-accent-blue);
  font-size: 1.2em;
  font-weight: 400;
  flex-shrink: 0;
}

.contact__subheading {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  line-height: 1.6;
}

.contact__features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact__feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact__feature-icon {
  flex-shrink: 0;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
}

.contact__feature-icon svg {
  width: 100%;
  height: 100%;
}

.contact__feature-icon--teal {
  background: rgba(41, 121, 255, 0.15);
  color: var(--color-accent-blue);
  border: 1px solid rgba(41, 121, 255, 0.3);
}

.contact__feature-icon--purple {
  background: rgba(41, 121, 255, 0.15);
  color: var(--color-accent-blue);
  border: 1px solid rgba(41, 121, 255, 0.3);
}

.contact__feature-icon--orange {
  background: rgba(41, 121, 255, 0.15);
  color: var(--color-accent-blue);
  border: 1px solid rgba(41, 121, 255, 0.3);
}

.contact__feature-title {
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  line-height: 1.6;
  flex: 1;
}

.contact__footer {
  margin-top: auto;
  padding-top: 1rem;
}

.contact__footer-text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 2rem 0;
}

.contact__logos {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.contact__logo {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  padding: 0.5rem 1rem;
  background: rgba(41, 121, 255, 0.1);
  border: 1px solid rgba(41, 121, 255, 0.3);
  border-radius: 6px;
  transition: all 0.3s ease;
}

.contact__logo:hover {
  background: rgba(41, 121, 255, 0.15);
  border-color: rgba(41, 121, 255, 0.5);
  color: var(--color-accent-blue);
  box-shadow: 0 0 12px rgba(41, 121, 255, 0.2);
}

/* Contact Form Section */
.contact__form-wrapper {
  position: relative;
}

.contact__form {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 3rem;
  position: relative;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.contact__form-logo {
  position: absolute;
  top: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 3rem;
  height: 3rem;
  background: var(--color-primary-black);
  border: 1px solid rgba(41, 121, 255, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent-blue);
  box-shadow: 0 0 20px rgba(41, 121, 255, 0.3);
}

.contact__form-logo svg {
  width: 1.5rem;
  height: 1.5rem;
}

.contact__form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.contact__form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.contact__label {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.contact__required {
  color: var(--color-accent-blue);
  font-weight: 600;
}

.contact__input,
.contact__select,
.contact__textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  color: #ffffff;
  font-size: 0.95rem;
  font-family: inherit;
  transition: all 0.3s ease;
}

/* Fix autofill styling - override browser default white background */
.contact__input:-webkit-autofill,
.contact__input:-webkit-autofill:hover,
.contact__input:-webkit-autofill:focus,
.contact__input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px rgba(255, 255, 255, 0.05) inset !important;
  -webkit-text-fill-color: #ffffff !important;
  background-color: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  transition: background-color 5000s ease-in-out 0s;
}

.contact__input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 30px rgba(255, 255, 255, 0.08) inset, 0 0 0 3px rgba(41, 121, 255, 0.1) !important;
  border-color: rgba(41, 121, 255, 0.5) !important;
}

.contact__input--large {
  padding: 1.125rem 1.25rem;
  font-size: 0.95rem;
}

.contact__input:focus,
.contact__select:focus,
.contact__textarea:focus {
  outline: none;
  border-color: rgba(41, 121, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(41, 121, 255, 0.1);
}

.contact__input::placeholder,
.contact__textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.contact__select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.contact__textarea {
  resize: vertical;
  min-height: 100px;
}

.contact__privacy {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 1.5rem 0;
  line-height: 1.5;
}

.contact__privacy-link {
  color: var(--color-accent-blue);
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact__privacy-link:hover {
  color: #ffffff;
  text-decoration: underline;
}

.contact__submit {
  width: 100%;
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(41, 121, 255, 0.5);
  border-radius: 8px;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(41, 121, 255, 0.2);
  margin-top: 1rem;
}

.contact__submit:hover {
  background: rgba(41, 121, 255, 0.1);
  border-color: rgba(41, 121, 255, 0.8);
  box-shadow: 0 0 30px rgba(41, 121, 255, 0.4);
  transform: translateY(-2px);
}

.contact__submit:active {
  transform: translateY(0);
}

/* Contact Form Success Message */
.contact__success {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(41, 121, 255, 0.3);
  border-radius: 24px;
  padding: 4rem 3rem;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.contact__success-icon {
  width: 5rem;
  height: 5rem;
  margin: 0 auto 2rem;
  background: rgba(41, 121, 255, 0.15);
  border: 2px solid rgba(41, 121, 255, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent-blue);
  animation: successPulse 2s ease-in-out infinite;
}

.contact__success-icon svg {
  width: 2.5rem;
  height: 2.5rem;
  filter: drop-shadow(0 0 12px rgba(41, 121, 255, 0.5));
}

@keyframes successPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(41, 121, 255, 0.4);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 0 20px rgba(41, 121, 255, 0);
    transform: scale(1.05);
  }
}

.contact__success-title {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 1rem 0;
  line-height: 1.2;
}

.contact__success-message {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  line-height: 1.6;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Design for Contact Section */
@media (max-width: 960px) {
  .contact {
    padding: 4rem 1.5rem;
  }

  .contact__content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .contact__info {
    gap: 1.5rem;
  }

  .contact__gradient-circle--top-right {
    width: 250px;
    height: 250px;
  }

  .contact__gradient-circle--bottom-left {
    width: 300px;
    height: 300px;
  }

  .contact__heading {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 0.5rem;
    justify-content: center;
    flex-wrap: nowrap;
    white-space: nowrap;
  }

  .contact__subheading {
    font-size: 1.1rem;
    margin-bottom: 0;
    text-align: center;
  }

  .contact__features {
    gap: 1.25rem;
  }

  .contact__feature {
    gap: 0.875rem;
  }

  .contact__feature-icon {
    width: 3rem;
    height: 3rem;
  }

  .contact__feature-title {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .contact__footer {
    padding-top: 0.75rem;
  }

  .contact__footer-text {
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
  }

  .contact__logos {
    gap: 1.5rem;
  }

  .contact__logo {
    font-size: 0.85rem;
    padding: 0.4rem 0.875rem;
  }

  .contact__form {
    padding: 2.5rem;
  }

  .contact__form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .contact {
    padding: 2.5rem 1rem;
  }

  .contact__content {
    gap: 2rem;
  }

  .contact__gradient-circle--top-right {
    width: 200px;
    height: 200px;
  }

  .contact__gradient-circle--bottom-left {
    width: 230px;
    height: 230px;
  }

  .contact__info {
    gap: 1.25rem;
  }

  .contact__heading {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    justify-content: center;
    flex-wrap: nowrap;
    white-space: nowrap;
    gap: 0.75rem;
  }

  .contact__subheading {
    font-size: 1rem;
    margin-bottom: 0;
    text-align: center;
  }

  .contact__features {
    gap: 1rem;
  }

  .contact__feature {
    gap: 0.75rem;
    align-items: flex-start;
  }

  .contact__feature-icon {
    width: 2.5rem;
    height: 2.5rem;
    flex-shrink: 0;
  }

  .contact__feature-title {
    font-size: 0.875rem;
    line-height: 1.5;
  }

  .contact__footer {
    padding-top: 0.5rem;
    margin-top: 0.5rem;
  }

  .contact__footer-text {
    margin-bottom: 1rem;
    font-size: 0.85rem;
  }

  .contact__logos {
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .contact__logo {
    font-size: 0.8rem;
    padding: 0.35rem 0.75rem;
  }

  .contact__form {
    padding: 1.75rem;
  }

  .contact__form-logo {
    width: 2.5rem;
    height: 2.5rem;
    top: -1.25rem;
  }

  .contact__form-logo svg {
    width: 1.25rem;
    height: 1.25rem;
  }

  .contact__form-group {
    margin-bottom: 1.25rem;
  }

  .contact__label {
    font-size: 0.85rem;
  }

  .contact__input,
  .contact__textarea {
    padding: 0.75rem 0.875rem;
    font-size: 0.9rem;
  }

  .contact__input--large {
    padding: 0.875rem 1rem;
    font-size: 0.9rem;
  }

  .contact__submit {
    padding: 0.875rem 1.5rem;
    font-size: 0.9rem;
  }

  .contact__success {
    padding: 2.5rem 1.5rem;
  }

  .contact__success-icon {
    width: 4rem;
    height: 4rem;
    margin-bottom: 1.5rem;
  }

  .contact__success-icon svg {
    width: 2rem;
    height: 2rem;
  }

  .contact__success-title {
    font-size: 1.5rem;
  }

  .contact__success-message {
    font-size: 0.95rem;
  }
}

/* Footer Styles */
.site-footer {
  position: relative;
  padding: 4rem 2rem 2rem;
  background: var(--color-primary-black);
  border-top: 1px solid rgba(181, 181, 181, 0.1);
  margin-top: 4rem;
}

.footer__background {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.footer__gradient-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.3;
  animation: pulseGradient 8s ease-in-out infinite;
}

.footer__gradient-circle--top-left {
  top: -10%;
  left: -5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(41, 121, 255, 0.5) 0%,
    rgba(41, 121, 255, 0.25) 40%,
    transparent 70%
  );
  animation-delay: 0s;
}

.footer__gradient-circle--bottom-right {
  bottom: -10%;
  right: -5%;
  width: 350px;
  height: 350px;
  background: radial-gradient(
    circle,
    rgba(41, 121, 255, 0.4) 0%,
    rgba(41, 121, 255, 0.2) 40%,
    transparent 70%
  );
  animation-delay: 2s;
}

.footer__container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.footer__content {
  display: grid;
  grid-template-columns: 2fr 2fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
  align-items: start;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 100%;
}

.footer__logo-link {
  display: inline-flex;
  align-items: center;
  transition: opacity 0.2s ease;
}

.footer__logo-link:hover {
  opacity: 0.8;
}

.footer__logo-image {
  display: block;
  height: 38px;
  width: auto;
}

.footer__tagline {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  line-height: 1.6;
}

.footer__links-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.footer__socials {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.footer__socials-title {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 0.5rem 0;
  text-align: left;
}

.footer__socials-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(41, 121, 255, 0.1);
  border: 1px solid rgba(41, 121, 255, 0.2);
  color: rgba(255, 255, 255, 0.82);
  transition: all 0.2s ease;
}

.footer__social-link:hover,
.footer__social-link:focus-visible {
  background: rgba(41, 121, 255, 0.2);
  border-color: rgba(41, 121, 255, 0.4);
  color: var(--color-accent-blue);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(41, 121, 255, 0.2);
}

.footer__social-icon {
  width: 1.25rem;
  height: 1.25rem;
  fill: currentColor;
}

.footer__links-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer__links-title {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
}

.footer__links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__link {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-block;
}

.footer__link:hover,
.footer__link:focus-visible {
  color: var(--color-accent-blue);
  transform: translateX(4px);
}

.footer__bottom {
  margin-top: 2rem;
}

.footer__divider {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(181, 181, 181, 0.2) 20%,
    rgba(181, 181, 181, 0.2) 80%,
    transparent 100%
  );
  margin-bottom: 2rem;
}

.footer__bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer__copyright {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.footer__legal {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer__legal-link {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s ease;
}

.footer__legal-link:hover,
.footer__legal-link:focus-visible {
  color: var(--color-accent-blue);
}

.footer__legal-separator {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
}

/* Footer Responsive Design */
@media (max-width: 960px) {
  .footer__content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer__links-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer__socials {
    align-items: flex-start;
  }

  .footer__socials-title {
    text-align: left;
  }

  .footer__bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
}

@media (max-width: 640px) {
  .site-footer {
    padding: 3rem 1.5rem 1.5rem;
  }

  .footer__gradient-circle--top-left {
    width: 200px;
    height: 200px;
  }

  .footer__gradient-circle--bottom-right {
    width: 250px;
    height: 250px;
  }

  .footer__content {
    gap: 2rem;
    margin-bottom: 2rem;
  }

  .footer__brand {
    align-items: center;
    text-align: center;
  }

  .footer__logo-link {
    margin: 0 auto;
  }

  .footer__links-wrapper {
    gap: 1.5rem;
  }

  .footer__socials-links {
    gap: 0.75rem;
  }

  .footer__social-link {
    width: 2.25rem;
    height: 2.25rem;
  }

  .footer__social-icon {
    width: 1.1rem;
    height: 1.1rem;
  }
}

/* Privacy Policy Page Styles */
.privacy-policy {
  position: relative;
  min-height: 100vh;
  padding: 8rem 2rem 4rem;
  background: var(--color-primary-black);
}

.privacy-policy__background {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.privacy-policy__gradient-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.3;
  animation: pulseGradient 8s ease-in-out infinite;
}

.privacy-policy__gradient-circle--top-right {
  top: 5%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(41, 121, 255, 0.5) 0%,
    rgba(41, 121, 255, 0.25) 40%,
    transparent 70%
  );
  animation-delay: 0s;
}

.privacy-policy__gradient-circle--bottom-left {
  bottom: 5%;
  left: -5%;
  width: 450px;
  height: 450px;
  background: radial-gradient(
    circle,
    rgba(41, 121, 255, 0.4) 0%,
    rgba(41, 121, 255, 0.2) 40%,
    transparent 70%
  );
  animation-delay: 2s;
}

.privacy-policy__container {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.privacy-policy__header {
  text-align: center;
  margin-bottom: 4rem;
}

.privacy-policy__title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 1rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.privacy-policy__title-icon {
  color: var(--color-accent-blue);
  font-size: 0.8em;
  opacity: 0.8;
}

.privacy-policy__last-updated {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.privacy-policy__content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.privacy-policy__section {
  background: rgba(10, 26, 51, 0.3);
  border: 1px solid rgba(41, 121, 255, 0.1);
  border-radius: 12px;
  padding: 2.5rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.privacy-policy__section:hover {
  border-color: rgba(41, 121, 255, 0.2);
  box-shadow: 0 4px 20px rgba(41, 121, 255, 0.1);
}

.privacy-policy__intro {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.privacy-policy__section-title {
  font-size: 1.75rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 1.5rem 0;
  padding-bottom: 1rem;
  border-bottom: 2px solid rgba(41, 121, 255, 0.2);
}

.privacy-policy__text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-highlight-neutral);
  margin: 0 0 1.25rem 0;
}

.privacy-policy__text:last-child {
  margin-bottom: 0;
}

.privacy-policy__list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.privacy-policy__list li {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-highlight-neutral);
  padding-left: 1.5rem;
  position: relative;
}

.privacy-policy__list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--color-accent-blue);
  font-weight: 600;
}

.privacy-policy__list li strong {
  color: #ffffff;
  font-weight: 600;
}

.privacy-policy__link {
  color: var(--color-accent-blue);
  text-decoration: none;
  transition: color 0.2s ease, text-decoration 0.2s ease;
}

.privacy-policy__link:hover,
.privacy-policy__link:focus-visible {
  color: #ffffff;
  text-decoration: underline;
}

.privacy-policy__contact {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-highlight-neutral);
  margin: 1.25rem 0 0 0;
  padding: 1.5rem;
  background: rgba(41, 121, 255, 0.1);
  border: 1px solid rgba(41, 121, 255, 0.2);
  border-radius: 8px;
}

.privacy-policy__contact strong {
  color: #ffffff;
  font-weight: 600;
}

/* Privacy Policy Responsive Design */
@media (max-width: 960px) {
  .privacy-policy {
    padding: 6rem 1.5rem 3rem;
  }

  .privacy-policy__header {
    margin-bottom: 3rem;
  }

  .privacy-policy__content {
    gap: 2.5rem;
  }

  .privacy-policy__section {
    padding: 2rem;
  }

  .privacy-policy__section-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 640px) {
  .privacy-policy {
    padding: 5rem 1.5rem 2rem;
  }

  .privacy-policy__gradient-circle--top-right {
    width: 250px;
    height: 250px;
  }

  .privacy-policy__gradient-circle--bottom-left {
    width: 300px;
    height: 300px;
  }

  .privacy-policy__header {
    margin-bottom: 2.5rem;
  }

  .privacy-policy__title {
    font-size: 2rem;
    gap: 0.5rem;
  }

  .privacy-policy__content {
    gap: 2rem;
  }

  .privacy-policy__section {
    padding: 1.5rem;
  }

  .privacy-policy__section-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }

  .privacy-policy__text,
  .privacy-policy__list li {
    font-size: 0.95rem;
  }

  .privacy-policy__intro {
    font-size: 1rem;
  }
}

/* Terms of Service Page Styles */
.terms-of-service {
  position: relative;
  min-height: 100vh;
  padding: 8rem 2rem 4rem;
  background: var(--color-primary-black);
}

.terms-of-service__background {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.terms-of-service__gradient-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.3;
  animation: pulseGradient 8s ease-in-out infinite;
}

.terms-of-service__gradient-circle--top-right {
  top: 5%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(41, 121, 255, 0.5) 0%,
    rgba(41, 121, 255, 0.25) 40%,
    transparent 70%
  );
  animation-delay: 0s;
}

.terms-of-service__gradient-circle--bottom-left {
  bottom: 5%;
  left: -5%;
  width: 450px;
  height: 450px;
  background: radial-gradient(
    circle,
    rgba(41, 121, 255, 0.4) 0%,
    rgba(41, 121, 255, 0.2) 40%,
    transparent 70%
  );
  animation-delay: 2s;
}

.terms-of-service__container {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.terms-of-service__header {
  text-align: center;
  margin-bottom: 4rem;
}

.terms-of-service__title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 1rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.terms-of-service__title-icon {
  color: var(--color-accent-blue);
  font-size: 0.8em;
  opacity: 0.8;
}

.terms-of-service__last-updated {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.terms-of-service__content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.terms-of-service__section {
  background: rgba(10, 26, 51, 0.3);
  border: 1px solid rgba(41, 121, 255, 0.1);
  border-radius: 12px;
  padding: 2.5rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.terms-of-service__section:hover {
  border-color: rgba(41, 121, 255, 0.2);
  box-shadow: 0 4px 20px rgba(41, 121, 255, 0.1);
}

.terms-of-service__intro {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.terms-of-service__section-title {
  font-size: 1.75rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 1.5rem 0;
  padding-bottom: 1rem;
  border-bottom: 2px solid rgba(41, 121, 255, 0.2);
}

.terms-of-service__text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-highlight-neutral);
  margin: 0 0 1.25rem 0;
}

.terms-of-service__text:last-child {
  margin-bottom: 0;
}

.terms-of-service__list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.terms-of-service__list li {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-highlight-neutral);
  padding-left: 1.5rem;
  position: relative;
}

.terms-of-service__list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--color-accent-blue);
  font-weight: 600;
}

.terms-of-service__list li strong {
  color: #ffffff;
  font-weight: 600;
}

.terms-of-service__link {
  color: var(--color-accent-blue);
  text-decoration: none;
  transition: color 0.2s ease, text-decoration 0.2s ease;
}

.terms-of-service__link:hover,
.terms-of-service__link:focus-visible {
  color: #ffffff;
  text-decoration: underline;
}

.terms-of-service__contact {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-highlight-neutral);
  margin: 1.25rem 0 0 0;
  padding: 1.5rem;
  background: rgba(41, 121, 255, 0.1);
  border: 1px solid rgba(41, 121, 255, 0.2);
  border-radius: 8px;
}

.terms-of-service__contact strong {
  color: #ffffff;
  font-weight: 600;
}

/* Terms of Service Responsive Design */
@media (max-width: 960px) {
  .terms-of-service {
    padding: 6rem 1.5rem 3rem;
  }

  .terms-of-service__header {
    margin-bottom: 3rem;
  }

  .terms-of-service__content {
    gap: 2.5rem;
  }

  .terms-of-service__section {
    padding: 2rem;
  }

  .terms-of-service__section-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 640px) {
  .terms-of-service {
    padding: 5rem 1.5rem 2rem;
  }

  .terms-of-service__gradient-circle--top-right {
    width: 250px;
    height: 250px;
  }

  .terms-of-service__gradient-circle--bottom-left {
    width: 300px;
    height: 300px;
  }

  .terms-of-service__header {
    margin-bottom: 2.5rem;
  }

  .terms-of-service__title {
    font-size: 2rem;
    gap: 0.5rem;
  }

  .terms-of-service__content {
    gap: 2rem;
  }

  .terms-of-service__section {
    padding: 1.5rem;
  }

  .terms-of-service__section-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }

  .terms-of-service__text,
  .terms-of-service__list li {
    font-size: 0.95rem;
  }

  .terms-of-service__intro {
    font-size: 1rem;
  }
}


