* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* =======
   BODY
======= */
body {
  font-family: "Inter", "Segoe UI", sans-serif;
  background: radial-gradient(circle at 20% 20%, #1a1140 0%, #0c081c 40%, #070513 100%);
  color: #f2f2f5;
  line-height: 1.8;
  letter-spacing: 0.3px;
}

/* ============
   HEADER 
============ */
header {
  max-width: 1150px;
  margin: 60px auto 100px auto;
  padding: 50px 70px;
  background: rgba(255,255,255,0.02);
  border-radius: 24px;
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

/* Soft accent aura */
header::after {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(203,108,230,0.18) 0%, transparent 70%);
  top: -300px;
  right: -250px;
  z-index: 0;
  pointer-events: none; 
}

/* Layout */
.header-top {
  display: flex;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.logotech {
  width: 105px;
  transition: all 0.4s ease;
}

.logotech:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 18px rgba(203,108,230,0.4));
}

/* Name */
header h1 {
  font-size: 2.6rem;
  font-weight: 500;
  letter-spacing: 2px;
}

/* Title aligned right */
header p {
  font-size: 0.95rem;
  color: #cb6ce6;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 500;
  z-index: 1;
}

/* =========================
   MAIN CONTAINER
========================= */
main {
  max-width: 1050px;
  margin: auto;
  padding: 0 30px 120px 30px;
}

/* ============
   SECTIONS 
============= */
section {
  margin-bottom: 110px;
  position: relative;
}

/* divider line */
  section::after {
  content: "";
  position: absolute;
  bottom: -55px;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(203,108,230,0.3), transparent);
}

section:last-of-type::after {
  display: none;
}

/* ============
   HEADINGS 
============ */
h2 {
  font-size: 2.2rem;
  margin-bottom: 30px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #ffffff;
  position: relative;
}

h2::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 12px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

h3 {
  margin-top: 35px;
  margin-bottom: 12px;
  font-weight: 500;
  color: #cb6ce6;
  letter-spacing: 0.8px;
}


.btn-primary {
  display: inline-block; 
  padding: 14px 38px;
  border-radius: 30px;
  background: transparent;
  border: 1px solid #cb6ce6;
  color: #cb6ce6;
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.4s ease;
  z-index: 2;
}

.btn-primary:hover {
  background: #cb6ce6;
  color: #0c081c;
  box-shadow: 0 0 25px rgba(203,108,230,0.4);
}

/* ======
   TEXT
======= */
p {
  font-size: 1.05rem;
  margin-bottom: 25px;
  color: #e5e5ee;
}

/* ==============
   LISTS
============== */
ul {
  margin-top: 15px;
  padding-left: 24px;
}

li {
  margin-bottom: 12px;
  color: #d7d7e2;
}

li::marker {
  color: #cb6ce6;
}

/* =========================
   LINKS – Underline Minimal
========================= */
a {
  color: #cb6ce6;
  text-decoration: none;
  position: relative;
}

a:not(.btn-primary)::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: #cb6ce6;
  transition: 0.3s ease;
}

a:not(.btn-primary):hover::after {
  width: 100%;
}

/* =========================
   LANGUAGE FLAGS
========================= */
.logo-list {
  list-style: none;
  padding-left: 0;
}

.logo-list li {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-list img {
  width: 24px;
  border-radius: 3px;
}

/* =========================
   FOOTER – Signature Strip
========================= */
footer {
  background: #1c103c;
  text-align: center;
  padding: 40px 20px;
  font-size: 0.85rem;
  letter-spacing: 1px;
  color: #9c9cb2;
}

/* =========================
   FADE ANIMATION
========================= */
.fade-in {
  opacity: 0;
  transform: translateY(60px);
  transition: all 1.1s cubic-bezier(.19,1,.22,1);
}

.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {

  header {
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
    padding: 40px;
  }

  header h1 {
    font-size: 2rem;
  }

  main {
    padding: 0 20px 100px 20px;
  }

  h2 {
    font-size: 1.7rem;
  }
}
