:root {
  --dark-blue: #2f3443;
  --mid-blue: #3f4a5f;
  --warm-light: #d7c3b8;
  --text-main: #ffffff;
  --text-muted: rgba(255,255,255,0.85);
  --pill-bg: rgba(255,255,255,0.96);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
}

body {
  min-height: 100vh;
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;

  background-image:
    linear-gradient(
      135deg,
      rgba(255,255,255,0.22) 0%,
      rgba(47,52,67,0.88) 32%,
      rgba(63,74,95,0.65) 62%,
      rgba(215,195,184,0.75) 100%
    ),
    url("../images/data-visual.png"),
    url("../images/background2.png"),
    url("../images/background.png");

  background-size:
    cover,
    50%,
    cover,
    cover;

  background-position:
    top left,
    50% 75%,
    center,
    center;

  background-repeat: no-repeat;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}

body::before {
  background: radial-gradient(circle at 70% 60%, rgba(255,255,255,0.15), transparent 50%);
}

body::after {
  background: radial-gradient(circle at 70% 50%, rgba(255,255,255,0.15), transparent 55%);
}

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

.lang-switch {
  position: absolute;
  top: 28px;
  right: 60px;
  font-size: 14px;
  opacity: 0.9;
}

.lang-switch a {
  color: white;
  text-decoration: none;
  font-weight: 600;
}

.lang-switch a.active {
  opacity: 1;
  border-bottom: 2px solid rgba(255,255,255,0.6);
  padding-bottom: 2px;
}


.lang-switch span {
  margin: 0 6px;
  opacity: 0.6;
}


/* ===== HERO ===== */

.logo img {
  padding: 20px 0;
  display: block;
}

h1 {
  font-size: 58px;
  line-height: 1.05;
  margin-bottom: 28px;
  max-width: 880px;
}

h1 span {
  color: #e7d6cb;
  font-weight: 600;
}

.lead {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 640px;
  margin-bottom: 28px;
}

.tagline {
  font-weight: 600;
  margin-bottom: 42px;
}

/* ===== SERVICES ===== */

.services {
  margin-top: 20px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 520px;
}

.service {
  background: var(--pill-bg);
  color: #2f3443;
  padding: 13px 22px;
  border-radius: 999px;
  font-size: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  gap: 14px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.22);
}

.service-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

/* ===== CONTACT ===== */

.contact {
  margin-top: 70px;
  max-width: 720px;
}

.contact h2 {
  font-size: 32px;
  margin-bottom: 16px;
}

.contact p {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 28px;
}

.contact .cta {
  display: inline-block;
  padding: 12px 32px;
  border-radius: 999px;
  background: rgba(255,255,255,0.95);
  color: #2f3443;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 10px 26px rgba(0,0,0,0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact .cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(0,0,0,0.35);
}

.contact-details {
  margin-top: 24px;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
}

/* ===== FOOTER ===== */
.site-footer {
  margin-top: 120px;
  padding: 40px 60px 32px;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.25),
    rgba(0,0,0,0.05)
  );
  backdrop-filter: blur(6px);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
}

.footer-links a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.footer-links a:hover {
  opacity: 1;
  text-decoration: underline;
}

.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
}

/* ===== LEGAL / PRIVACY PAGES ===== */
.page-title {
  font-size: 46px;
  margin-bottom: 40px;
  max-width: 720px;
}

.legal-content {
  max-width: 760px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(6px);
  padding: 48px 56px;
  border-radius: 28px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

.legal-content section + section {
  margin-top: 40px;
}

.legal-content h2 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #ffffff;
}

.legal-content p {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 14px;
  line-height: 1.7;
}

.legal-content a {
  color: #ffffff;
  text-decoration: underline;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 900px) {
  .page {
    padding: 0 28px 50px;
  }
  
  .page-title {
    font-size: 34px;
  }

  .legal-content {
    padding: 32px 26px;
  }
  h1 {
    font-size: 42px;
  }

  .service {
    width: 100%;
  }

  .site-footer {
    padding: 32px 28px 28px;
  }
}
