
:root {
  --primary: #2A0E61;
  --secondary: #FF6B9D;
  --accent: #00E5FF;
  --background: #0F0521;
  --text-light: #F8F9FA;
  --text-dark: #121212;
  --gradient-start: #FF6B9D;
  --gradient-end: #6B2AFF;
  --success: #00E676;
  --error: #FF5252;
  --card-bg: rgba(15, 5, 33, 0.8);
  --card-border: rgba(255, 107, 157, 0.2);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--background);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--accent);
  color: var(--background);
  padding: 8px 16px;
  z-index: 100;
  transition: top 0.3s;
}

.skip-link:focus {
  top: 0;
}


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

h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1.25rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--secondary);
  text-decoration: none;
}


.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}


.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(15, 5, 33, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 107, 157, 0.2);
  transition: all 0.3s ease;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

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

.logo img {
  height: 40px;
  width: auto;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 1.5rem;
  cursor: pointer;
}

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

.nav-item {
  position: relative;
  margin-left: 2rem;
}

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

.nav-link:hover,
.nav-link.active {
  color: var(--secondary);
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--secondary);
  transition: width 0.3s ease;
}

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

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: rgba(15, 5, 33, 0.95);
  backdrop-filter: blur(10px);
  min-width: 250px;
  border: 1px solid rgba(255, 107, 157, 0.2);
  border-radius: 8px;
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1001;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: block;
  padding: 0.5rem 1rem;
  color: var(--text-light);
  transition: all 0.3s ease;
}

.dropdown-item:hover {
  background-color: rgba(255, 107, 157, 0.1);
  color: var(--secondary);
}


.hero {
  position: relative;
  padding: 120px 0 80px;
  overflow: hidden;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(15, 5, 33, 0.8) 0%, rgba(42, 14, 97, 0.6) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 650px;
}

.hero-title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(to right, var(--secondary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
  color: var(--text-light);
  box-shadow: 0 4px 15px rgba(255, 107, 157, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 107, 157, 0.6);
  color: var(--text-light);
}

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

.btn-outline:hover {
  background: var(--secondary);
  color: var(--text-light);
}


.section {
  padding: 80px 0;
  position: relative;
}

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

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
  margin: 1rem auto 0;
  border-radius: 2px;
}


.services {
  position: relative;
  background-color: rgba(15, 5, 33, 0.7);
}

.services-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/service-cards-bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  z-index: -1;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-card {
  background-color: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(255, 107, 157, 0.2);
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--secondary);
}

.service-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.service-description {
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-features {
  list-style: none;
}

.service-features li {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}

.service-features li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-right: 0.5rem;
  color: var(--accent);
  font-size: 0.875rem;
}


.before-after {
  position: relative;
}

.before-after-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
}

.comparison-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.comparison-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.comparison-content {
  padding: 1.5rem;
  background-color: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 0 0 12px 12px;
}

.comparison-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--secondary);
}

.comparison-metrics {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.metric {
  text-align: center;
}

.metric-label {
  font-size: 0.875rem;
  opacity: 0.8;
  margin-bottom: 0.25rem;
}

.metric-value {
  font-size: 1.5rem;
  font-weight: 600;
}

.metric-before {
  color: var(--error);
}

.metric-after {
  color: var(--success);
}


.case-studies {
  background-color: rgba(15, 5, 33, 0.7);
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.case-card {
  background-color: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.case-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(255, 107, 157, 0.2);
}

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

.case-content {
  padding: 1.5rem;
}

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

.case-description {
  margin-bottom: 1rem;
}

.case-result {
  background-color: rgba(0, 230, 118, 0.1);
  border-left: 3px solid var(--success);
  padding: 0.75rem 1rem;
  margin-top: 1rem;
}


.process {
  position: relative;
}

.process-image {
  width: 100%;
  max-width: 800px;
  margin: 0 auto 3rem;
  display: block;
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.process-step {
  flex: 1;
  min-width: 200px;
  max-width: 300px;
  text-align: center;
  padding: 1.5rem;
  background-color: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(255, 107, 157, 0.2);
}

.step-number {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
  border-radius: 50%;
  margin: 0 auto 1rem;
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--text-light);
}

.step-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}


.integrations {
  background-color: rgba(15, 5, 33, 0.7);
}

.integration-image {
  width: 100%;
  max-width: 800px;
  margin: 0 auto 3rem;
  display: block;
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.integration-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.integration-type {
  background-color: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.integration-type:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(255, 107, 157, 0.2);
}

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

.integration-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}


.packages {
  position: relative;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.package-card {
  background-color: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.package-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(255, 107, 157, 0.2);
}

.package-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--secondary);
}

.package-description {
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.package-features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.package-features li {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: flex-start;
}

.package-features li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-right: 0.5rem;
  color: var(--accent);
  font-size: 0.875rem;
  margin-top: 0.25rem;
}


.contact-form-section {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(15, 5, 33, 0.9) 0%, rgba(42, 14, 97, 0.8) 100%);
}

.form-container {
  background-color: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 2rem;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.form-title {
  text-align: center;
  margin-bottom: 2rem;
}

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

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

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  background-color: rgba(15, 5, 33, 0.5);
  border: 1px solid rgba(255, 107, 157, 0.3);
  border-radius: 8px;
  color: var(--text-light);
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(255, 107, 157, 0.2);
}

.form-control::placeholder {
  color: rgba(248, 249, 250, 0.5);
}

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

.checkbox-input {
  margin-right: 0.5rem;
  margin-top: 0.25rem;
}

.checkbox-label {
  font-size: 0.875rem;
}

.submit-btn {
  width: 100%;
  padding: 0.75rem;
  font-weight: 600;
}


.faq {
  background-color: rgba(15, 5, 33, 0.7);
}

.accordion {
  max-width: 800px;
  margin: 0 auto;
}

.accordion-item {
  background-color: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.accordion-header {
  padding: 0;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
}

.accordion-button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1.25rem;
  background-color: transparent;
  border: none;
  color: var(--text-light);
  font-weight: 600;
  font-size: 1.125rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.accordion-button:hover {
  color: var(--secondary);
}

.accordion-button:focus {
  outline: none;
}

.accordion-button::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.875rem;
  color: var(--secondary);
  transition: all 0.3s ease;
}

.accordion-button[aria-expanded="true"]::after {
  transform: rotate(180deg);
}

.accordion-collapse {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-collapse.show {
  max-height: 500px;
}

.accordion-body {
  padding: 0 1.25rem 1.25rem;
}


.about-section {
  padding: 120px 0 80px;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
}

.about-card {
  background-color: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
  height: 100%;
}

.about-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(255, 107, 157, 0.2);
}

.about-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--secondary);
}

.about-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}


.strategy-section {
  padding: 120px 0 80px;
}

.strategy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
}

.strategy-card {
  background-color: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
  height: 100%;
}

.strategy-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(255, 107, 157, 0.2);
}

.strategy-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--secondary);
}

.strategy-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.strategy-links {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.strategy-link-card {
  background-color: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
  text-align: center;
  height: 100%;
}

.strategy-link-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(255, 107, 157, 0.2);
  background-color: rgba(255, 107, 157, 0.1);
}

.strategy-link-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--accent);
}

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

.strategy-link-description {
  margin-bottom: 1.5rem;
}


.sub-strategy-section {
  padding: 120px 0 80px;
}

.sub-strategy-image {
  width: 100%;
  max-width: 800px;
  margin: 0 auto 3rem;
  display: block;
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.sub-strategy-content {
  max-width: 800px;
  margin: 0 auto;
}


.contact-section {
  padding: 120px 0 80px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
}

.contact-info {
  background-color: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 2rem;
}

.contact-title {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

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

.contact-icon {
  font-size: 1.25rem;
  margin-right: 1rem;
  color: var(--secondary);
  min-width: 24px;
}

.contact-text {
  flex-grow: 1;
}

.contact-map {
  border-radius: 12px;
  overflow: hidden;
  height: 400px;
}

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


.thank-you-section {
  padding: 120px 0 80px;
  text-align: center;
  min-height: calc(100vh - 300px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.thank-you-icon {
  font-size: 5rem;
  color: var(--success);
  margin-bottom: 2rem;
}

.thank-you-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.thank-you-description {
  max-width: 600px;
  margin: 0 auto 2rem;
}


.footer {
  background-color: rgba(15, 5, 33, 0.95);
  border-top: 1px solid rgba(255, 107, 157, 0.2);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
}

.footer-logo {
  margin-bottom: 1.5rem;
}

.footer-logo img {
  height: 40px;
  width: auto;
}

.footer-description {
  margin-bottom: 1.5rem;
}

.footer-title {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
  border-radius: 2px;
}

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

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--text-light);
  opacity: 0.8;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--secondary);
}

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

.footer-contact li {
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
}

.footer-contact-icon {
  margin-right: 0.75rem;
  color: var(--secondary);
  font-size: 1.125rem;
  min-width: 20px;
}

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

.footer-copyright {
  margin-bottom: 1rem;
  opacity: 0.7;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
}

.footer-legal-link {
  margin-left: 1.5rem;
  color: var(--text-light);
  opacity: 0.7;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.footer-legal-link:hover {
  opacity: 1;
  color: var(--secondary);
}


.cookie-consent {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  background-color: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 1.5rem;
  z-index: 1000;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  max-width: 1200px;
  margin: 0 auto;
  transform: translateY(100%);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.cookie-consent.show {
  transform: translateY(0);
  opacity: 1;
}

.cookie-text {
  flex: 1;
  min-width: 280px;
}

.cookie-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.cookie-description {
  font-size: 0.875rem;
  opacity: 0.9;
}

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

.cookie-btn {
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.accept-all {
  background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
  color: var(--text-light);
  border: none;
}

.accept-all:hover {
  box-shadow: 0 4px 10px rgba(255, 107, 157, 0.4);
}

.accept-necessary {
  background: transparent;
  color: var(--text-light);
  border: 1px solid var(--secondary);
}

.accept-necessary:hover {
  background-color: rgba(255, 107, 157, 0.1);
}

.customize-cookies {
  background: transparent;
  color: var(--accent);
  border: none;
  text-decoration: underline;
}

.customize-cookies:hover {
  color: var(--secondary);
}

.cookie-settings-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 5, 33, 0.9);
  z-index: 1001;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.cookie-settings-modal.show {
  opacity: 1;
  visibility: visible;
}

.cookie-settings-content {
  background-color: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 2rem;
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
}

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

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

.close-settings {
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.close-settings:hover {
  color: var(--secondary);
}

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

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

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

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

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

.category-checkbox {
  opacity: 0;
  width: 0;
  height: 0;
}

.category-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  border-radius: 24px;
}

.category-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: var(--text-light);
  transition: all 0.3s ease;
  border-radius: 50%;
}

.category-checkbox:checked + .category-slider {
  background-color: var(--secondary);
}

.category-checkbox:checked + .category-slider:before {
  transform: translateX(26px);
}

.category-checkbox:disabled + .category-slider {
  opacity: 0.5;
  cursor: not-allowed;
}

.category-description {
  font-size: 0.875rem;
  opacity: 0.9;
}

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


.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 5, 33, 0.9);
  z-index: 1001;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal.show {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: linear-gradient(135deg, rgba(42, 14, 97, 0.9) 0%, rgba(15, 5, 33, 0.9) 100%);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 2rem;
  max-width: 500px;
  width: 90%;
  text-align: center;
  position: relative;
}

.modal-icon {
  font-size: 3rem;
  color: var(--success);
  margin-bottom: 1.5rem;
}

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

.modal-description {
  margin-bottom: 1.5rem;
}


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

.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: 3rem;
}

.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: 3rem;
}

.py-1 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.py-2 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.py-3 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.py-4 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.py-5 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.px-1 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.px-2 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.px-3 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.px-4 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.px-5 {
  padding-left: 3rem;
  padding-right: 3rem;
}


.iti {
  width: 100%;
}

.iti__flag-container {
  z-index: 10;
}


@media (max-width: 991px) {
  h1 {
    font-size: 2.25rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .section {
    padding: 60px 0;
  }
}

@media (max-width: 767px) {
  .nav-toggle {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: rgba(15, 5, 33, 0.95);
    backdrop-filter: blur(10px);
    flex-direction: column;
    align-items: center;
    padding: 2rem 0;
    transition: all 0.3s ease;
    overflow-y: auto;
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-item {
    margin: 1rem 0;
  }
  
  .dropdown-menu {
    position: static;
    width: 100%;
    background-color: transparent;
    border: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0;
  }
  
  .dropdown.active .dropdown-menu {
    max-height: 500px;
    padding: 0.5rem 0;
  }
  
  .dropdown-item {
    padding: 0.5rem 0;
    text-align: center;
  }
  
  .hero {
    padding: 100px 0 60px;
    min-height: auto;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.125rem;
  }
  
  .section-title {
    margin-bottom: 2rem;
  }
  
  .footer-grid,
  .footer-bottom {
    gap: 2rem;
  }
  
  .footer-legal {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .footer-legal-link {
    margin-left: 0;
    margin-bottom: 0.5rem;
  }
  
  .cookie-consent {
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 12px 12px 0 0;
  }
}

@media (max-width: 575px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .hero-title {
    font-size: 1.75rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .btn {
    padding: 0.625rem 1.25rem;
  }
  
  .section {
    padding: 50px 0;
  }
  
  .service-card,
  .comparison-card,
  .case-card,
  .process-step,
  .integration-type,
  .package-card {
    padding: 1.5rem;
  }
  
  .form-container {
    padding: 1.5rem;
  }
}