



:root {
  --es-deep-purple: #2a0a4a;
  --es-neon-pink: #ff00aa;
  --es-electric-blue: #00ffff;
  --es-dark-bg: #0f0521;
  --es-gradient-start: #1a0433;
  --es-gradient-end: #4a0069;
  --es-sunset-orange: #ff6b35;
  --es-retro-yellow: #ffcf56;
  --es-neon-green: #39ff14;
  --es-light-text: #f0f0ff;
  --es-secondary-text: #c8c8ff;
  --es-muted-text: #8080aa;
  --es-card-bg: rgba(26, 4, 51, 0.8);
  --es-card-border: rgba(255, 0, 170, 0.3);
  --es-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  --es-glow: 0 0 15px rgba(255, 0, 170, 0.5);
}

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

html {
  scroll-behavior: smooth;
  font-size: 62.5%;
}

body {
  font-family: 'Sora', sans-serif;
  background: linear-gradient(135deg, var(--es-dark-bg) 0%, var(--es-gradient-start) 40%, var(--es-gradient-end) 100%);
  color: var(--es-light-text);
  font-size: 1.6rem;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  background-attachment: fixed;
}


h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  margin-bottom: 2rem;
  line-height: 1.2;
}

h1 {
  font-size: 4.2rem;
  background: linear-gradient(90deg, var(--es-light-text), var(--es-electric-blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

h2 {
  font-size: 3.6rem;
  color: var(--es-light-text);
  position: relative;
  display: inline-block;
  margin-bottom: 3rem;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -1rem;
  left: 0;
  width: 60%;
  height: 3px;
  background: linear-gradient(90deg, var(--es-neon-pink), transparent);
}

h3 {
  font-size: 2.8rem;
  color: var(--es-secondary-text);
}

h4 {
  font-size: 2.4rem;
  color: var(--es-secondary-text);
}

h5 {
  font-size: 2rem;
  color: var(--es-secondary-text);
}

h6 {
  font-size: 1.8rem;
  color: var(--es-secondary-text);
}

p {
  margin-bottom: 1.6rem;
}

a {
  color: var(--es-electric-blue);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

a:hover {
  color: var(--es-neon-pink);
}

a:not(.es-btn):after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background: linear-gradient(90deg, var(--es-electric-blue), var(--es-neon-pink));
  transition: width 0.3s ease;
}

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

ul, ol {
  margin-left: 2rem;
  margin-bottom: 2rem;
}

strong {
  font-weight: 700;
  color: var(--es-light-text);
}


.es-page-wrapper {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2rem;
}

.es-section {
  padding: 8rem 0;
  position: relative;
}

.es-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--es-neon-pink), transparent);
}


.es-dashboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 2.5rem;
  margin: 4rem 0;
}

.es-dashboard-item {
  background: var(--es-card-bg);
  border: 1px solid var(--es-card-border);
  border-radius: 1rem;
  padding: 2.5rem;
  box-shadow: var(--es-shadow);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.es-dashboard-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--es-neon-pink), var(--es-electric-blue));
  opacity: 0.7;
}

.es-dashboard-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--es-glow);
}

.es-dashboard-item h3 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}


.es-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
  padding: 2rem 0;
  background: rgba(15, 5, 33, 0.8);
  backdrop-filter: blur(10px);
}

.es-header.scrolled {
  padding: 1.5rem 0;
  background: rgba(42, 10, 74, 0.95);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.es-header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2rem;
}

.es-logo {
  display: flex;
  align-items: center;
  z-index: 1010;
}

.es-logo img {
  height: 4rem;
  transition: all 0.3s ease;
}

.es-header.scrolled .es-logo img {
  height: 3.5rem;
}

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

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

.es-nav-item {
  position: relative;
  margin: 0 1.5rem;
}

.es-nav-link {
  color: var(--es-light-text);
  font-weight: 500;
  padding: 0.8rem 0;
  display: block;
  position: relative;
}

.es-nav-link:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--es-neon-pink), var(--es-electric-blue));
  transition: width 0.3s ease;
}

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

.es-subnav {
  position: absolute;
  top: 100%;
  left: -2rem;
  width: 20rem;
  background: rgba(15, 5, 33, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid var(--es-card-border);
  border-radius: 0.5rem;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(1rem);
  transition: all 0.3s ease;
  box-shadow: var(--es-shadow);
  z-index: 1005;
}

.es-nav-item:hover .es-subnav {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.es-subnav-list {
  list-style: none;
  margin: 0;
}

.es-subnav-item {
  margin-bottom: 0.8rem;
}

.es-subnav-item:last-child {
  margin-bottom: 0;
}

.es-subnav-link {
  color: var(--es-secondary-text);
  font-size: 1.4rem;
  padding: 0.5rem 0;
  display: block;
  transition: all 0.3s ease;
}

.es-subnav-link:hover {
  color: var(--es-neon-pink);
  transform: translateX(5px);
}

.es-nav-contact {
  margin-left: 3rem;
  font-weight: 500;
  color: var(--es-light-text);
  display: flex;
  align-items: center;
}

.es-nav-contact i {
  margin-right: 0.8rem;
  color: var(--es-neon-pink);
}

.es-hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 3rem;
  height: 2.4rem;
  cursor: pointer;
  z-index: 1010;
}

.es-hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--es-light-text);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.es-hamburger.active span:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
}

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

.es-hamburger.active span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}


.es-hero {
  height: 100vh;
  min-height: 60rem;
  display: flex;
  align-items: center;
  position: relative;
  padding: 0;
  overflow: hidden;
  margin-bottom: 4rem;
}

.es-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: linear-gradient(to top, var(--es-dark-bg), transparent);
  z-index: 2;
}

.es-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  z-index: 1;
}

.es-hero-content {
  position: relative;
  z-index: 3;
  max-width: 70rem;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.es-hero-title {
  font-size: 5rem;
  margin-bottom: 2rem;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.es-hero-subtitle {
  font-size: 2.2rem;
  margin-bottom: 4rem;
  color: var(--es-secondary-text);
  max-width: 60rem;
  margin-left: auto;
  margin-right: auto;
}


.es-btn {
  display: inline-block;
  padding: 1.2rem 2.8rem;
  border-radius: 5rem;
  font-weight: 500;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: none;
  cursor: pointer;
  font-family: 'Sora', sans-serif;
  font-size: 1.6rem;
}

.es-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, var(--es-neon-pink), var(--es-electric-blue));
  z-index: -1;
  transition: all 0.5s ease;
}

.es-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, var(--es-electric-blue), var(--es-neon-pink));
  z-index: -1;
  transition: all 0.5s ease;
}

.es-btn:hover::after {
  left: 0;
}

.es-btn-primary {
  color: var(--es-light-text);
  box-shadow: 0 5px 15px rgba(255, 0, 170, 0.3);
}

.es-btn-primary:hover {
  box-shadow: 0 8px 25px rgba(255, 0, 170, 0.5);
  transform: translateY(-3px);
}

.es-btn-secondary {
  background: transparent;
  color: var(--es-light-text);
  border: 2px solid var(--es-neon-pink);
}

.es-btn-secondary::before,
.es-btn-secondary::after {
  opacity: 0.1;
}

.es-btn-secondary:hover {
  color: var(--es-light-text);
  border-color: var(--es-electric-blue);
}

.es-btn-secondary:hover::before,
.es-btn-secondary:hover::after {
  opacity: 0.2;
}


.es-what-we-do {
  padding: 8rem 0;
}

.es-what-we-do-intro {
  text-align: center;
  max-width: 80rem;
  margin: 0 auto 6rem;
}


.es-methodology {
  padding: 8rem 0;
  position: relative;
}

.es-methodology-intro {
  text-align: center;
  max-width: 80rem;
  margin: 0 auto 6rem;
}

.es-methodology-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 3rem;
}

.es-methodology-item {
  background: var(--es-card-bg);
  border-radius: 1rem;
  padding: 3rem;
  box-shadow: var(--es-shadow);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.es-methodology-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--es-neon-pink), var(--es-electric-blue));
}

.es-methodology-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--es-glow);
}

.es-methodology-icon {
  font-size: 3.6rem;
  margin-bottom: 2rem;
  color: var(--es-neon-pink);
}


.es-benefits {
  padding: 8rem 0;
}

.es-benefits-intro {
  text-align: center;
  max-width: 80rem;
  margin: 0 auto 6rem;
}

.es-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 2.5rem;
}

.es-benefit-card {
  background: var(--es-card-bg);
  border-radius: 1rem;
  padding: 3rem;
  box-shadow: var(--es-shadow);
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.es-benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--es-neon-pink), var(--es-electric-blue));
}

.es-benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--es-glow);
}

.es-benefit-icon {
  font-size: 4rem;
  margin-bottom: 2rem;
  color: var(--es-electric-blue);
}


.es-examples {
  padding: 8rem 0;
}

.es-examples-intro {
  text-align: center;
  max-width: 80rem;
  margin: 0 auto 6rem;
}

.es-example-item {
  background: var(--es-card-bg);
  border-radius: 1rem;
  padding: 3rem;
  margin-bottom: 3rem;
  box-shadow: var(--es-shadow);
}

.es-example-header {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}

.es-example-icon {
  font-size: 2.8rem;
  margin-right: 1.5rem;
  color: var(--es-neon-pink);
}


.es-target-audience {
  padding: 8rem 0;
}

.es-target-audience-intro {
  text-align: center;
  max-width: 80rem;
  margin: 0 auto 6rem;
}

.es-audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 3rem;
}

.es-audience-card {
  background: var(--es-card-bg);
  border-radius: 1rem;
  padding: 3rem;
  box-shadow: var(--es-shadow);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.es-audience-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, var(--es-neon-pink), var(--es-electric-blue));
}

.es-audience-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--es-glow);
}

.es-audience-icon {
  font-size: 3.6rem;
  margin-bottom: 2rem;
  color: var(--es-electric-blue);
}


.es-pricing {
  padding: 8rem 0;
}

.es-pricing-intro {
  text-align: center;
  max-width: 80rem;
  margin: 0 auto 6rem;
}

.es-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 3rem;
}

.es-pricing-card {
  background: var(--es-card-bg);
  border-radius: 1rem;
  padding: 3rem;
  box-shadow: var(--es-shadow);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.es-pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--es-neon-pink), var(--es-electric-blue));
}

.es-pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--es-glow);
}

.es-pricing-title {
  font-size: 2.6rem;
  margin-bottom: 1rem;
}

.es-pricing-description {
  color: var(--es-secondary-text);
  margin-bottom: 2.5rem;
}

.es-pricing-features {
  list-style: none;
  margin: 0 0 3rem 0;
  flex-grow: 1;
}

.es-pricing-feature {
  margin-bottom: 1.2rem;
  display: flex;
  align-items: flex-start;
}

.es-pricing-feature i {
  color: var(--es-neon-pink);
  margin-right: 1rem;
  font-size: 1.8rem;
}


.es-contact-form-section {
  padding: 8rem 0;
}

.es-contact-form-intro {
  text-align: center;
  max-width: 80rem;
  margin: 0 auto 6rem;
}

.es-form-container {
  max-width: 70rem;
  margin: 0 auto;
  background: var(--es-card-bg);
  border-radius: 1rem;
  padding: 4rem;
  box-shadow: var(--es-shadow);
}

.es-form-group {
  margin-bottom: 2.5rem;
}

.es-form-label {
  display: block;
  margin-bottom: 0.8rem;
  font-weight: 500;
}

.es-form-input,
.es-form-textarea {
  width: 100%;
  padding: 1.2rem 1.5rem;
  background: rgba(15, 5, 33, 0.5);
  border: 1px solid var(--es-card-border);
  border-radius: 0.5rem;
  color: var(--es-light-text);
  font-family: 'Sora', sans-serif;
  font-size: 1.6rem;
  transition: all 0.3s ease;
}

.es-form-input:focus,
.es-form-textarea:focus {
  outline: none;
  border-color: var(--es-neon-pink);
  box-shadow: 0 0 0 3px rgba(255, 0, 170, 0.2);
}

.es-form-textarea {
  min-height: 15rem;
  resize: vertical;
}

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

.es-form-checkbox {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.es-form-checkbox-label {
  position: relative;
  padding-left: 3rem;
  cursor: pointer;
  display: inline-block;
  color: var(--es-secondary-text);
}

.es-form-checkbox-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.3rem;
  width: 2rem;
  height: 2rem;
  border: 1px solid var(--es-card-border);
  background: rgba(15, 5, 33, 0.5);
  border-radius: 0.3rem;
}

.es-form-checkbox:checked + .es-form-checkbox-label::after {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0.4rem;
  top: 0.1rem;
  color: var(--es-neon-pink);
  font-size: 1.4rem;
}

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


.es-faq {
  padding: 8rem 0;
}

.es-faq-intro {
  text-align: center;
  max-width: 80rem;
  margin: 0 auto 6rem;
}

.es-faq-item {
  background: var(--es-card-bg);
  border-radius: 1rem;
  margin-bottom: 2rem;
  overflow: hidden;
  box-shadow: var(--es-shadow);
}

.es-faq-question {
  padding: 2rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  font-size: 1.8rem;
  transition: all 0.3s ease;
}

.es-faq-question:hover {
  background: rgba(26, 4, 51, 0.9);
}

.es-faq-question i {
  font-size: 1.6rem;
  transition: all 0.3s ease;
}

.es-faq-answer {
  padding: 0 2rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.es-faq-answer-content {
  padding-bottom: 2rem;
  color: var(--es-secondary-text);
}

.es-faq-item.active .es-faq-question {
  background: rgba(26, 4, 51, 0.9);
}

.es-faq-item.active .es-faq-question i {
  transform: rotate(180deg);
}

.es-faq-item.active .es-faq-answer {
  max-height: 50rem;
}


.es-compliance-notice {
  padding: 4rem 0;
  text-align: center;
  max-width: 80rem;
  margin: 0 auto;
}


.es-footer {
  background: rgba(15, 5, 33, 0.9);
  padding: 6rem 0 3rem;
  position: relative;
}

.es-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--es-neon-pink), transparent);
}

.es-footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 4rem;
  margin-bottom: 4rem;
}

.es-footer-logo {
  margin-bottom: 2rem;
}

.es-footer-logo img {
  height: 4rem;
}

.es-footer-contact-info {
  margin-bottom: 2rem;
}

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

.es-footer-contact-icon {
  color: var(--es-neon-pink);
  font-size: 1.8rem;
  margin-right: 1.5rem;
  margin-top: 0.3rem;
}

.es-footer-contact-text {
  color: var(--es-secondary-text);
}

.es-footer-heading {
  font-size: 2rem;
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
}

.es-footer-heading::after {
  content: '';
  position: absolute;
  bottom: -0.8rem;
  left: 0;
  width: 4rem;
  height: 2px;
  background: var(--es-neon-pink);
}

.es-footer-links {
  list-style: none;
  margin: 0;
}

.es-footer-link-item {
  margin-bottom: 1.2rem;
}

.es-footer-link {
  color: var(--es-secondary-text);
  transition: all 0.3s ease;
  display: inline-block;
}

.es-footer-link:hover {
  color: var(--es-neon-pink);
  transform: translateX(5px);
}

.es-footer-social {
  display: flex;
  margin-top: 2rem;
}

.es-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  background: rgba(26, 4, 51, 0.8);
  border-radius: 50%;
  margin-right: 1.2rem;
  transition: all 0.3s ease;
  color: var(--es-light-text);
}

.es-social-link:hover {
  background: var(--es-neon-pink);
  transform: translateY(-5px);
}

.es-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.es-copyright {
  color: var(--es-muted-text);
  font-size: 1.4rem;
}

.es-cookie-settings {
  display: inline-flex;
  align-items: center;
  color: var(--es-secondary-text);
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.4rem;
}

.es-cookie-settings i {
  margin-right: 0.8rem;
  color: var(--es-neon-pink);
}

.es-cookie-settings:hover {
  color: var(--es-neon-pink);
}


.es-cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(15, 5, 33, 0.95);
  backdrop-filter: blur(10px);
  padding: 2rem;
  z-index: 9999;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
  transform: translateY(100%);
  transition: all 0.5s ease;
  border-top: 1px solid var(--es-card-border);
}

.es-cookie-consent.active {
  transform: translateY(0);
}

.es-cookie-consent-container {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.es-cookie-text {
  flex: 1;
  min-width: 30rem;
}

.es-cookie-title {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.es-cookie-description {
  color: var(--es-secondary-text);
  margin-bottom: 0;
}

.es-cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}


.es-cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.es-cookie-modal.active {
  opacity: 1;
  visibility: visible;
}

.es-cookie-modal-content {
  background: var(--es-dark-bg);
  border: 1px solid var(--es-card-border);
  border-radius: 1rem;
  width: 100%;
  max-width: 60rem;
  max-height: 90vh;
  overflow-y: auto;
  padding: 3rem;
  position: relative;
  box-shadow: var(--es-shadow);
}

.es-cookie-modal-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 2rem;
  color: var(--es-secondary-text);
  cursor: pointer;
  transition: all 0.3s ease;
}

.es-cookie-modal-close:hover {
  color: var(--es-neon-pink);
  transform: rotate(90deg);
}

.es-cookie-modal-title {
  font-size: 2.6rem;
  margin-bottom: 2.5rem;
}

.es-cookie-category {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

.es-cookie-category-title {
  font-size: 2rem;
  margin-bottom: 0;
}

.es-cookie-toggle {
  position: relative;
  width: 6rem;
  height: 3rem;
}

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

.es-cookie-toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.2);
  transition: .4s;
  border-radius: 3rem;
}

.es-cookie-toggle-slider:before {
  position: absolute;
  content: "";
  height: 2.4rem;
  width: 2.4rem;
  left: 0.3rem;
  bottom: 0.3rem;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

.es-cookie-toggle input:checked + .es-cookie-toggle-slider {
  background-color: var(--es-neon-pink);
}

.es-cookie-toggle input:focus + .es-cookie-toggle-slider {
  box-shadow: 0 0 1px var(--es-neon-pink);
}

.es-cookie-toggle input:checked + .es-cookie-toggle-slider:before {
  transform: translateX(3rem);
}

.es-cookie-toggle input:disabled + .es-cookie-toggle-slider {
  opacity: 0.5;
  cursor: not-allowed;
}

.es-cookie-category-description {
  color: var(--es-secondary-text);
}

.es-cookie-modal-buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 3rem;
}


.es-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.es-modal.active {
  opacity: 1;
  visibility: visible;
}

.es-modal-content {
  background: linear-gradient(135deg, var(--es-gradient-start), var(--es-gradient-end));
  border: 1px solid var(--es-card-border);
  border-radius: 1rem;
  width: 100%;
  max-width: 50rem;
  padding: 4rem;
  position: relative;
  text-align: center;
  box-shadow: var(--es-shadow);
}

.es-modal-icon {
  font-size: 5rem;
  color: var(--es-neon-pink);
  margin-bottom: 2rem;
}

.es-modal-title {
  font-size: 2.6rem;
  margin-bottom: 1.5rem;
}

.es-modal-text {
  color: var(--es-secondary-text);
  margin-bottom: 3rem;
}


.es-service-hero {
  height: 50vh;
  min-height: 40rem;
  display: flex;
  align-items: center;
  position: relative;
  padding: 0;
  overflow: hidden;
  margin-bottom: 4rem;
}

.es-service-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: linear-gradient(to top, var(--es-dark-bg), transparent);
  z-index: 2;
}

.es-service-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  z-index: 1;
}

.es-service-hero-content {
  position: relative;
  z-index: 3;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.es-service-hero-title {
  font-size: 4.2rem;
  margin-bottom: 2rem;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.es-service-hero-subtitle {
  font-size: 2rem;
  margin-bottom: 3rem;
  color: var(--es-secondary-text);
  max-width: 70rem;
  margin-left: auto;
  margin-right: auto;
}

.es-service-section {
  padding: 6rem 0;
}

.es-service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(35rem, 1fr));
  gap: 4rem;
  align-items: center;
}

.es-service-image {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--es-shadow);
  position: relative;
}

.es-service-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 0, 170, 0.2), rgba(0, 255, 255, 0.2));
}

.es-service-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: all 0.5s ease;
}

.es-service-image:hover img {
  transform: scale(1.05);
}

.es-service-content h3 {
  margin-bottom: 2rem;
}

.es-service-steps {
  margin-top: 4rem;
}

.es-step-item {
  display: flex;
  margin-bottom: 3rem;
}

.es-step-number {
  flex-shrink: 0;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--es-neon-pink), var(--es-electric-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 2rem;
  margin-right: 2rem;
  box-shadow: 0 5px 15px rgba(255, 0, 170, 0.3);
}

.es-step-content {
  flex-grow: 1;
}

.es-step-title {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.es-contact-map {
  height: 40rem;
  margin-top: 4rem;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--es-shadow);
}

.es-contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.es-contact-details {
  margin-top: 4rem;
}

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

.es-contact-icon {
  flex-shrink: 0;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: var(--es-card-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-right: 2rem;
  color: var(--es-neon-pink);
  box-shadow: var(--es-shadow);
}

.es-contact-text h4 {
  margin-bottom: 0.5rem;
}

.es-contact-text p {
  color: var(--es-secondary-text);
  margin-bottom: 0;
}

.es-contact-action {
  margin-top: 1rem;
}

.es-thankyou {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 20rem);
  text-align: center;
  padding: 4rem 2rem;
}

.es-thankyou-content {
  max-width: 60rem;
}

.es-thankyou-icon {
  font-size: 8rem;
  color: var(--es-neon-pink);
  margin-bottom: 3rem;
}

.es-thankyou-title {
  font-size: 4.2rem;
  margin-bottom: 2rem;
}

.es-thankyou-text {
  font-size: 2rem;
  color: var(--es-secondary-text);
  margin-bottom: 4rem;
}


.es-legal-page {
  padding: 12rem 0 8rem;
}

.es-legal-content {
  max-width: 80rem;
  margin: 0 auto;
  background: var(--es-card-bg);
  border-radius: 1rem;
  padding: 4rem;
  box-shadow: var(--es-shadow);
}

.es-legal-title {
  font-size: 3.6rem;
  margin-bottom: 3rem;
}

.es-legal-updated {
  color: var(--es-secondary-text);
  margin-bottom: 4rem;
  font-size: 1.6rem;
}

.es-legal-section {
  margin-bottom: 4rem;
}

.es-legal-section-title {
  font-size: 2.4rem;
  margin-bottom: 2rem;
}

.es-legal-list {
  margin-bottom: 2rem;
}

.es-legal-list li {
  margin-bottom: 1rem;
}


.es-fixed-cta {
  position: fixed;
  bottom: 3rem;
  right: 3rem;
  z-index: 900;
}

.es-cta-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--es-neon-pink), var(--es-electric-blue));
  color: var(--es-light-text);
  box-shadow: var(--es-shadow);
  transition: all 0.3s ease;
  cursor: pointer;
}

.es-cta-button i {
  font-size: 2.4rem;
}

.es-cta-button:hover {
  transform: scale(1.1);
  box-shadow: var(--es-glow);
}


@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.es-fade-in {
  animation: fadeIn 1s ease forwards;
}


.iti {
  width: 100%;
}

.iti__flag {
  background-image: url("https://cdn.jsdelivr.net/npm/intl-tel-input@19.5.1/build/img/flags.png");
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .iti__flag {
    background-image: url("https://cdn.jsdelivr.net/npm/intl-tel-input@19.5.1/build/img/flags@2x.png");
  }
}


@media (max-width: 1200px) {
  html {
    font-size: 58%;
  }
  
  .es-dashboard-grid,
  .es-methodology-grid,
  .es-benefits-grid,
  .es-audience-grid,
  .es-pricing-grid {
    grid-template-columns: repeat(auto-fit, minmax(28rem, 1fr));
  }
}

@media (max-width: 992px) {
  html {
    font-size: 56%;
  }
  
  .es-hero-title {
    font-size: 4.2rem;
  }
  
  .es-hero-subtitle {
    font-size: 2rem;
  }
  
  .es-service-grid {
    grid-template-columns: 1fr;
  }
  
  .es-service-image {
    margin-bottom: 3rem;
  }
  
  .es-cookie-consent-container {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 54%;
  }
  
  .es-hamburger {
    display: flex;
  }
  
  .es-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 40rem;
    height: 100vh;
    background: var(--es-dark-bg);
    padding: 10rem 3rem 3rem;
    transition: all 0.5s ease;
    z-index: 1000;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
    overflow-y: auto;
  }
  
  .es-nav.active {
    right: 0;
  }
  
  .es-nav-list {
    flex-direction: column;
    width: 100%;
  }
  
  .es-nav-item {
    margin: 0;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .es-nav-link {
    padding: 1.5rem 0;
    display: block;
    width: 100%;
  }
  
  .es-nav-contact {
    margin: 2rem 0 0;
  }
  
  .es-subnav {
    position: static;
    width: 100%;
    background: transparent;
    border: none;
    backdrop-filter: none;
    padding: 0 0 1rem 2rem;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    display: none;
  }
  
  .es-nav-item.active .es-subnav {
    display: block;
  }
  
  .es-hero {
    min-height: 50rem;
  }
  
  .es-hero-title {
    font-size: 3.6rem;
  }
  
  .es-hero-subtitle {
    font-size: 1.8rem;
  }
  
  .es-dashboard-grid,
  .es-methodology-grid,
  .es-benefits-grid,
  .es-audience-grid,
  .es-pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .es-footer-grid {
    grid-template-columns: 1fr;
  }
  
  .es-legal-content {
    padding: 3rem 2rem;
  }
}

@media (max-width: 576px) {
  html {
    font-size: 52%;
  }
  
  .es-section {
    padding: 6rem 0;
  }
  
  .es-hero-title {
    font-size: 3.2rem;
  }
  
  .es-form-container {
    padding: 3rem 2rem;
  }
  
  .es-cookie-modal-content {
    padding: 2rem;
  }
  
  .es-cookie-modal-buttons {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .es-cookie-modal-buttons .es-btn {
    width: 100%;
  }
  
  .es-footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  
  .es-fixed-cta {
    bottom: 2rem;
    right: 2rem;
  }
  
  .es-cta-button {
    width: 5rem;
    height: 5rem;
  }
  
  .es-cta-button i {
    font-size: 2rem;
  }
}