/* 
 * Dynaamiq AI Website - Updated CSS Styles
 * Improved mobile responsiveness with focus on logo alignment
 */

:root {
  --primary-color: #FF6B00;
  --primary-color-rgb: 255, 107, 0;
  --secondary-color: #FF1F8E;
  --dark-bg: #0F1524;
  --light-bg: #F8F9FC;
  --text-light: #FFFFFF;
  --text-dark: #1E2A4A;
  --text-muted: rgba(255, 255, 255, 0.7);
  --border-radius: 12px;
  --transition: all 0.3s ease;
  --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  --gradient: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

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

html {
  scroll-behavior: smooth;
}

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

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

h1 {
  font-size: 3.5rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.75rem;
}

p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

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

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

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

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

.section {
  padding: 5rem 0;
  position: relative;
}

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

.section-subtitle {
  display: inline-block;
  background-color: rgba(255, 107, 0, 0.1);
  color: var(--primary-color);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  outline: none;
}

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

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

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

.btn-secondary:hover {
  background-color: var(--text-light);
  color: var(--dark-bg);
  transform: translateY(-3px);
}

.btn-icon {
  margin-left: 0.5rem;
}

.btn-full {
  width: 100%;
}

.text-gradient {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
  padding: 2rem;
  transition: var(--transition);
}

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

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background-color: rgba(15, 21, 36, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  padding: 0.75rem 0;
}

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

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

.navbar-logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.navbar-menu {
  display: flex;
  align-items: center;
}

.navbar-menu a {
  margin-left: 2rem;
  font-weight: 500;
  position: relative;
}

.navbar-menu a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient);
  transition: var(--transition);
}

.navbar-menu a:hover::after {
  width: 100%;
}

.navbar-cta {
  margin-left: 2rem;
}

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

/* Hero Section */
.hero {
  padding: 10rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(255, 31, 142, 0.1), transparent 70%);
  z-index: -1;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

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

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--text-muted);
}

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

.hero-image {
  position: relative;
  text-align: right;
  perspective: 1000px;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-screenshot {
  max-width: 380px !important;
  width: 100%;
  border-radius: 25px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  height: auto;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  transition: transform 0.1s ease-out;
}

/* Challenges Section */
.challenges {
  background-color: rgba(15, 21, 36, 0.5);
  position: relative;
}

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

.challenges-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 1fr;
  gap: 2rem;
  margin-top: 3rem;
  align-items: stretch;
}

.challenge-card {
  text-align: left;
}

.challenge-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  background: var(--gradient);
  font-size: 2rem;
  color: var(--text-light);
}

.section-header-container {
  text-align: center;
}

/* Solution Section */
.solution {
  position: relative;
}

.solution-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.solution-step {
  position: relative;
  min-width: 0;
}

.solution-step h3 {
  margin-bottom: 0.75rem;
  hyphens: auto;
  word-break: break-word;
}

.step-number {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-light);
  z-index: 1;
}

.solution-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

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

.stat-value {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  font-size: 1.1rem;
  color: var(--text-muted);
}

/* Conversion Steps Section */
.conversion-steps {
  background-color: rgba(15, 21, 36, 0.5);
  position: relative;
}

.conversion-steps h2 {
  text-align: center;
}

.conversion-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

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

.conversion-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  background: var(--gradient);
  font-size: 2rem;
  color: var(--text-light);
}

.conversion-stats {
  display: flex;
  justify-content: space-around;
  margin: 1.5rem 0;
}

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

.conversion-stat .stat-value {
  font-size: 1.8rem;
}

.conversion-note {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 1rem;
}

/* Features Section */
.features {
  background-color: rgba(15, 21, 36, 0.5);
}

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

.features h2 {
  text-align: center;
  margin-bottom: 3rem;
  width: 100%;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin-top: 3rem;
  text-align: left;
}

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

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient);
  font-size: 1.5rem;
  color: var(--text-light);
  flex-shrink: 0;
}

.feature-content h3 {
  position: relative;
  display: inline-block;
  margin-bottom: 0.75rem;
}

.feature-content h3::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--gradient);
}

/* Dashboard Section */
.dashboard {
  position: relative;
}

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

.dashboard-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tab-btn {
  padding: 0.75rem 1.5rem;
  background-color: rgba(255, 255, 255, 0.1);
  border: none;
  color: var(--text-muted);
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  border-radius: 50px;
  margin: 0.25rem;
}

.tab-btn:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.tab-btn.active {
  background: var(--gradient);
  color: var(--text-light);
  box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
  transform: translateY(-2px);
}

.dashboard-content {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--box-shadow);
  position: relative;
}

.tab-content {
  opacity: 0;
  position: absolute;
  top: 2rem;
  left: 2rem;
  right: 2rem;
  bottom: 2rem;
  visibility: hidden;
  transform: translateY(15px);
  transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out, visibility 0.4s;
  pointer-events: none;
}

.tab-content.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  pointer-events: auto;
}

.chart-container {
  height: 300px;
  margin-bottom: 2rem;
}

/* Pricing Section from Andere Siete/test.css */
.pricing {
  position: relative;
}

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

.pricing-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.pricing-tab {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
  flex: 1;
  max-width: 300px;
  border: 2px solid transparent;
}

.pricing-tab.active {
  border-color: var(--primary-color);
  background-color: rgba(255, 107, 0, 0.1);
}

.pricing-tab h3 {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
}

.pricing-tab p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0;
}

.pricing-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
  text-align: left;
  align-items: flex-start;
}

.pricing-features {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
  padding: 2rem;
}

.pricing-features h4 {
  margin-bottom: 1.5rem;
  font-size: 1.6rem;
}

.pricing-features h5 {
  font-size: 1.3rem;
  color: var(--text-light);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.25rem;
}

.pricing-features ul {
  list-style: none;
  margin-bottom: 2rem;
}

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

.pricing-features li:before {
  content: '✓';
  color: var(--primary-color);
  margin-right: 0.75rem;
  font-weight: bold;
}

.ki-feature {
  font-weight: 600;
  color: var(--primary-color);
}

.ki-feature::before {
  content: "✨";
  color: var(--secondary-color);
  margin-right: 0.75rem;
  font-weight: normal;
}

.package-features {
  display: none;
}

.package-features.active {
  display: block;
}

.pricing-configurator {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
  padding: 2rem;
  height: fit-content;
  position: sticky;
  top: 90px;
  align-self: flex-start;
}

.pricing-configurator h3 {
  margin-bottom: 2rem;
  text-align: center;
}

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

.config-section h4 {
  margin-bottom: 1rem;
}

.duration-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.duration-option {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  position: relative;
}

.duration-option.active {
  border-color: var(--primary-color);
}

.duration-option h5 {
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

.duration-option p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0;
}

.discount-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: var(--gradient);
  color: var(--text-light);
  font-weight: 600;
  padding: 0.25rem 0.5rem;
  border-radius: 50px;
  font-size: 0.8rem;
}

.dm-slider-container {
  margin-top: 1.5rem;
  position: relative;
  padding-bottom: 1.5rem;
}

.dm-slider {
  width: 100%;
  height: 10px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.1);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  margin-bottom: 1rem;
}

.dm-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gradient);
  cursor: pointer;
}

.dm-slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gradient);
  cursor: pointer;
  border: none;
}

.dm-slider-labels {
  display: flex;
  justify-content: space-between;
  position: absolute;
  width: 100%;
  bottom: 0;
}

.dm-slider-min,
.dm-slider-max {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.dm-value {
  text-align: right;
  font-weight: 600;
}

.pricing-summary {
  margin-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
}

.pricing-summary h4 {
  text-align: center;
  margin-bottom: 1.5rem;
}

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

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

.summary-value {
  font-weight: 600;
}

.summary-divider {
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
  margin: 1.5rem 0;
}

.summary-total {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
  font-size: 1.2rem;
}

.total-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

/* End of Pricing Section from Andere Siete/test.css */

/* Team Section */
.team {
  background-color: rgba(15, 21, 36, 0.5);
}

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

.section-intro {
  max-width: 800px;
  margin: 0 auto 2rem;
  font-size: 1.2rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin-top: 3rem;
}

.team-member {
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: var(--border-radius);
  padding: 2rem;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.team-member:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 0 15px rgba(var(--primary-color-rgb, 255, 107, 0), 0.3);
  border-color: rgba(var(--primary-color-rgb, 255, 107, 0), 0.7);
}

.member-image {
  border-radius: var(--border-radius);
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 12px;
  transition: var(--transition);
  filter: grayscale(70%);
}

.team-member:hover .member-image img {
  transform: scale(1.05);
  filter: grayscale(0%);
}

.member-position {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.member-bio {
  color: var(--text-muted);
}

/* CTA Section */
.cta {
  text-align: center;
  padding: 5rem 0;
  background: linear-gradient(rgba(15, 21, 36, 0.8), rgba(15, 21, 36, 0.8)), url('https://images.unsplash.com/photo-1557804506-669a67965ba0?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2574&q=80') center/cover no-repeat;
}

.cta h2 {
  margin-bottom: 1.5rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cta p {
  max-width: 800px;
  margin: 0 auto 2rem;
  color: var(--text-muted);
}

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

/* Contact Section */
.contact {
  position: relative;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info {
  text-align: left;
}

.contact-info p {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.contact-details {
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.03);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.contact-item:hover {
  background-color: rgba(255, 255, 255, 0.07);
  border-color: var(--primary-color);
  transform: translateY(-5px);
}

.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.5rem;
  color: var(--text-light);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-text h4 {
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
  color: var(--text-light);
}

.contact-text p {
  color: var(--text-muted);
  margin-bottom: 0;
  font-size: 1rem;
}

.contact-text a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.contact-form {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
  padding: 2rem;
  align-self: start;
}

.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(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--border-radius);
  color: var(--text-light);
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  background-color: rgba(255, 255, 255, 0.15);
}

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

/* GDPR Checkbox Styling */
.gdpr-consent {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.form-label-checkbox {
  font-size: 0.9rem;
  font-weight: normal;
  margin-bottom: 0;
}

.form-label-checkbox a {
  color: var(--primary-color);
  text-decoration: underline;
}

.form-label-checkbox a:hover {
  text-decoration: none;
}

/* Footer */
.footer {
  background-color: rgba(15, 21, 36, 0.8);
  padding-top: 5rem;
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer-info {
  text-align: left;
}

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

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

.footer-about {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-icon:hover {
  background: var(--gradient);
  transform: translateY(-3px);
}

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

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

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

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

.footer-links a:hover {
  color: var(--primary-color);
  padding-left: 0.5rem;
}

.footer-bottom {
  text-align: center;
  padding: 2rem 0;
  margin-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 99;
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-5px);
  color: var(--text-light);
}

/* Responsive Styles */
@media (max-width: 1200px) {
  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.2rem;
  }

  .solution-steps,
  .solution-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-grid {
    gap: 2rem;
  }
}

@media (max-width: 992px) {
  .navbar-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: rgba(15, 21, 36, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    display: none;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }

  .navbar-menu.active {
    display: flex;
  }

  .navbar-menu a {
    margin: 0.75rem 0;
    padding: 0.5rem 1rem;
  }

  .navbar-toggle {
    display: block;
  }

  .navbar-cta {
    display: none;
  }

  .hero-container,
  .contact-container {
    grid-template-columns: 1fr;
  }

  .hero-image {
    margin-bottom: 2rem;
  }

  .challenges-grid,
  .conversion-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .conversion-grid>.conversion-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }

  .pricing-content {
    grid-template-columns: 1fr;
  }

  .pricing-features {
    margin-bottom: 2rem;
  }

  .slider-nav {
    display: none;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  .section {
    padding: 4rem 0;
  }

  .hero {
    padding: 8rem 0 4rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .challenges-grid,
  .solution-steps,
  .solution-stats,
  .conversion-grid,
  .features-grid,
  .team-grid,
  .pricing-packages {
    grid-template-columns: 1fr;
  }

  .feature-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .feature-content h3::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .duration-options {
    grid-template-columns: 1fr;
  }

  .navbar-logo img {
    height: 30px;
  }

  .pricing-tabs {
    flex-direction: column;
    align-items: center;
  }

  .pricing-tab {
    width: 100%;
    max-width: 100%;
    margin-bottom: 1rem;
  }

  .team-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .member-image img {
    filter: grayscale(0%);
  }

  .feature-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  .section-subtitle {
    font-size: 0.8rem;
  }

  .dashboard-tabs {
    flex-direction: column;
  }

  .tab-btn {
    width: 100%;
    text-align: center;
    margin-bottom: 0.5rem;
  }

  .footer-container {
    grid-template-columns: 1fr;
  }

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

/* KI Extension Styles */
.ki-extension-header {
  margin-top: 15px;
  font-weight: bold;
  color: #FF1F8E;
  background: linear-gradient(90deg, rgba(255, 107, 0, 0.1) 0%, rgba(255, 31, 142, 0.1) 100%);
  padding: 8px 10px;
  border-radius: 5px;
}

.ki-extension-header i {
  color: #FF6B00;
  margin-right: 5px;
}

.ki-extension-feature {
  color: #FF1F8E;
  font-weight: 500;
  padding-left: 15px;
}

.ki-extension-feature i {
  color: #FF6B00;
}

/* Team Member Image Styles */
.team-member .member-image {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  height: 250px;
}

.team-member .member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* Added Testimonials CSS from Andere Siete/test.css */

/* Testimonials Section */
.testimonials {
  background-color: rgba(15, 21, 36, 0.5);
}

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

.testimonials-slider {
  position: relative;
  margin-top: 3rem;
}

.testimonial-cards {
  display: flex;
  overflow: hidden;
  gap: 2rem;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
  padding: 2rem;
  text-align: left;
  width: calc(33.333% - 1.33rem);
  flex-shrink: 0;
}

.testimonial-content {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--text-muted);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info h4 {
  margin-bottom: 0.25rem;
}

.author-info p {
  margin-bottom: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
  gap: 0.5rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background-color: var(--primary-color);
}

.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  z-index: 10;
}

.slider-nav:hover {
  background-color: var(--primary-color);
}

.prev-btn {
  left: -20px;
}

.next-btn {
  right: -20px;
}

@media (max-width: 1200px) {
  .prev-btn {
    left: 0px;
  }

  .next-btn {
    right: 0px;
  }
}

@media (max-width: 992px) {
  .testimonial-card {
    width: calc(50% - 1rem);
    padding: 1.5rem;
  }

  .slider-nav {
    display: none;
  }
}

@media (max-width: 768px) {
  .testimonial-card {
    width: 100%;
    padding: 1.5rem;
  }

  .testimonial-content {
    font-size: 1rem;
  }

  .author-info p {
    font-size: 0.85rem;
  }
}

@media (max-width: 576px) {
  .testimonial-author {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}