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

:root {
  --primary-gradient: radial-gradient(
      18.62% 119.64% at 105.26% 119.64%,
      rgba(255, 250, 240, 0.41) 0,
      hsla(39, 65%, 64%, 0.41) 100%
    ),
    radial-gradient(
      30.77% 108.93% at -8.5% -33.93%,
      hsla(0, 0%, 100%, 0.41) 0,
      hsla(39, 65%, 64%, 0.41) 100%
    ),
    radial-gradient(32.02% 32.09% at 51.45% 86.93%, #fff7e7 0, #794e00 86.4%);
  --text-primary: #000;
  --text-secondary: #666;
  --bg-primary: #fff;
  --bg-secondary: #f8f9fa;
  --border-color: #e1e5e9;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.15);
  --shadow-soft: 0 2px 15px rgba(0, 0, 0, 0.08);
  --shadow-card: 0 6px 25px rgba(0, 0, 0, 0.12);
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-bounce: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-primary);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 1000;
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-soft);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  transition: var(--transition-smooth);
}

.nav-logo:hover {
  transform: scale(1.05);
}

.nav-logo i {
  font-size: 28px;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 500;
  transition: var(--transition-smooth);
  position: relative;
  padding: 8px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-gradient);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
  color: #794e00;
  transform: translateY(-1px);
}

.language-switcher {
  display: flex;
  gap: 5px;
  background: var(--bg-secondary);
  border-radius: 25px;
  padding: 6px;
  box-shadow: var(--shadow-soft);
}

.lang-btn {
  background: none;
  border: none;
  padding: 10px 18px;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 500;
  transition: var(--transition-bounce);
  position: relative;
  overflow: hidden;
}

.lang-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--primary-gradient);
  transition: left 0.3s ease;
  z-index: -1;
}

.lang-btn.active::before {
  left: 0;
}

.lang-btn.active {
  color: white;
  transform: scale(1.05);
}

.mobile-menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
  z-index: 1001;
  position: relative;
  padding: 12px;
  border-radius: 10px;
  transition: var(--transition-smooth);
  background: rgba(0, 0, 0, 0.05);
}

.mobile-menu-toggle:hover {
  background: var(--bg-secondary);
  transform: scale(1.1);
}


.hero {
  padding: 120px 0 80px;
  background: linear-gradient(
    135deg,
    var(--bg-primary) 0%,
    var(--bg-secondary) 100%
  );
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 100%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(121, 78, 0, 0.05) 0%,
    transparent 70%
  );
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  background: linear-gradient(135deg, var(--text-primary) 0%, #794e00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: slideInLeft 0.8s ease-out;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-content p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 30px;
  animation: slideInLeft 0.8s ease-out 0.2s both;
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
  padding: 30px 0;
}

.stat-item {
  text-align: center;
  padding: 25px 20px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: var(--shadow-card);
  transition: var(--transition-bounce);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
}

.stat-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: left 0.6s ease;
}

.stat-item:hover::before {
  left: 100%;
}

.stat-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-hover);
}

.stat-number {
  font-size: 2.8rem;
  font-weight: 800;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
  display: block;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.cta-button {
  background: var(--primary-gradient);
  border: none;
  padding: 18px 36px;
  border-radius: 50px;
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-bounce);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
  animation: slideInLeft 0.8s ease-out 0.4s both;
}

.cta-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition: all 0.6s ease;
  transform: translate(-50%, -50%);
}

.cta-button:hover::before {
  width: 300px;
  height: 300px;
}

.cta-button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: var(--shadow-hover);
}


.cta-button-central {
  background: var(--primary-gradient);
  border: none;
  padding: 18px 36px;
  border-radius: 50px;
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-bounce);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
  animation: slideInLeft 0.8s ease-out 0.4s both;
  
  display: block;
  margin: 10px auto;
}

.cta-button-central::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition: all 0.6s ease;
  transform: translate(-50%, -50%);
}

.cta-button-central:hover::before {
  width: 300px;
  height: 300px;
}

.cta-button-central:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: var(--shadow-hover);
}



.hero-card {
  display: flex;
  justify-content: center;
  animation: slideInRight 0.8s ease-out 0.3s both;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.discount-card {
  background: linear-gradient(135deg, #000 0%, #333 100%);
  color: white;
  padding: 35px;
  border-radius: 25px;
  width: 350px;
  box-shadow: var(--shadow-hover);
  transform: rotate(-5deg);
  transition: var(--transition-bounce);
  position: relative;
  overflow: hidden;
}

.discount-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transform: rotate(45deg);
  transition: all 0.6s ease;
  opacity: 0;
}

.discount-card:hover::before {
  opacity: 1;
  right: 100%;
}

.discount-card:hover {
  transform: rotate(0deg) scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.card-logo {
  font-size: 1.6rem;
  font-weight: 700;
}

.card-header i {
  font-size: 2.2rem;
  opacity: 0.7;
  transition: var(--transition-smooth);
}

.discount-card:hover .card-header i {
  opacity: 1;
  transform: scale(1.1);
}

.discount-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  transition: var(--transition-smooth);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.discount-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(5px);
}

.discount-item i {
  font-size: 1.3rem;
  width: 24px;
}


.features {
  padding: 100px 0;
  background: var(--bg-secondary);
  position: relative;
}

.features::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--border-color),
    transparent
  );
}

.features h2 {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 70px;
  background: linear-gradient(135deg, var(--text-primary) 0%, #794e00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.feature-card {
  background: var(--bg-primary);
  padding: 45px 35px;
  border-radius: 25px;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: var(--transition-bounce);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary-gradient);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-hover);
}

.feature-card i {
  font-size: 3.5rem;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 25px;
  display: block;
  transition: var(--transition-bounce);
}

.feature-card:hover i {
  transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 18px;
  color: var(--text-primary);
}

.feature-card p {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 1.05rem;
}


.partners-section {
  padding: 100px 0;
  background: var(--bg-primary);
}

.partners-section h2 {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 25px;
  background: linear-gradient(135deg, var(--text-primary) 0%, #794e00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.partners-subtitle {
  text-align: center;
  font-size: 1.3rem;
  color: var(--text-secondary);
  margin-bottom: 70px;
  font-weight: 500;
}

.partners-categories {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.partner-category {
  background: var(--bg-secondary);
  border-radius: 30px;
  padding: 50px;
  box-shadow: var(--shadow-card);
  transition: var(--transition-bounce);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.partner-category::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: var(--primary-gradient);
  border-radius: 32px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.partner-category:hover::before {
  opacity: 0.1;
}

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

.category-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 35px;
  padding-bottom: 25px;
  border-bottom: 2px solid var(--border-color);
  position: relative;
}

.category-header::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 60px;
  height: 2px;
  background: var(--primary-gradient);
}

.category-header i {
  font-size: 2.8rem;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: var(--transition-bounce);
}

.partner-category:hover .category-header i {
  transform: scale(1.1) rotate(5deg);
}

.category-header h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 25px;
}

.partner-card {
  background: var(--bg-primary);
  padding: 30px 25px;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-bounce);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.partner-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(121, 78, 0, 0.1),
    transparent
  );
  transition: left 0.6s ease;
}

.partner-card:hover::before {
  left: 100%;
}

.partner-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: var(--shadow-card);
  border-color: rgba(121, 78, 0, 0.3);
}

.partner-logo {
  font-size: 2.8rem;
  margin-bottom: 12px;
  display: block;
  transition: var(--transition-bounce);
}

.partner-card:hover .partner-logo {
  transform: scale(1.1);
}

.partner-card span {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.95rem;
}


.calculator-section {
  padding: 100px 0;
  background: var(--bg-secondary);
}

.calculator-section h2 {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 70px;
  background: linear-gradient(135deg, var(--text-primary) 0%, #794e00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.calculator {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  max-width: 1100px;
  margin: 0 auto;
}

.calc-inputs {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.input-group label {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 1.05rem;
}

.input-group input {
  padding: 18px 20px;
  border: 2px solid var(--border-color);
  border-radius: 15px;
  font-size: 1.1rem;
  transition: var(--transition-smooth);
  background: var(--bg-primary);
  box-shadow: var(--shadow-soft);
}

.input-group input:focus {
  outline: none;
  border-color: #794e00;
  box-shadow: 0 0 0 4px rgba(121, 78, 0, 0.1);
  transform: translateY(-2px);
}

.input-group input:hover {
  border-color: rgba(121, 78, 0, 0.3);
  transform: translateY(-1px);
}

.calc-results {
  display: flex;
  align-items: center;
}

.result-card {
  background: var(--bg-primary);
  padding: 50px 40px;
  border-radius: 25px;
  text-align: center;
  width: 100%;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.result-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary-gradient);
}

.result-card h3 {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 25px;
  color: var(--text-primary);
}

.savings-amount {
  font-size: 3.5rem;
  font-weight: 700;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  display: block;
}

.card-cost {
  color: var(--text-secondary);
  margin-bottom: 15px;
  font-size: 1.05rem;
}

.net-savings {
  font-size: 1.3rem;
  font-weight: 600;
  color: #28a745;
}


.reviews-section {
  padding: 100px 0;
  background: linear-gradient(
    135deg,
    var(--bg-primary) 0%,
    var(--bg-secondary) 50%,
    var(--bg-primary) 100%
  );
  position: relative;
  overflow: hidden;
}

.reviews-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: radial-gradient(
    circle at center,
    rgba(121, 78, 0, 0.03) 0%,
    transparent 70%
  );
  animation: float 25s ease-in-out infinite;
}

.reviews-section h2 {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 70px;
  background: linear-gradient(135deg, var(--text-primary) 0%, #794e00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 1;
}

.reviews-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  z-index: 1;
}

.reviews-slider {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  gap: 40px;
}

.review-card {
  min-width: 100%;
  background: var(--bg-primary);
  padding: 45px 40px;
  border-radius: 25px;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.review-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary-gradient);
}

.review-card::after {
  content: '"';
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 4rem;
  color: rgba(121, 78, 0, 0.1);
  font-family: serif;
  line-height: 1;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
}

.review-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--primary-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
  font-weight: 700;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.review-avatar::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

.review-info h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--text-primary);
}

.review-role {
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-weight: 500;
  margin-bottom: 8px;
}

.stars {
  color: #ffc107;
  font-size: 1.2rem;
  display: flex;
  gap: 2px;
}

.stars i {
  transition: var(--transition-smooth);
}

.review-card:hover .stars i {
  transform: scale(1.1);
}

.review-text {
  color: var(--text-secondary);
  line-height: 1.8;
  font-style: italic;
  font-size: 1.1rem;
  position: relative;
  z-index: 1;
  margin-top: 20px;
}

.review-text::before {
  content: '"';
  font-size: 2rem;
  color: rgba(121, 78, 0, 0.3);
  font-family: serif;
  position: absolute;
  top: -10px;
  left: -10px;
}

.slider-controls {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 40px;
}

.slider-btn {
  background: var(--primary-gradient);
  border: none;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  color: white;
  font-size: 1.3rem;
  cursor: pointer;
  transition: var(--transition-bounce);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.slider-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition: all 0.4s ease;
  transform: translate(-50%, -50%);
}

.slider-btn:hover::before {
  width: 100px;
  height: 100px;
}

.slider-btn:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: var(--shadow-hover);
}

.slider-btn:active {
  transform: translateY(-1px) scale(1.05);
}


.review-indicators {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 25px;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(121, 78, 0, 0.3);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.indicator.active {
  background: var(--primary-gradient);
  transform: scale(1.2);
}

.indicator:hover {
  background: rgba(121, 78, 0, 0.6);
  transform: scale(1.1);
}


.faq-section {
  padding: 100px 0;
  background: var(--bg-secondary);
}

.faq-section h2 {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 70px;
  background: linear-gradient(135deg, var(--text-primary) 0%, #794e00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.faq-container {
  max-width: 850px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-primary);
  border-radius: 20px;
  margin-bottom: 25px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition-bounce);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.faq-question {
  padding: 30px 35px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1.1rem;
  transition: var(--transition-smooth);
  position: relative;
}

.faq-question::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--primary-gradient);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::before {
  transform: scaleY(1);
}

.faq-question:hover {
  background: rgba(121, 78, 0, 0.05);
}

.faq-question i {
  transition: var(--transition-bounce);
  font-size: 1.2rem;
  color: #794e00;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq-item.active .faq-answer {
  max-height: 250px;
}

.faq-answer p {
  padding: 0 35px 30px;
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 1.05rem;
}


.footer {
  background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
  color: white;
  padding: 80px 0 30px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(121, 78, 0, 0.5),
    transparent
  );
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 20px;
  transition: var(--transition-smooth);
}

.footer-logo:hover {
  transform: scale(1.05);
}

.footer-logo i {
  font-size: 2rem;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-section h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
}

.footer-section h4::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--primary-gradient);
}

.footer-section p {
  color: #ccc;
  margin-bottom: 12px;
  line-height: 1.6;
}

.footer-section a {
  color: #ccc;
  text-decoration: none;
  transition: var(--transition-smooth);
  display: inline-block;
}

.footer-section a:hover {
  color: #794e00;
  transform: translateX(5px);
}

.social-links {
  display: flex;
  gap: 20px;
  margin-top: 15px;
}

.social-links a {
  color: white;
  font-size: 1.6rem;
  transition: var(--transition-bounce);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
  color: #794e00;
  background: rgba(121, 78, 0, 0.2);
  transform: translateY(-3px) scale(1.1);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #333;
  color: #ccc;
  font-size: 0.95rem;
}


[dir="rtl"] {
  direction: rtl;
  text-align: right;
}

[dir="rtl"] .nav-container,
[dir="rtl"] .hero-container,
[dir="rtl"] .calculator,
[dir="rtl"] .footer-content {
  direction: rtl;
}


[dir="rtl"] .discount-card {
  transform: rotate(5deg);
}

[dir="rtl"] .discount-card:hover {
  transform: rotate(0deg) scale(1.02);
}


@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 50px;
    padding-top: 80px;
    transform: translateX(-100%);
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 999;
    border-right: 1px solid var(--border-color);
  }

  .nav-links.mobile-open {
    transform: translateX(0);
  }

  .nav-links a {
    font-size: 1.3rem;
    font-weight: 600;
    padding: 18px 35px;
    border-radius: 15px;
    transition: var(--transition-bounce);
    width: 220px;
    text-align: center;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: var(--shadow-soft);
  }

  .nav-links a:hover {
    background: var(--bg-secondary);
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-card);
  }

  .language-switcher {
    margin-top: 30px;
    transform: scale(1.15);
  }

  .mobile-menu-toggle {
    display: block;
  }

  .hero {
    padding: 100px 0 60px;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 2.8rem;
  }

  .stats-container {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .partners-grid {
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 20px;
  }

  .calculator {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .reviews-slider {
    gap: 30px;
  }

  .review-card {
    padding: 35px 30px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero {
    padding: 90px 0 50px;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .discount-card {
    width: 100%;
    max-width: 320px;
    padding: 30px;
  }

  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .partner-card {
    padding: 25px 20px;
  }

  .partner-logo {
    font-size: 2.2rem;
  }

  .nav-links {
    padding-top: 60px;
    gap: 40px;
  }

  .nav-links a {
    font-size: 1.2rem;
    width: 200px;
    padding: 15px 30px;
  }

  .review-card {
    padding: 30px 25px;
  }

  .review-avatar {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .slider-btn {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (prefers-contrast: high) {
  :root {
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.4);
    --border-color: #999;
  }
}
