/* Design System Variables */
:root {
  /* Colors - Dark theme with purple-turquoise neon */
  --color-bg: #0a0a0f;
  --color-surface: #16161f;
  --color-surface-light: #1e1e2e;
  --color-primary: #8b5cf6;
  --color-primary-dark: #7c3aed;
  --color-accent: #14b8a6;
  --color-accent-dark: #0d9488;
  --color-text-main: #f8f8f8;
  --color-text-muted: #a1a1b5;
  --color-border: #2a2a3a;
  --color-success: #10b981;
  --color-error: #ef4444;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #8b5cf6 0%, #14b8a6 100%);
  --gradient-accent: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
  --gradient-hero: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(20, 184, 166, 0.1) 100%);

  /* Fonts */
  --font-heading: "Space Grotesk", sans-serif;
  --font-body: "Inter", sans-serif;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(139, 92, 246, 0.1);
  --shadow-md: 0 4px 16px rgba(139, 92, 246, 0.15);
  --shadow-lg: 0 8px 32px rgba(139, 92, 246, 0.2);
  --glow-primary: 0 0 20px rgba(139, 92, 246, 0.4);
  --glow-accent: 0 0 20px rgba(20, 184, 166, 0.4);
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.back-to-top{
  display: none !important;
}
.cookie-consent-banner{
  position: fixed;
  bottom: 0;
  left: 0;
  background: #000000;
  width: 100%;
}

.cookie-consent-content{
  max-width: 1260px;
  width: 100%;
  margin: 0 auto;
  padding: 20px;
}


body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-main);
  background-color: var(--color-bg);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.75rem;
}

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

a:hover {
  color: var(--color-accent);
}

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

/* Header and Navigation */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10, 10, 15, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
}

.navbar {
  padding: 1rem 0;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-link {
  color: var(--color-text-muted) !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-primary) !important;
}

.nav-link-cta {
  background: var(--gradient-primary);
  color: var(--color-text-main) !important;
  border-radius: 8px;
  padding: 0.5rem 1.5rem !important;
}

.nav-link-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--glow-primary);
}

/* Hero Section */
.hero-section {
  position: relative;
  padding: 150px 0 100px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-background-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-hero);
  opacity: 0.5;
  z-index: -1;
}

.hero-background-decoration::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
}

.hero-background-decoration::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #f8f8f8 0%, #8b5cf6 50%, #14b8a6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero-for {
  margin-top: 3rem;
}

.for-title {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-accent);
  margin-bottom: 1rem;
  font-weight: 600;
}

.for-list {
  list-style: none;
  padding: 0;
}

.for-list li {
  padding: 0.5rem 0;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.for-list i {
  color: var(--color-primary);
  font-size: 1.25rem;
}

.hero-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}

.hero-card .card-title {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--color-primary);
}

.benefits-list {
  list-style: none;
  padding: 0;
}

.benefits-list li {
  padding: 0.75rem 0;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--color-text-muted);
  border-bottom: 1px solid var(--color-border);
}

.benefits-list li:last-child {
  border-bottom: none;
}

.benefits-list i {
  color: var(--color-accent);
  font-size: 1.25rem;
}

/* Buttons */
.btn {
  padding: 0.875rem 2rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: none;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--color-text-main);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--glow-primary);
  color: var(--color-text-main);
}

.btn-secondary {
  background: var(--color-surface);
  color: var(--color-text-main);
  border: 1px solid var(--color-border);
}

.btn-secondary:hover {
  background: var(--color-surface-light);
  border-color: var(--color-primary);
  color: var(--color-text-main);
}

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

.btn-outline-primary:hover {
  background: var(--color-primary);
  color: var(--color-text-main);
}

/* Section Styles */
section {
  padding: 80px 0;
}

.section-header {
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  max-width: 800px;
  margin: 0 auto;
}

/* Problems Section */
.problems-section {
  background: var(--color-surface);
}

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

.problem-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-lg);
}

.problem-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.problem-icon i {
  font-size: 1.75rem;
  color: var(--color-text-main);
}

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

.problem-description {
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* Audience Section */
.audience-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  transition: all 0.3s ease;
}

.audience-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-accent);
  box-shadow: var(--shadow-lg);
}

.audience-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.audience-icon i {
  font-size: 1.75rem;
  color: var(--color-text-main);
}

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

.audience-description {
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* Image Section */
.image-section {
  padding: 60px 0;
}

.image-wrapper {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
}

/* Approach Section */
.approach-section {
  background: var(--color-surface);
}

.approach-heading {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: var(--color-primary);
}

.approach-text {
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.approach-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.approach-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
}

.approach-card-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.approach-card-icon i {
  font-size: 1.5rem;
  color: var(--color-text-main);
}

.approach-card-title {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}

.approach-card-text {
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* Process Section */
.process-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.process-step {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
}

.process-step:last-child {
  margin-bottom: 0;
}

.process-step::after {
  content: "";
  position: absolute;
  left: 35px;
  top: 80px;
  width: 2px;
  height: calc(100% + 3rem);
  background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-accent) 100%);
}

.process-step:last-child::after {
  display: none;
}

.step-number {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  box-shadow: var(--glow-primary);
  position: relative;
  z-index: 1;
}

.step-content {
  flex: 1;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 2rem;
}

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

.step-description {
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.step-deliverable {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--color-bg);
  border-radius: 8px;
  color: var(--color-accent);
  font-weight: 500;
}

.step-deliverable i {
  font-size: 1.25rem;
}

/* Results Section */
.results-section {
  background: var(--color-surface);
}

.result-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
}

.result-label {
  display: inline-block;
  background: var(--gradient-primary);
  color: var(--color-text-main);
  padding: 0.375rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

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

.result-situation,
.result-action,
.result-outcome {
  margin-bottom: 1.5rem;
}

.result-situation h4,
.result-action h4,
.result-outcome h4 {
  font-size: 1rem;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.result-situation p,
.result-action p,
.result-outcome p {
  color: var(--color-text-muted);
  line-height: 1.7;
}

.results-image-wrapper {
  margin-top: 3rem;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
}

/* Services Highlight */
.services-highlight-section {
  background: var(--gradient-primary);
  text-align: center;
  padding: 80px 0;
}

.services-highlight-content {
  max-width: 800px;
  margin: 0 auto;
}

.highlight-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.highlight-text {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* FAQ Section */
.faq-section {
  background: var(--color-surface);
}

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

.accordion-button {
  background: var(--color-bg);
  color: var(--color-text-main);
  font-weight: 600;
  font-size: 1.125rem;
  padding: 1.5rem;
  border: none;
}

.accordion-button:not(.collapsed) {
  background: var(--color-surface);
  color: var(--color-primary);
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: var(--color-primary);
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%238b5cf6'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
  padding: 1.5rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* Contact Form Section */
.contact-form-section {
  padding: 80px 0;
}

.contact-form-wrapper {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 3rem;
  box-shadow: var(--shadow-lg);
}

.form-section-title {
  font-size: 2rem;
  margin-bottom: 1rem;
  text-align: center;
}

.form-section-subtitle {
  color: var(--color-text-muted);
  text-align: center;
  margin-bottom: 2rem;
}

.form-label {
  color: var(--color-text-main);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.form-control,
.form-select {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  color: var(--color-text-main);
  padding: 0.75rem 1rem;
  border-radius: 8px;
}

.form-control:focus,
.form-select:focus {
  background: var(--color-bg);
  border-color: var(--color-primary);
  color: var(--color-text-main);
  box-shadow: 0 0 0 0.2rem rgba(139, 92, 246, 0.25);
}

.form-control::placeholder {
  color: var(--color-text-muted);
}

.form-check-input {
  background-color: var(--color-bg);
  border-color: var(--color-border);
}

.form-check-input:checked {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}

.form-check-label {
  color: var(--color-text-muted);
}

.form-check-label a {
  color: var(--color-primary);
}

/* Final CTA */
.final-cta-section {
  background: var(--gradient-accent);
  padding: 100px 0;
}

.final-cta-content {
  max-width: 900px;
  margin: 0 auto;
}

.final-cta-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.final-cta-text {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.btn-light {
  background: white;
  color: var(--color-bg);
  font-weight: 600;
}

.btn-light:hover {
  background: var(--color-text-main);
  color: var(--color-bg);
  transform: translateY(-2px);
}

/* Footer */
.site-footer {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  padding: 60px 0 30px;
}

.footer-brand-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-brand-description {
  color: var(--color-text-muted);
  line-height: 1.7;
}

.footer-title {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  color: var(--color-primary);
}

.footer-menu {
  list-style: none;
  padding: 0;
}

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

.footer-menu a {
  color: var(--color-text-muted);
  transition: all 0.3s ease;
}

.footer-menu a:hover {
  color: var(--color-primary);
  padding-left: 5px;
}

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

.footer-contact-list li {
  margin-bottom: 1rem;
  color: var(--color-text-muted);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.footer-contact-list i {
  color: var(--color-accent);
  margin-top: 3px;
}

.footer-contact-list a {
  color: var(--color-text-muted);
}

.footer-contact-list a:hover {
  color: var(--color-primary);
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
  text-align: center;
}

.footer-copyright {
  color: var(--color-text-muted);
  margin: 0;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--color-surface);
  border-top: 2px solid var(--color-primary);
  padding: 1.5rem;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  display: none;
}

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

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

.cookie-text {
  color: var(--color-text-muted);
  margin: 0;
  flex: 1;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

/* Cookie Modal */
.modal-content {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 12px;
}

.modal-header {
  border-bottom: 1px solid var(--color-border);
}

.modal-title {
  color: var(--color-text-main);
}

.btn-close {
  filter: invert(1);
}

.modal-body {
  color: var(--color-text-muted);
}

.cookie-category {
  padding: 1rem;
  background: var(--color-bg);
  border-radius: 8px;
  margin-bottom: 1rem;
}

.cookie-category:last-child {
  margin-bottom: 0;
}

.cookie-description {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin: 0.5rem 0 0;
}

.form-check-label strong {
  color: var(--color-text-main);
}

.modal-footer {
  border-top: 1px solid var(--color-border);
}

/* Page Header */
.page-header {
  padding: 150px 0 80px;
  text-align: center;
  background: var(--gradient-hero);
  border-bottom: 1px solid var(--color-border);
}

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

.page-subtitle {
  font-size: 1.25rem;
  color: var(--color-text-muted);
}

/* Contact Page */
.contact-page-section {
  padding: 80px 0;
}

.contact-info-wrapper {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 3rem;
  height: 100%;
}

.contact-intro {
    color: var(--color-text-muted);
    line-height: 1.7\
