:root {
  --brand-blue: #1a1952;
  --accent-yellow: #d8b664;
  --bg-light-gray: #f9f9f9;
  --bg-light-blue: #eef0f8;
  --text-dark: #1a1952;
  --text-gray: #444;
  --text-body: #333;
}    

body {
      margin: 0;
      font-family: 'Nunito', sans-serif;
      background: var(--bg-light-blue);
      color: #333;
    }

    .site-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px 20px;
      background: #fff;
      position: sticky;
      top: 0;
      z-index: 1000;
      border-bottom: 1px solid #eee;
    }

    .site-logo {
      display: flex;
      align-items: center;
      font-weight: bold;
      color: #1a1952;
      text-decoration: none;
    }

    .site-logo img {
      height: 40px;
      margin-right: 10px;
    }

    .site-navbar {
      display: none;
      flex-direction: column;
      position: fixed;
      top: 60px;
      right: 0;
      width: 260px;
      background: white;
      box-shadow: -2px 0 8px rgba(0,0,0,0.1);
      padding: 20px;
      transition: transform 0.3s ease;
      transform: translateX(100%);
    }

    .site-navbar.open {
      transform: translateX(0);
      display: flex;
    }

    .site-navbar ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .site-navbar li {
      margin: 10px 0;
    }

    .site-navbar a {
      text-decoration: none;
      color: #1a1952;
      font-weight: bold;
    }

    .site-menu-toggle {
      display: inline-block;
      cursor: pointer;
      width: 30px;
      height: 20px;
      position: relative;
      z-index: 1100;
    }
.site-navbar a:hover {
  color: var(--accent-yellow);
  transition: color 0.2s ease;
}

.site-navbar a {
  font-family: 'Nunito', sans-serif;
  text-decoration: none;
  color: #1a1952;
  font-weight: bold;
}

    .site-menu-toggle span {
      display: block;
      width: 100%;
      height: 3px;
      margin-bottom: 5px;
      background: #1a1952;
      transition: 0.3s;
    }

    @media (min-width: 992px) {
      .site-menu-toggle {
        display: none;
      }

      .site-navbar {
        display: flex !important;
        position: static;
        flex-direction: row;
        box-shadow: none;
        transform: none;
        width: auto;
        padding: 0;
      }

      .site-navbar ul {
        display: flex;
        gap: 20px;
      }

      .site-navbar li {
        margin: 0;
      }
    }

/* submenu */
.site-navbar ul li {
  font-weight: normal;
}

.site-navbar ul li.has-submenu {
  position: relative;
}

.site-navbar ul li.has-submenu .arrow {
  font-size: 0.8em;
  margin-left: 5px;
}

.site-navbar ul li.has-submenu .submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  box-shadow: 0 8px 12px rgba(0,0,0,0.1);
  padding: 10px;
  border-radius: 4px;
  z-index: 1000;
}

.site-navbar ul li.has-submenu:hover .submenu {
  display: block;
}

.site-navbar ul li.has-submenu .submenu li {
  margin: 5px 0;
}

.site-navbar ul li.has-submenu .submenu li a {
  color: #1a1952;
  font-weight: normal;
  white-space: nowrap;
}

.site-navbar ul li.has-submenu .submenu li a:hover {
  text-decoration: none;
  color: var(--accent-yellow); /* Optional subtle hover effect */
}



   .hero-background {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
 background: var(--bg-light-blue);
}

.hero {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 120px 30px;
  box-sizing: border-box;
  position: relative;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  width: auto;
  max-width: none;
  object-fit: contain;
  object-position: center;
  z-index: 1;
}
@media (min-width: 1024px) {
  .hero-content {
    position: absolute;
    right: -18%;
    left: auto;
    top: 50%;
    transform: translateY(-50%);
    text-align: left;
    max-width: 500px;
  }
}


.hero-content {
  position: relative;
  z-index: 2;
  color: white;
}

.hero-content p {
  font-size: 1.8rem;
  margin: 0;
}

.hero-content h1 {
  font-size: 4rem;
  font-weight: 800;
  margin: 20px 0 0;
}

.hero-content h2 {
  font-size: 3.5rem;
  font-weight: 800;
  margin: 20px 0 0;
}

.hero .highlight {
  color: #1a1952;
}

/* RESPONSIVE: mobile adjustments */
@media (max-width: 768px) {
   .hero-image {
    object-fit: contain;
    object-position: top;
    background-color: #1a1952; /* ca să nu rămână benzi albe dacă apare gol */
  }

  .hero {
    height: auto;
      padding: 45px 20px 20px;
  }

  .hero-background {
    height: auto;
  }

  .hero-content p {
    font-size: 0.8rem;
  }

  .hero-content h1 {
    font-size: 1.2rem;
  }

  .hero-content h2 {
    font-size: 1.3rem;
  }
}

    .section {
      padding: 50px 20px;
      max-width: 1200px;
      margin: auto;
    }
    .features {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      justify-content: space-between;
    }
    .feature {
      flex: 1 1 300px;
      background: #f7f7f7;
      padding: 20px;
      border-radius: 8px;
    }
    .feature i {
      font-size: 2rem;
      color: var(--accent-yellow);

    }
    footer {
      background: #333;
      color: white;
      padding: 30px 20px;
    }
    footer p {
      margin: 0;
    }
       .topbar {
    background-color: #1a1952;
    color: white;
    padding: 12px 20px;
    font-size: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
  .topbar a {
    color: white;
    text-decoration: none;
    margin-left: 10px;
  }
  .topbar .left, .topbar .right {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
  }
  .topbar .right {
    font-weight: bold;
  }
      
        .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
  
    margin: auto;
  }
  .footer-column {
    flex: 1 1 300px;
  }
  @media (max-width: 768px) {
    .footer-column {
      text-align: center !important;
    }
  }
.logos-marquee {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 2rem 0;
  background: white;
}

.home-logo-wrapper {
  display: flex;
  gap: 2.5rem;
  white-space: nowrap;
}

.clients-grid {
  display: flex;
  align-items: center;
  gap: 3rem;
  min-width: 100%;
}

.client-logo {
  height: 45px;
  width: auto;
}

/* Animation for scrolling marquee */
.home-logo-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.clients-grid {
  display: flex;
  width: max-content;
}

.clients-row-1 {
  animation: marquee-left 25s linear infinite;
}

.clients-row-2 {
  animation: marquee-right 25s linear infinite;
}

@keyframes marquee-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes marquee-right {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}



.why-wizard {
  background: var(--bg-light-blue);
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.section-title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 50px;
  color: var(--text-dark);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.benefit-card {
  background: white;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
}

.icon-wrapper {
  font-size: 30px;
  color: var(--accent-yellow);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.benefit-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.benefit-card p {
  font-size: 14px;
  color: var(--text-body);
}

/* SECTION 2: Cine suntem */
.about-wizard {
  background: var(--bg-light-blue);
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.about-wizard .section-title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 50px;
  color: var(--text-dark);
}

.about-grid-3 {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.about-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
  display: flex;
  gap: 20px;
  padding: 25px 30px;
  align-items: flex-start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08);
}

.icon-box {
  font-size: 28px;
  color: var(--accent-yellow);
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.text-box h3 {
  font-size: 18px;
  margin: 0 0 10px;
  color: var(--text-dark);
}

.text-box p {
  font-size: 15px;
  color: var(--text-gray);
  margin: 0;
}

/* image frame */
.image-frame {
  max-width: 600px;
  margin: 40px auto 0;
  border: 3px solid var(--accent-yellow);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.image-frame img {
  width: 100%;
  height: auto;
  display: block;
}
.intro-flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.intro-text {
  flex: 1;
  text-align: center;
}

.intro-image {
  max-width: 300px;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .intro-flex {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    text-align: left;
  }

  .intro-text {
    max-width: 60%;
  }

  .intro-image {
    margin-top: 0;
  }
}
.intro-flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--bg-light-blue);
  padding: 40px;
  border-radius: 16px;
  gap: 30px;
}

.intro-text {
  flex: 1;
  max-width: 600px;
  text-align: left;
  padding: 10px 20px;
}

.intro-text h1 {
  font-size: 1.8rem;
  line-height: 1.3;
  margin-bottom: 16px;
  color: var(--brand-blue);
}

.intro-text p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-gray);
}

@media (min-width: 768px) {
  .intro-flex {
    flex-direction: row;
    justify-content: space-between;
  }

  .intro-text {
    padding-right: 40px;
  }
}

/* === SERVICII === */
.badge-subscription {
  background-color: #1a1952;
  color: white;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 30px;
  white-space: nowrap;
}
.has-subscription {
  position: relative;
}

.subscription-label {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--accent-yellow, #d8b664);
  color: #1a1952;
  padding: 4px 8px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 4px;
  z-index: 2;
}


/* testimonials */
.testimonials {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  background: var(--bg-light-blue);
  padding: 30px 16px;
  box-sizing: border-box;
  overflow-x: hidden;
}
@media (max-width: 768px) {
  .intro-flex {
    flex-direction: column;
    align-items: stretch;
    padding: 20px 0;
    gap: 20px;
  }

  .intro-image {
    max-width: 100%;
  }

  .testimonial-card {
    padding: 24px 16px;
      box-sizing: border-box;
  }
}

.testimonial-card iframe {
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  border-radius: 12px;
}

.testimonial-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.testimonial-card {
  max-width: 960px;      /* limitează lățimea reală */
  width: 100%;
  margin: 0 auto;
  padding: 40px 32px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  font-size: 12px;
  line-height: 1.7;
  box-sizing: border-box;
  position: relative;
  overflow-wrap: break-word;
}


.testimonial-text {
  margin-bottom: 24px;
  color: #333;
}

.author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.author-logo {
  max-height: 48px;
  max-width: 120px;
  object-fit: contain;
}
.logo-large {
  max-height: 72px;
  max-width: 160px;
}

.logo-xl {
  max-height: 96px;
  max-width: 200px;
}

.logo-small {
  max-height: 36px;
  max-width: 90px;
}


.quote-icon-under {
  display: block;
  width: 36px;
  height: 36px;
  margin-top: 16px;
  color: var(--accent-yellow, #c9a862);
  opacity: 0.25;
}

.testimonial-card {
  position: relative;
  overflow: hidden;
}

.quote-icon-bg {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 80px;
  height: 80px;
  color: var(--accent-yellow, #c9a862);
  opacity: 0.08; /* mai subtil decât 0.1 */
  z-index: 0;
  pointer-events: none;
}

.intro-flex {
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  padding: 0 16px;
  box-sizing: border-box;
}

.intro-text {
  flex: 1;
  text-align: center;
}

.intro-image {
  max-width: 300px;
  flex-shrink: 0;
}
.testimonial-header {
  display: flex;
  justify-content: space-between; /* ↔️ distribuie spațiul între titlu și badge */
  align-items: center;
}
/* Responsive pentru desktop */
@media (min-width: 768px) {
  .intro-flex {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }

  .intro-text {
    max-width: 60%;
    text-align: left;
  }

  .intro-image {
    margin-top: 0;
  }
}
.intro-illustration {
  width: 90%;
  max-width: 200px;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .intro-illustration {
    max-width: 140px;
  }
}

.accent-border {
  background: white; /* asigură fundal alb curat */
  border: 3px solid var(--accent-yellow);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05); /* opțional */
}
.short-title {
  display: none;
}
@media (max-width: 768px) {
  .long-title {
    display: none;
  }
  .short-title {
    display: inline;
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
