.sidebar {
  display: flex;
  flex-direction: column;
  height: 100vh;
  width: 240px;
  overflow-y: auto;
  background: #fff;
  border-right: 1px solid #ddd;
  padding: 1rem;
  transition: transform 0.3s ease-in-out;
  z-index: 100;
  position: relative;
  box-sizing: border-box;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
}

.menu-close {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  position: absolute;
  top: 5px;
  right: 5px;
}

.logo {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

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

.logo span {
  font-size: 20px;
}

.menu {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

a {
  text-decoration: none;
  color: inherit; 
}

.menu a,
.menu button {
  color: #333;
  border-radius: 5px;
  text-decoration: none;
  background: transparent;
  border: none;
  text-align: left;
  padding: 0.5rem;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.menu a:hover,
.menu button:hover {
   background: rgba(0, 0, 0, 0.05); /* light hover effect */
}

.menu a:active,
.menu button:active {
   background: rgba(0, 0, 0, 0.05); /* light hover effect */
}


.menu a.router-link-exact-active {
  font-weight: 600;
  color: #1abc9c;
}

.language-switcher {
  margin-top: auto;
  padding-bottom: 1rem;
}

.language-switcher select {
  background: transparent;
  border: 1.5px solid #333;
  padding: 0.5em 2em;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  outline: none;
  position: relative;
  transition: border-color 0.3s ease, color 0.3s ease;
}

.secondary-menu {
  margin-top: auto; /* stick to bottom */
  padding: 16px 0;
  border-top: 1px solid #ddd;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color:#333333b8
}

.language-switcher select {
  background-position: right 0.6rem center;
  background-size: 1em;
}

/* Hover & focus */
.language-switcher select:hover,
.language-switcher select:focus {
  color: #333;
}

/* Mobile view */
@media (max-width: 768px) {
 .menu-toggle {
    display: block; /* Always visible on mobile */
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 1; /* On top of sidebar */
  }

  .sidebar {
    position: fixed;
    top: 0;
    left: 0;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    z-index: 1500;
    height: 100vh;
    background: #fff;
    width: 240px;
  }

  .sidebar.open {
    transform: translateX(0);
  }

  .menu-close {
    display: block;
  }

  .logo {
    margin-bottom: 1rem; /* smaller margin for mobile */
  }

}

body {
  margin: 0 !important;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
    Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  background-color: #f9fafb;
  color: #333;
}
#app {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family: Avenir, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: center;
  color: #2c3e50;
}
router-view {
  flex-grow: 1;
}
.app-layout {
  display: flex;
  height: 100vh;
}
.content {
  flex: 1;
  overflow-y: auto;
  background: #f5f5f5;
}




.login-container[data-v-2f875c97] {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    #1abc9c 0%,
    #16a085 50%,
    #0e8074 100%
  );
  min-height: 100vh;
}
.login-card[data-v-2f875c97] {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 1.25rem;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.2);
  animation: fadeSlideIn-2f875c97 0.5s ease-out;
}
.title[data-v-2f875c97] {
  margin-bottom: 0.25rem;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  color: #2c3e50;
}
.subtitle[data-v-2f875c97] {
  font-size: 1rem;
  color: #555;
  text-align: center;
  margin-bottom: 2rem;
}
form[data-v-2f875c97] {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
input[data-v-2f875c97] {
  padding: 0.75rem;
  border-radius: 0.5rem;
  border: 1px solid #ccc;
  font-size: 1rem;
  transition: all 0.2s ease;
}
input[data-v-2f875c97]:focus {
  outline: none;
  border-color: #1abc9c;
  box-shadow: 0 0 0 3px rgba(26, 188, 156, 0.2);
}
button[data-v-2f875c97] {
  background: #1abc9c;
  color: white;
  padding: 0.8rem;
  border: none;
  border-radius: 0.5rem;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}
button[data-v-2f875c97]:hover {
  background: #16a085;
}
.register-redirect[data-v-2f875c97] {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.95rem;
}
.register-redirect a[data-v-2f875c97] {
  color: #1abc9c;
  font-weight: bold;
  text-decoration: none;
}
.error-msg[data-v-2f875c97] {
  color: red;
  text-align: center;
  margin-top: 1rem;
}
@keyframes fadeSlideIn-2f875c97 {
from {
    transform: translateY(20px);
    opacity: 0;
}
to {
    transform: translateY(0);
    opacity: 1;
}
}
@media (max-width: 768px) {
.login-container[data-v-2f875c97]{
    min-height: auto;
    background:none;
    margin-top: 4rem
}
}


.register-container[data-v-36057858] {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #667eea, #764ba2);
  min-height: 100vh;
}
.register-card[data-v-36057858] {
  background: white;
  padding: 3rem 2.5rem;
  border-radius: 1.5rem;
  width: 100%;
  max-width: 440px;
  box-shadow: 0 12px 25px rgba(102, 126, 234, 0.3);
  animation: popIn-36057858 0.6s ease-out;
  text-align: center;
}
.title[data-v-36057858] {
  margin-bottom: 0.5rem;
  font-size: 2.25rem;
  font-weight: 900;
  color: #4a4a4a;
  letter-spacing: 1.5px;
}
.subtitle[data-v-36057858] {
  font-size: 1.1rem;
  color: #6b6b6b;
  margin-bottom: 2.5rem;
  font-weight: 500;
}
form[data-v-36057858] {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  text-align: left;
}
input[data-v-36057858] {
  padding: 0.85rem 1rem;
  border-radius: 0.75rem;
  border: 1.8px solid #d3d3d3;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.07);
}
input[data-v-36057858]:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 12px rgba(102, 126, 234, 0.5);
}
.btn-register[data-v-36057858] {
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  color: white;
  font-weight: 700;
  font-size: 1.15rem;
  border: none;
  border-radius: 1rem;
  padding: 0.9rem 0;
  cursor: pointer;
  transition: background 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-register[data-v-36057858]:hover:not(:disabled) {
  background: linear-gradient(90deg, #5a6cdd 0%, #663a9a 100%);
}
.btn-register[data-v-36057858]:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}
.spinner[data-v-36057858] {
  border: 3px solid rgba(255, 255, 255, 0.35);
  border-top: 3px solid #fff;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  animation: spin-36057858 1s linear infinite;
  margin-right: 10px;
}
.error-message[data-v-36057858],
.success-message[data-v-36057858] {
  margin-top: 1.25rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-size: 1rem;
}
.error-message[data-v-36057858] {
  color: #e74c3c;
}
.success-message[data-v-36057858] {
  color: #27ae60;
}
.icon[data-v-36057858] {
  width: 18px;
  height: 18px;
  stroke-width: 2.5;
}
.login-redirect[data-v-36057858] {
  margin-top: 1.75rem;
  font-size: 1rem;
  font-weight: 500;
  color: #555;
}
.login-link[data-v-36057858] {
  color: #667eea;
  font-weight: 700;
  text-decoration: none;
  margin-left: 5px;
  transition: color 0.3s ease;
}
.login-link[data-v-36057858]:hover {
  color: #764ba2;
}
@keyframes popIn-36057858 {
from {
    transform: scale(0.85);
    opacity: 0;
}
to {
    transform: scale(1);
    opacity: 1;
}
}
@keyframes spin-36057858 {
0% {
    transform: rotate(0deg);
}
100% {
    transform: rotate(360deg);
}
}
@media (max-width: 768px) {
.register-container[data-v-36057858]{
    min-height: auto;
    background:none;
    margin-top: 4rem
}
}


.content-card[data-v-2491652c] {
  padding-top:4em;
  max-width: 800px;
  text-align: left;
  margin: 0 auto;
}
h1[data-v-2491652c] {
  font-size: 2.5rem;
  margin-bottom: 25px;
  text-align: center;
}
p[data-v-2491652c] {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}
.footer-note[data-v-2491652c] {
  text-align: center;
  margin-top: 40px;
  font-weight: 600;
  font-size: 0.95rem;
  color: #666;
  font-style: italic;
}
@media (max-width: 768px) {
.content-card[data-v-2491652c] {
    padding:2em;
}
}



.success-container[data-v-75bd30cb] {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  text-align: center;
  background: linear-gradient(135deg, #2ecc71, #27ae60);
  color: white;
  padding: 2rem;
  font-family: 'Avenir', sans-serif;
  animation: fadeIn-75bd30cb 0.7s ease-in;
}
.checkmark-circle[data-v-75bd30cb] {
  position: relative;
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
}
.background[data-v-75bd30cb] {
  background-color: white;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  animation: pop-75bd30cb 0.5s ease-out;
}
.checkmark[data-v-75bd30cb] {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  color: #2ecc71;
}
h1[data-v-75bd30cb] {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
p[data-v-75bd30cb] {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}
.home-button[data-v-75bd30cb] {
  background-color: white;
  color: #2ecc71;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}
.home-button[data-v-75bd30cb]:hover {
  background-color: #ecf0f1;
  color: #27ae60;
}
@keyframes fadeIn-75bd30cb {
from { opacity: 0; transform: translateY(30px);
}
to { opacity: 1; transform: translateY(0);
}
}
@keyframes pop-75bd30cb {
0% {
    transform: scale(0.2);
    opacity: 0;
}
100% {
    transform: scale(1);
    opacity: 1;
}
}


.profile-container[data-v-d8816d96] {
  display: flex;
  align-items: center;
  justify-content: center;
 background: linear-gradient(
    135deg,
    #1abc9c 0%,
    #16a085 50%,
    #0e8074 100%
  );
  min-height: 100vh;
}
.profile-card[data-v-d8816d96] {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 1.25rem;
  width: 100%;
  max-width: 720px;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.2);
  animation: fadeSlideIn-d8816d96 0.5s ease-out;
}
.title[data-v-d8816d96] {
  margin-bottom: 0.25rem;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  color: #2c3e50;
}
.subtitle[data-v-d8816d96] {
  font-size: 1rem;
  color: #555;
  text-align: center;
  margin-bottom: 2rem;
}
.section[data-v-d8816d96] {
  background: #f9f9f9;
  padding: 1rem;
  border-radius: 0.75rem;
  margin-bottom: 2rem;
}
.section-title[data-v-d8816d96] {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #2c3e50;
}
.history-list[data-v-d8816d96] {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  text-align: left;
}
.mail-item[data-v-d8816d96]:hover {
  background: #f9fafe;
}
.mail-header[data-v-d8816d96] {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 0.75rem;
}
.mail-body p[data-v-d8816d96] {
  margin: 0.4rem 0;
  line-height: 1.4;
  white-space: pre-wrap;
}
.loading-container[data-v-d8816d96] {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 0;
  gap: 1rem;
  color: #2a5298;
  animation: fadeIn-d8816d96 0.5s ease-in-out;
}
.spinner[data-v-d8816d96] {
  width: 48px;
  height: 48px;
  border: 4px solid rgba(0,0,0,0.1);
  border-top: 4px solid #2a5298;
  border-radius: 50%;
  animation: spin-d8816d96 1s linear infinite;
}
.loading-text[data-v-d8816d96] {
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.8;
}
.mail-action[data-v-d8816d96] {
  font-weight: 500;
  color: #34495e;
}
.mail-credits[data-v-d8816d96] {
  font-weight: bold;
  color: #c0392b;
}
@keyframes fadeSlideIn-d8816d96 {
from {
    transform: translateY(20px);
    opacity: 0;
}
to {
    transform: translateY(0);
    opacity: 1;
}
}
@keyframes spin-d8816d96 {
to {
    transform: rotate(360deg);
}
}
@keyframes fadeIn-d8816d96 {
from { opacity: 0; transform: translateY(10px);
}
to { opacity: 1; transform: translateY(0);
}
}
@media (max-width: 768px) {
.profile-container[data-v-d8816d96]{
    min-height: auto;
    background:none;
    margin-top: 4rem
}
}


.faq-container[data-v-1d727ce4] {
  padding-top:4em;
  text-align: left;
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}
h1[data-v-1d727ce4] {
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 30px;
}
.faq-item[data-v-1d727ce4] {
  border-bottom: 1px solid #ddd;
  cursor: pointer;
  padding: 20px 0;
  transition: background 0.2s ease;
  padding: 10px;
}
.faq-item[data-v-1d727ce4]:hover {
  background-color: #fff;
}
.faq-question[data-v-1d727ce4] {
  display: flex;
  justify-content: space-between;
  font-size: 1.2rem;
  font-weight: 600;
}
.icon[data-v-1d727ce4] {
  font-size: 1.5rem;
  color: #333;
}
.faq-answer[data-v-1d727ce4] {
  margin-top: 15px;
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
  padding-left: 10px;
}
@media (max-width: 768px) {
.faq-container[data-v-1d727ce4] {
      padding:2em;
      width: auto;
}
}


.privacy-card[data-v-5654e567] {
  max-width: 800px;
  padding-top: 4em;
  text-align: left;
  margin:0 auto
}
h1[data-v-5654e567] {
  font-size: 2rem;
  margin-bottom: 25px;
  text-align: center;
}
p[data-v-5654e567] {
  margin-bottom: 20px;
  line-height: 1.6;
  font-size: 1.05rem;
}
.privacy-card a[data-v-5654e567] {
  color: #0066cc;
  text-decoration: underline;
}
.footer-note[data-v-5654e567] {
  text-align: center;
  font-size: 0.9rem;
  color: #777;
  font-style: italic;
  margin-top: 40px;
}
@media (max-width: 768px) {
.privacy-card[data-v-5654e567] {
    padding:2em;
}
}


.tos-card[data-v-3afe4402] {
  max-width: 800px;
  padding-top: 4em;
  text-align: left;
  margin: 0 auto;
}
h1[data-v-3afe4402] {
  font-size: 2.5rem;
  margin-bottom: 25px;
  text-align: center;
}
article[data-v-3afe4402] {
  margin-bottom: 25px;
}
h2[data-v-3afe4402] {
  font-size: 1.3rem;
  margin-bottom: 12px;
}
p[data-v-3afe4402] {
  font-size: 1rem;
  line-height: 1.5;
  color: #333;
}
.footer-note[data-v-3afe4402] {
  text-align: center;
  margin-top: 40px;
  font-weight: 600;
  font-size: 0.9rem;
  color: #666;
  font-style: italic;
}
@media (max-width: 768px) {
.tos-card[data-v-3afe4402] {
    padding:2em;
}
}



/* 🌟 Global */
body[data-v-351942e8] {
  font-family: 'Inter', sans-serif;
  color: #222;
  background: linear-gradient(135deg, #f8f9fb, #eef2f7);
  line-height: 1.6;
}

/* 🌟 Hero */
.hero[data-v-351942e8] {
  text-align: center;
  padding: 5rem 2rem 6rem;
  background: linear-gradient(135deg, #1abc9c 0%, #16a085 50%, #0e8074 100%);
  color: white;
  border-bottom: none;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}
.hero .main-heading[data-v-351942e8] {
  font-size: 3.2rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  margin-top:0;
}
.hero .subtitle[data-v-351942e8] {
  max-width: 700px;
  margin: 0 auto 2rem;
  font-size: 1.3rem;
  color: #f3f3f3;
}

/* 🌟 Features */
.features[data-v-351942e8] {
  background: linear-gradient(135deg, #ffffff, #f0f4f8);
  border-radius: 24px;
  margin: 5rem auto;
  max-width: 1100px;
  padding: 5rem 3rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}
.features h2[data-v-351942e8] {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 3rem;
  background: linear-gradient(135deg, #1abc9c , #0e8074);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  margin-top:0;
}
.features ul[data-v-351942e8] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  padding: 0;
}
.features li[data-v-351942e8] {
  position: relative;
  background: rgba(255, 255, 255, 0.95);
  padding: 2rem 1.6rem 2rem 1.6rem;
  border-radius: 20px;
  font-size: 1.1rem;
  font-weight: 500;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.features li[data-v-351942e8]:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  background: rgba(255, 255, 255, 1);
}
.features li span[data-v-351942e8] {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.95rem;
  color: #555;
}

/* Optional: subtle gradient border accent on hover */
.features li[data-v-351942e8]:hover::after {
  content: '';
  position: absolute;
  top: -2px; left: -2px; right: -2px; bottom: -2px;
  border-radius: 22px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  z-index: -1;
  opacity: 0.3;
}

/* 🌟 Pricing */
.pricing[data-v-351942e8] {
  background:  linear-gradient(135deg, #667eea, #764ba2);
  padding: 4rem 2rem;
  color: white;
}
.pricing h2[data-v-351942e8] {
  font-size: 2.2rem;
  margin-bottom: 2.5rem;
  margin-top:0
}
.pricing-cards[data-v-351942e8] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.pricing .glass-card[data-v-351942e8] {
  padding: 2.5rem;
  border-radius: 22px;
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pricing .glass-card[data-v-351942e8]:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.3);
}
.pricing .glass-card h3[data-v-351942e8] {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
.pricing .glass-card p[data-v-351942e8] {
  margin-bottom: 1rem;
  font-size: 1rem;
}
.pricing .highlighted[data-v-351942e8] {
  border: 2px solid #fff;
  background: rgba(255, 255, 255, 0.15);
  transform: scale(1.05);
}

/* 🌟 Testimonials */
.testimonials[data-v-351942e8] {
  max-width: 1100px;
  margin: 5rem auto;
  padding: 2rem;
}
.testimonials h2[data-v-351942e8] {
  font-size: 2.2rem;
  margin-bottom: 2.5rem;
  text-align: center;
  background: linear-gradient(135deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top:0;
}
.testimonial-cards[data-v-351942e8] {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.testimonials .glass-card[data-v-351942e8] {
  padding: 2rem;
  font-style: italic;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease;
}
.testimonials .glass-card[data-v-351942e8]:hover {
  transform: translateY(-6px);
}
.testimonials span[data-v-351942e8] {
  display: block;
  margin-top: 1rem;
  font-weight: 600;
  color: #1abc9c;
}

/* 🌟 CTA */
.cta[data-v-351942e8] {
  text-align: center;
  padding: 6rem 2rem;
  border-radius: 28px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  margin: 6rem auto;
  max-width: 900px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.cta h2[data-v-351942e8] {
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  margin-top:0;
}
.cta p[data-v-351942e8] {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

/* 🌟 Buttons */
.primary-button[data-v-351942e8],
.btn[data-v-351942e8],
.btn-glow[data-v-351942e8] {
  display: inline-block;
  padding: 0.9rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  color: white;
  background: linear-gradient(135deg, #f39c12, #f1c40f);
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(243, 156, 18, 0.4);
}
.primary-button[data-v-351942e8]:hover,
.btn[data-v-351942e8]:hover,
.btn-glow[data-v-351942e8]:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #f1c40f, #f39c12);
  box-shadow: 0 6px 20px rgba(243, 156, 18, 0.6);
}
.primary-button[data-v-351942e8] {
  background: linear-gradient(135deg, #ff7e5f, #feb47b);
  box-shadow: 0 4px 15px rgba(255, 126, 95, 0.4);
}
.primary-button[data-v-351942e8]:hover{
  background: linear-gradient(135deg, #feb47b, #ff7e5f);
  box-shadow: 0 6px 20px rgba(255, 126, 95, 0.6);
}
.testimonials[data-v-351942e8] {
  max-width: 1100px;
  margin: 5rem auto;
  padding: 4rem 2rem;
  text-align: center;
}
.testimonials h2[data-v-351942e8] {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.testimonial-cards[data-v-351942e8] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.testimonials .glass-card[data-v-351942e8] {
  padding: 2.2rem 1.6rem;
  border-radius: 20px;
  font-style: italic;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.9);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testimonials .glass-card[data-v-351942e8]:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}
.testimonials span[data-v-351942e8] {
  display: block;
  margin-top: 1rem;
  font-weight: 600;
  color: #8e44ad;
  font-style: normal;
}
@media (max-width: 768px) {
.features[data-v-351942e8], .cta[data-v-351942e8]{
    border-radius: 0;
}
}


