
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');


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


:root {
  --color-bg-primary: #050B1F;
  --color-bg-secondary: #0A1232;
  --color-accent-1: #7B3FEF;
  --color-accent-2: #1E90FF;
  --color-accent-3: #FF5E9A;
  --color-text: #FFFFFF;
  --color-text-secondary: #B8C4E6;
  --color-subtle: #182552;
  --color-grid-box: #0C1940;
  --gradient-button: linear-gradient(135deg, var(--color-accent-1), var(--color-accent-2));
  --transition: all 0.3s ease;
  --box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  --border-radius: 8px;
}


html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--color-bg-primary);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(123, 63, 239, 0.15) 0%, transparent 25%),
    radial-gradient(circle at 80% 70%, rgba(30, 144, 255, 0.1) 0%, transparent 20%);
}

main {
  flex: 1;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

h1, h2, h3, h4, h5, h6 {
  margin: 1.5rem 0 1rem;
  line-height: 1.2;
  font-weight: 600;
}

h1 {
  font-size: 2.5rem;
  margin-top: 0;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--color-accent-2);
  text-decoration: none;
  transition: var(--transition);
}

a:hover, a:focus {
  color: var(--color-accent-1);
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}


.btn {
  display: inline-block;
  background: var(--gradient-button);
  color: var(--color-text);
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  border: none;
  cursor: pointer;
  font-weight: 600;
  text-align: center;
  transition: var(--transition);
  text-decoration: none;
  box-shadow: var(--box-shadow);
}

.btn:hover, .btn:focus {
  background: linear-gradient(135deg, var(--color-accent-1) 20%, var(--color-accent-2) 100%);
  transform: translateY(-2px);
  color: var(--color-text);
  text-decoration: none;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--color-accent-2);
  color: var(--color-accent-2);
}

.btn-outline:hover, .btn-outline:focus {
  background: var(--color-accent-2);
  color: var(--color-text);
}


.header {
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  background-color: rgba(5, 11, 31, 0.9);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid var(--color-subtle);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 50px;
}

.logo img {
  height: 100%;
}


.nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  list-style: none;
}

.nav-item {
  margin: 0 0.75rem;
}

.nav-link {
  color: var(--color-text-secondary);
  position: relative;
  padding: 0.5rem 0;
  font-weight: 400;
}

.nav-link:hover, .nav-link:focus {
  color: var(--color-text);
  text-decoration: none;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-button);
  transition: var(--transition);
}

.nav-link:hover::after, .nav-link:focus::after {
  width: 100%;
}

.nav-cta {
  margin-left: 1rem;
}


.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.hamburger-line {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: var(--color-text);
  transition: var(--transition);
}

@media (max-width: 768px) {
  .nav-list {
    position: fixed;
    top: 79px;
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    background-color: var(--color-bg-secondary);
    transform: translateX(100%);
    transition: var(--transition);
    z-index: 999;
    overflow-y: auto;
    padding: 2rem;
  }

  .nav-list.active {
    transform: translateX(0);
  }

  .nav-item {
    margin: 1rem 0;
  }

  .hamburger {
    display: block;
    z-index: 1000;
  }

  .hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }
  
  .header-container {
    justify-content: space-between;
  }

  .nav-cta {
    margin-top: 1rem;
    margin-left: 0;
    text-align: center;
  }
}


.hero {
  position: relative;
  padding: 5rem 0;
  text-align: center;
  background-image: url('../images/hero-background.jpg');
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(5, 11, 31, 0.7), rgba(5, 11, 31, 0.9));
}

.hero-container {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  margin-bottom: 1.5rem;
  font-size: 3rem;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: var(--color-text-secondary);
}

.hero-cta {
  margin-top: 2rem;
}


.section {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--gradient-button);
}


.grid-nine {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 3rem 0;
}

.grid-box {
  position: relative;
  background-color: var(--color-grid-box);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  transition: var(--transition);
  overflow: hidden;
  height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: var(--box-shadow);
}

.grid-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 70%, rgba(5, 11, 31, 0.7));
  z-index: 0;
}

.grid-box-content {
  position: relative;
  z-index: 1;
}

.grid-box h3 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.grid-box-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--color-accent-2);
}

.grid-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

@media (max-width: 992px) {
  .grid-nine {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .grid-nine {
    grid-template-columns: 1fr;
  }
  
  .grid-box {
    height: auto;
    min-height: 200px;
  }
}


.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(5, 11, 31, 0.9);
  z-index: 1100;
  overflow-y: auto;
  align-items: center;
  justify-content: center;
}

.modal.active {
  display: flex;
}

.modal-content {
  position: relative;
  background-color: var(--color-bg-secondary);
  border-radius: var(--border-radius);
  max-width: 800px;
  width: 90%;
  padding: 2rem;
  box-shadow: var(--box-shadow);
  border: 1px solid var(--color-subtle);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--color-text);
  cursor: pointer;
}


.form {
  margin: 2rem 0;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--color-subtle);
  border-radius: var(--border-radius);
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--color-text);
  transition: var(--transition);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-accent-2);
  box-shadow: 0 0 0 2px rgba(30, 144, 255, 0.2);
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.form-checkbox input {
  margin-top: 5px;
  margin-right: 10px;
}

.form-submit {
  margin-top: 1rem;
  width: 100%;
}


.feature {
  display: flex;
  align-items: center;
  margin-bottom: 4rem;
}

.feature-content {
  flex: 1;
}

.feature-image {
  flex: 1;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.feature-content h2 {
  margin-top: 0;
}

.feature-list {
  list-style: none;
  margin: 1.5rem 0;
}

.feature-item {
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
}

.feature-icon {
  color: var(--color-accent-1);
  margin-right: 0.75rem;
  font-size: 1.25rem;
}

@media (max-width: 768px) {
  .feature {
    flex-direction: column;
    margin-bottom: 3rem;
  }
  
  .feature-content {
    order: 2;
    margin-top: 1.5rem;
  }
  
  .feature-image {
    order: 1;
    width: 100%;
  }
}


.cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin: 3rem 0;
}

.card {
  background-color: var(--color-grid-box);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: var(--box-shadow);
}

.card-image {
  height: 200px;
  width: 100%;
  object-fit: cover;
}

.card-content {
  padding: 1.5rem;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}


.footer {
  background-color: var(--color-bg-secondary);
  padding: 3rem 0 1.5rem;
  margin-top: auto;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.footer-section {
  flex: 1;
  min-width: 250px;
  margin-bottom: 1.5rem;
}

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

.footer-nav-list {
  list-style: none;
}

.footer-nav-item {
  margin-bottom: 0.5rem;
}

.footer-nav-link {
  color: var(--color-text-secondary);
}

.footer-contact {
  margin-bottom: 0.5rem;
}

.footer-contact i {
  margin-right: 0.5rem;
  color: var(--color-accent-2);
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-subtle);
  color: var(--color-text-secondary);
  font-size: 0.875rem;
}


.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--color-bg-secondary);
  padding: 1rem;
  z-index: 9999;
  display: none;
  border-top: 1px solid var(--color-subtle);
}

.cookie-banner.show {
  display: block;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cookie-text {
  flex: 1;
  margin-right: 1rem;
}

.cookie-buttons {
  display: flex;
  gap: 0.5rem;
}

.cookie-settings-btn {
  background: none;
  color: var(--color-accent-2);
  border: 1px solid var(--color-accent-2);
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
}

.cookie-settings-btn:hover {
  background-color: rgba(30, 144, 255, 0.1);
}

.cookie-accept-btn {
  background: var(--gradient-button);
  color: var(--color-text);
  border: none;
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
}

.cookie-settings-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(5, 11, 31, 0.9);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
}

.cookie-settings-modal.show {
  display: flex;
}

.cookie-settings-content {
  background-color: var(--color-bg-secondary);
  border-radius: var(--border-radius);
  max-width: 600px;
  width: 90%;
  padding: 2rem;
  box-shadow: var(--box-shadow);
}

.cookie-settings-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.cookie-settings-title {
  font-size: 1.5rem;
  margin: 0;
}

.cookie-settings-close {
  background: none;
  border: none;
  font-size: 1.25rem;
  cursor: pointer;
  color: var(--color-text);
}

.cookie-category {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-subtle);
}

.cookie-category:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.cookie-category-title {
  font-weight: 600;
  margin: 0;
}

.cookie-toggle {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--color-subtle);
  transition: var(--transition);
  border-radius: 24px;
}

.cookie-toggle-slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: var(--transition);
  border-radius: 50%;
}

input:checked + .cookie-toggle-slider {
  background-color: var(--color-accent-2);
}

input:checked + .cookie-toggle-slider:before {
  transform: translateX(26px);
}

.cookie-settings-footer {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  margin-top: 1.5rem;
}

.cookie-settings-save {
  background: var(--gradient-button);
  color: white;
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
}

.cookie-settings-save:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}


.floating-cookie-settings {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: var(--color-bg-secondary);
  border: 1px solid var(--color-subtle);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 9998;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.floating-cookie-settings:hover {
  transform: translateY(-2px);
}


.thank-you {
  text-align: center;
  padding: 5rem 0;
}

.thank-you-icon {
  font-size: 5rem;
  color: var(--color-accent-1);
  margin-bottom: 2rem;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
    opacity: 0.8;
  }
  70% {
    transform: scale(1.05);
    opacity: 1;
  }
  100% {
    transform: scale(0.95);
    opacity: 0.8;
  }
}

.thank-you-title {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.thank-you-text {
  font-size: 1.25rem;
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto 2rem;
}

.thank-you-cta {
  margin-top: 2rem;
}


.policy {
  padding: 3rem 0;
}

.policy-container {
  max-width: 900px;
  margin: 0 auto;
}

.policy-header {
  margin-bottom: 2rem;
  text-align: center;
}

.policy-date {
  color: var(--color-text-secondary);
  margin-bottom: 2rem;
  text-align: center;
  font-style: italic;
}

.policy-section {
  margin-bottom: 2rem;
}

.policy-section h2 {
  margin-bottom: 1rem;
}

.policy-section h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.policy-list {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.policy-list li {
  margin-bottom: 0.5rem;
}


.contact-info {
  margin-top: 3rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.contact-icon {
  margin-right: 1rem;
  font-size: 1.5rem;
  color: var(--color-accent-2);
  width: 30px;
  text-align: center;
}

.contact-details h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.map-container {
  margin-top: 3rem;
  height: 400px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}


.results-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 3rem 0;
}

.metric {
  background-color: var(--color-grid-box);
  padding: 2rem;
  border-radius: var(--border-radius);
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.metric:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow);
}

.metric-value {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--color-accent-1);
}

.metric-label {
  color: var(--color-text-secondary);
}

@media (max-width: 992px) {
  .results-metrics {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .results-metrics {
    grid-template-columns: 1fr;
  }
}


.challenge {
  background-color: var(--color-grid-box);
  padding: 2rem;
  border-radius: var(--border-radius);
  margin-bottom: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
}

.challenge:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow);
}

.challenge-header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.challenge-icon {
  margin-right: 1rem;
  color: var(--color-accent-2);
  font-size: 2rem;
}

.challenge h3 {
  margin: 0;
}


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

.text-accent {
  color: var(--color-accent-2);
}

.mb-0 {
  margin-bottom: 0;
}

.mb-1 {
  margin-bottom: 0.5rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-3 {
  margin-bottom: 1.5rem;
}

.mb-4 {
  margin-bottom: 2rem;
}

.mb-5 {
  margin-bottom: 2.5rem;
}

.mt-0 {
  margin-top: 0;
}

.mt-1 {
  margin-top: 0.5rem;
}

.mt-2 {
  margin-top: 1rem;
}

.mt-3 {
  margin-top: 1.5rem;
}

.mt-4 {
  margin-top: 2rem;
}

.mt-5 {
  margin-top: 2.5rem;
}


[data-sal] {
  transition: transform 0.5s, opacity 0.5s;
}


.iti {
  width: 100%;
}