
:root {
  --primary: #6C63FF;
  --secondary: #FF6584;
  --accent: #44D7B6;
  --bg-gradient: linear-gradient(135deg, #F5F7FA 0%, #E4EDF9 100%);
  --text-primary: #2D3748;
  --text-secondary: #4A5568;
  --light-bg: #F8FAFC;
  --blob-peach: #FFD6E0;
  --blob-lavender: #E0E7FF;
  --blob-mint: #D1FAE5;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --radius-sm: 0.5rem;
  --radius-md: 1rem;
  --radius-lg: 2rem;
  --radius-full: 9999px;
  --transition: all 0.3s ease;
}


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

body {
  font-family: 'Lexend', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-gradient);
  overflow-x: hidden;
}

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

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

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

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
}

h4 {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
}

p {
  margin-bottom: 1.5rem;
}

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

button, .btn {
  cursor: pointer;
  font-family: 'Lexend', sans-serif;
  font-weight: 500;
  border: none;
  border-radius: var(--radius-full);
  padding: 0.75rem 1.5rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

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

section {
  padding: 5rem 0;
}


.blob {
  position: absolute;
  border-radius: var(--radius-full);
  filter: blur(50px);
  opacity: 0.5;
  z-index: -1;
}

.blob-1 {
  background-color: var(--blob-peach);
  width: 300px;
  height: 300px;
  top: -100px;
  left: -150px;
  animation: blob-move 20s infinite alternate ease-in-out;
}

.blob-2 {
  background-color: var(--blob-lavender);
  width: 400px;
  height: 400px;
  top: 200px;
  right: -200px;
  animation: blob-move 25s infinite alternate-reverse ease-in-out;
}

.blob-3 {
  background-color: var(--blob-mint);
  width: 350px;
  height: 350px;
  bottom: -100px;
  left: 30%;
  animation: blob-move 22s infinite alternate ease-in-out;
}

@keyframes blob-move {
  0% {
    transform: translate(0, 0) scale(1) rotate(0deg);
  }
  33% {
    transform: translate(50px, 20px) scale(1.1) rotate(120deg);
  }
  66% {
    transform: translate(-30px, 40px) scale(0.9) rotate(240deg);
  }
  100% {
    transform: translate(20px, -50px) scale(1.05) rotate(360deg);
  }
}


.btn-primary {
  background-color: var(--primary);
  color: white;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background-color: #5A52E0;
  color: white;
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: var(--secondary);
  color: white;
}

.btn-secondary:hover {
  background-color: #FF4D73;
  color: white;
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.btn-accent {
  background-color: var(--accent);
  color: white;
}

.btn-accent:hover {
  background-color: #33C6A5;
  color: white;
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

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

.btn-outline:hover {
  background-color: var(--primary);
  color: white;
  box-shadow: var(--shadow-md);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}


.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  padding: 1rem 0;
}

.header.scrolled {
  padding: 0.75rem 0;
  box-shadow: var(--shadow-md);
}

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

.logo {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--text-primary);
}

.logo img {
  height: 40px;
  margin-right: 0.5rem;
}

.nav-desktop {
  display: flex;
}

.nav-desktop ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-desktop a {
  color: var(--text-primary);
  font-weight: 500;
  position: relative;
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--primary);
  border-radius: var(--radius-full);
  transition: var(--transition);
}

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

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


.nav-mobile {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: white;
  box-shadow: 0 -1px 10px rgba(0, 0, 0, 0.1);
  border-radius: 1.5rem 1.5rem 0 0;
  z-index: 1000;
  padding: 1rem 0 1.5rem;
}

.nav-mobile ul {
  display: flex;
  justify-content: space-around;
  list-style: none;
  padding: 0 1rem;
}

.nav-mobile li {
  flex: 1;
  text-align: center;
}

.nav-mobile a {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--text-secondary);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.5rem;
  transition: var(--transition);
}

.nav-mobile a i {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.nav-mobile a:hover,
.nav-mobile a.active {
  color: var(--primary);
}

.floating-action-button {
  position: fixed;
  bottom: 5rem;
  right: 1.5rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  z-index: 1001;
  transition: var(--transition);
}

.floating-action-button:hover {
  background-color: #5A52E0;
  transform: scale(1.05);
}

.floating-action-button i {
  font-size: 1.5rem;
}


.hero {
  padding: 8rem 0 5rem;
  position: relative;
  overflow: hidden;
}

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

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

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-image {
  position: absolute;
  top: 50%;
  right: -5%;
  transform: translateY(-50%);
  width: 50%;
  max-width: 600px;
  z-index: 0;
}


.metrics {
  padding: 3rem 0;
  background-color: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

.metric {
  text-align: center;
}

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

.metric-label {
  font-size: 1rem;
  color: var(--text-secondary);
}


.how-it-works {
  padding: 5rem 0;
}

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

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

.step {
  background-color: white;
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

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

.step-number {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 4rem;
  font-weight: 700;
  color: rgba(108, 99, 255, 0.1);
  line-height: 1;
}

.step-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.step h3 {
  margin-bottom: 1rem;
}


.products {
  padding: 5rem 0;
}

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

.product-card {
  background-color: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

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

.product-image {
  height: 200px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-content {
  padding: 1.5rem;
}

.product-content h3 {
  margin-bottom: 0.75rem;
}

.product-content p {
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
}


.features {
  padding: 5rem 0;
  background-color: var(--light-bg);
  border-radius: var(--radius-lg);
}

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

.feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.feature-icon {
  background-color: rgba(108, 99, 255, 0.1);
  color: var(--primary);
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.feature-content h4 {
  margin-bottom: 0.5rem;
}

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


.case-studies {
  padding: 5rem 0;
}

.case-card {
  background-color: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
}

.case-card-image {
  height: 240px;
  overflow: hidden;
}

.case-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.case-card:hover .case-card-image img {
  transform: scale(1.05);
}

.case-card-content {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.case-card-content h3 {
  margin-bottom: 1rem;
}

.case-card-content p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.case-card-footer {
  margin-top: auto;
}


.contact-form {
  background-color: white;
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-lg);
  max-width: 800px;
  margin: 0 auto;
}

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

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

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: 'Lexend', sans-serif;
  font-size: 1rem;
  border: 2px solid #E2E8F0;
  border-radius: var(--radius-md);
  transition: var(--transition);
}

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

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

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

.form-check-input {
  width: 20px;
  height: 20px;
  margin-top: 0.2rem;
}

.form-check-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

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


.iti {
  width: 100%;
}


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

.advantage-card {
  background-color: white;
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

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

.advantage-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.advantage-card h3 {
  margin-bottom: 1rem;
}

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


.faq {
  padding: 5rem 0;
  background-color: var(--light-bg);
  border-radius: var(--radius-lg);
}

.faq-item {
  background-color: white;
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  margin-bottom: 1rem;
}

.faq-question {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-answer {
  color: var(--text-secondary);
}


.case-study {
  max-width: 800px;
  margin: 0 auto;
  padding: 8rem 0 5rem;
}

.case-study-header {
  margin-bottom: 3rem;
}

.case-study-header h1 {
  margin-bottom: 1rem;
}

.case-study-meta {
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.case-study-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 2rem;
}

.case-study-image img {
  width: 100%;
  height: auto;
}

.case-study-content {
  font-size: 1.1rem;
}

.case-study-content h2 {
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}

.case-study-content h3 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.case-study-content p {
  margin-bottom: 1.5rem;
}

.case-study-content ul,
.case-study-content ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.case-study-content li {
  margin-bottom: 0.5rem;
}


.contact-info {
  background-color: white;
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-lg);
  margin-bottom: 3rem;
}

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

.contact-info-item:last-child {
  margin-bottom: 0;
}

.contact-info-icon {
  color: var(--primary);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-info-content h4 {
  margin-bottom: 0.5rem;
}

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

.contact-map {
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 400px;
}

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


.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

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

.modal-content {
  background-color: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  max-width: 500px;
  width: 90%;
  text-align: center;
  position: relative;
  transform: translateY(20px);
  transition: var(--transition);
}

.modal.active .modal-content {
  transform: translateY(0);
}

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


.cookie-consent {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 1.5rem;
  max-width: 500px;
  width: 90%;
  z-index: 1010;
  display: none;
}

.cookie-consent.active {
  display: block;
}

.cookie-text {
  margin-bottom: 1.5rem;
}

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

.cookie-settings-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2001;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

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

.cookie-settings-content {
  background-color: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  max-width: 600px;
  width: 90%;
  position: relative;
  transform: translateY(20px);
  transition: var(--transition);
  max-height: 80vh;
  overflow-y: auto;
}

.cookie-settings-modal.active .cookie-settings-content {
  transform: translateY(0);
}

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

.cookie-settings-header h3 {
  margin-bottom: 0;
}

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

.cookie-category {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #E2E8F0;
}

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

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

.cookie-category-header h4 {
  margin-bottom: 0;
}

.cookie-category-toggle {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 30px;
}

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

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

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

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

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

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

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

.cookie-settings-trigger {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  background-color: white;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  z-index: 1005;
  color: var(--text-primary);
  font-size: 1.5rem;
}


.footer {
  background-color: white;
  padding: 5rem 0 2rem;
  margin-top: 5rem;
  position: relative;
}

.footer-mobile-padding {
  padding-bottom: 6rem;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.footer-logo img {
  height: 40px;
  margin-right: 0.5rem;
}

.footer-contact p {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.footer-contact i {
  color: var(--primary);
  font-size: 1.25rem;
  margin-top: 0.25rem;
}

.footer-links h4 {
  margin-bottom: 1.5rem;
}

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

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

.footer-links a {
  color: var(--text-secondary);
  transition: var(--transition);
}

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

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid #E2E8F0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

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

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-legal a {
  color: var(--text-secondary);
  font-size: 0.9rem;
}


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

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

.thank-you h1 {
  margin-bottom: 1.5rem;
}

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


.legal-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 8rem 0 5rem;
}

.legal-page h1 {
  margin-bottom: 1rem;
}

.legal-page-meta {
  color: var(--text-secondary);
  margin-bottom: 3rem;
}

.legal-page-content h2 {
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}

.legal-page-content h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.legal-page-content p {
  margin-bottom: 1.5rem;
}

.legal-page-content ul,
.legal-page-content ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.legal-page-content li {
  margin-bottom: 0.5rem;
}


@media (max-width: 991.98px) {
  .hero-image {
    position: relative;
    top: 0;
    right: 0;
    transform: none;
    width: 100%;
    max-width: 400px;
    margin: 3rem auto 0;
  }
  
  .hero-content {
    max-width: 100%;
    text-align: center;
  }
  
  .hero-buttons {
    justify-content: center;
  }
}

@media (max-width: 767.98px) {
  section {
    padding: 3rem 0;
  }
  
  .hero {
    padding: 7rem 0 3rem;
  }
  
  .contact-form {
    padding: 2rem;
  }
  
  .footer {
    padding: 3rem 0 2rem;
  }
  
  .footer-content {
    gap: 2rem;
  }
  
  .case-study {
    padding: 7rem 0 3rem;
  }
  
  .legal-page {
    padding: 7rem 0 3rem;
  }
}

@media (max-width: 575.98px) {
  .nav-desktop {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .nav-mobile {
    display: block;
  }
  
  .footer {
    padding-bottom: 7rem;
  }
  
  .cookie-consent {
    bottom: 6rem;
  }
  
  .cookie-settings-trigger {
    bottom: 6rem;
  }
  
  .floating-action-button {
    bottom: 5rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .metrics-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
}