/* Design System - Colors must be HSL */
:root {
  --background: hsl(150, 40%, 96%);
  --foreground: hsl(0, 0%, 10%);
  --card: hsl(0, 0%, 100%);
  --card-foreground: hsl(0, 0%, 10%);
  --primary: hsl(160, 70%, 45%);
  --primary-foreground: hsl(0, 0%, 100%);
  --secondary: hsl(150, 35%, 92%);
  --secondary-foreground: hsl(0, 0%, 10%);
  --muted: hsl(150, 20%, 90%);
  --muted-foreground: hsl(0, 0%, 45%);
  --accent: hsl(160, 65%, 50%);
  --accent-foreground: hsl(0, 0%, 100%);
  --border: hsl(150, 20%, 85%);
  --radius: 0.63rem;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
}
img {
    max-width: 100%;
    height: auto;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: rgba(241, 247, 244, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.3rem 1.5rem;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo {
    height: 4rem;
    width: auto;
}
.header-content button.btn {
    background: #E7B008;
    color: #000;
}
.nav-desktop {
    display: none;
    align-items: center;
    gap: 2.4rem;
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-link {
    color: var(--foreground);
    text-decoration: none;
    transition: var(--transition);
    font-size: 18px;
    font-weight: 400;
}

.nav-link:hover {
  color: var(--accent) !important;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.7rem 1.2rem;
    border-radius: var(--radius);
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    font-size: 1rem;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.btn-primary:hover {
  background-color: hsl(160, 70%, 40%);
}

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

.btn-secondary:hover {
  background-color: hsl(150, 35%, 88%);
}

.btn-lg {
    padding: 0.85rem 2rem;
    font-size: 1.125rem;
}

/* Hero Section */
.hero {
  padding: 8rem 0 5rem;
  text-align: center;
}

.hero-content {
  max-width: 75rem;
  margin: 0 auto;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .hero-title {
    font-size: 3.5rem;
  }
}
@media (min-width: 1024px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    max-width: 45rem;
    margin: 0 auto 2rem;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 48rem;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .hero-stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.stat-icon {
  width: 2rem;
  height: 2rem;
  color: var(--primary);
  font-size: 2rem;
}

.stat-value {
  font-size: 1.875rem;
  font-weight: bold;
}

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

/* Section Styles */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
  line-height: 2.4rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 3rem;
    line-height: 4rem;
  }
}

.section-description {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  max-width: 42rem;
  margin: 0 auto;
}

/* Features Section */
.features {
  padding: 5rem 0;
  background-color: rgba(227, 242, 235, 0.3);
}

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

@media (min-width: 576px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: var(--transition);
  animation: fade-in 0.5s ease-out;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px -10px hsla(160, 70%, 45%, 0.2);
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 3rem;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-description {
  color: var(--muted-foreground);
}

/* App Showcase Section */

.carousel-wrapper {
  position: relative;
  padding: 0 3rem;
}

.carousel-container {
  position: relative;
  width: 100%;
}

.carousel-track-container {
  overflow: hidden;
  width: 100%;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    justify-content: center;
}

.carousel-item {
  flex: 0 0 100%;
  padding: 1rem;
}

@media (min-width: 768px) {
  .carousel-item {
    flex: 0 0 50%;
  }
}

@media (min-width: 1024px) {
  .carousel-item {
    flex: 0 0 33.333%;
  }
}
.screen-image {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.screen-info {
    margin-top: 1rem;
    text-align: center;
}

.screen-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.screen-description {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

button.carousal-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  z-index: 10;
}

button.carousal-btn:hover {
  background-color: var(--accent);
  color: var(--accent-foreground);
}

button#custom-prev {
  left: 0;
}

button#custom-next {
  right: 0;
}
.tagline {
    width: 100%;
    padding: 3rem 1.5rem;   
    text-align: center;
    background-image: url(src/assets/bg-image-tag.jpg);
    background-repeat: no-repeat;
    background-position: 50%;
    background-color: #fff;
    position: relative;
}
.tagline h3 {
  font-size: 3rem;
  font-weight: 600;
  color: #fff;
  position: relative;
  line-height: 3.6rem;
}
.tagline::before {
    content: '';
    position: absolute;
    display: block;
    z-index: 0;
    background: var(--primary);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.9;
}
/* How It Works Section */
.how-it-works {
  padding: 5rem 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
}
@media (min-width: 576px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .steps-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.how-it-works .section-header {
    margin-bottom: 2rem;
}
.how-it-works .slick-track {
    padding-top: 2rem;
    display: flex;
    height: auto;
}
.step-card {
    position: relative;
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    animation: fade-in 0.5s ease-out;
    box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
    height: 100%;
}
ul.slick-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    gap: 0.2rem;
    margin: 1.2rem 0 0;
}
ul.slick-dots button {
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: 50%;
    font-size: 0;
    width: 0.8rem;
    height: 0.8rem;
    cursor: pointer;
}
ul.slick-dots .slick-active button,
ul.slick-dots .slick-active button:hover,
ul.slick-dots .slick-active button:focus {
    background: var(--primary);
}
.steps-grid .slick-list {
  margin: 0 -0.8rem;
}
.steps-grid .step-item {
    padding: 0 0.8rem;
    height: auto;
}
.step-icon {
    width: 2rem;
    height: 2rem;
    color: var(--primary);
    font-size: 2rem;
}
.steps_icon {
    background: rgba(34, 195, 142, 0.1);
    width: 4rem;
    height: 4rem;
    border-radius: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0.8rem;
}
.step-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0;
}
.step-card .step-count {
    position: absolute;
    top: -1.6rem;
    left: 1rem;
    background: var(--primary);
    color: #fff;
    width: 3rem;
    height: 3rem;
    border-radius: 100%;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 2.8rem;
    text-align: center;
}
.step-description {
  color: var(--muted-foreground);
}
.step-card .step-connector {
  display: block;
  position: absolute;
  right: -1rem;
  top: 50%;
  width: 2rem;
  height: 2px;
  background: rgb(209, 224, 217);
}


/* For Experts Section */
.for-experts,
.for-Faq {
  padding: 5rem 0;
  background-color: hsla(150, 35%, 92%, 0.3);
}
.for-Faq h4 {
    max-width: 60rem;
    margin: 1.2rem auto;
    font-size: 1.5rem;
    color: var(--primary);
}
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 600px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.benefit-card {
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.6rem;
    text-align: left;
    animation: fade-in 0.5s ease-out;
    box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
    display: flex;
    gap: 1rem;
}

.benefit-icon {
    color: var(--primary);
    font-size: 1.5rem;
}

.benefit-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.1rem;
}
.benefit-card-icon {
    background: rgba(34, 195, 142, 0.1);
    border-radius: var(--radius);
    width: 3rem;
    height: 3rem;
    min-width: 3rem;
    text-align: center;
    line-height: 3.3rem;
}
.benefit-description {
  color: var(--muted-foreground);
}

.experts-cta {
  text-align: center;
}

/* CTA Section */
.cta {
  padding: 5rem 0;
}

.cta-card {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  background: linear-gradient(135deg, white 0%, hsl(150, 30%, 98%) 100%);
  border: 1px solid var(--border);
  padding: 3rem 1.5rem;
  text-align: center;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, hsla(160, 70%, 45%, 0.1), transparent);
}

.cta-content {
  position: relative;
  z-index: 10;
}

.cta-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.5rem;
  color: var(--primary);
  font-size: 4rem;
  animation: float 3s ease-in-out infinite;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .cta-title {
    font-size: 3rem;
  }
}

.cta-description {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  max-width: 45rem;
  margin: 0 auto 2rem;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  padding-top: 1rem;
}

@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
  }
}
.partner_logos .logo_card {
    background-color: var(--card);
    border-radius: var(--radius);
    padding: 1.6rem;
    text-align: left;
    animation: fade-in 0.5s ease-out;
    box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
}
.our-partners .section-header {
    margin-bottom: 2.6rem;
}
.partner_logos .logo_card img {
    max-height: 7rem;
    width: auto;
    margin: 0 auto;
}
.partner_logos .logo_item {
    padding: 0 0.8rem;
}
.faq_block {
    background-color: var(--card);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: left;
    animation: fade-in 0.5s ease-out;
    box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
    max-width: 60rem;
    margin: 0 auto;
}
.faq_row {
    border-bottom: 1px solid var(--border);
    padding: 0.6rem 0;
}
.faq_row:last-child {
    border: 0;
    padding-bottom: 0;
}
.faq_row:first-child {
    padding-top: 0;
}
.faq_heading {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq_heading h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.1rem;
}
.faq_row ul {
    list-style-type: disc;
    padding-left: 1.8rem;
    margin: 0.4rem 0 0;
}
.arrow {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  transform: rotate(45deg);
  transition: transform .3s ease;
  margin-left: 10px;
}
.our-partners {
    padding: 5rem 0;
}
/* Rotate arrow when active */
.faq_row.active .arrow {
    transform: rotate(-135deg);
    border-color: var(--primary);
}
.faq_row.active .faq_heading h3 {
    color: var(--primary);
}
.faq_content {
  color: var(--muted-foreground);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding-right: 20px;
}

/* Footer */
.footer {
  background-color: var(--card);
  border-top: 1px solid var(--border);
  padding: 3rem 0 2rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (min-width: 567px) {
  .footer-grid {
      grid-template-columns: repeat(3, 1fr);
      align-items: center;
  }
}
.footer-logo {
    height: 5rem;
    width: auto;
}

.footer-heading {
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-link {
  color: var(--muted-foreground);
  text-decoration: none;
  transition: var(--transition);
}

.footer-link:hover {
  color: var(--primary) !important;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
  }
}

.footer-copyright,
.footer-designby {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}
.footer-designby a {
  color: var(--primary);
  text-decoration: none;
}
.footer-social {
  display: flex;
  gap: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: var(--secondary);
  color: var(--secondary-foreground);
  text-decoration: none;
  transition: var(--transition);
}

.social-link:hover {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

/* Animations */
@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}
/*mobile screens slider slick*/
/* tema slick */
.slick-slide img{
    width: 100%;
}
.slick-slider{
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}
.slick-list{
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}
.slick-list:focus{
    outline: none;
}
.slick-slider .slick-track,
.slick-slider .slick-list{
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
.slick-track{
    position: relative;
    top: 0;
    left: 0;
    display: block;
}
.slick-track:before,
.slick-track:after{
    display: table;
    content: '';
}
.slick-track:after{
    clear: both;
}
.slick-loading .slick-track{
    visibility: hidden;
}
.slick-slide{
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}
.slick-slide img{
    display: block;
}
.slick-slide.slick-loading img{
    display: none;
}
.slick-slide.dragging img{
    pointer-events: none;
}
.slick-initialized .slick-slide{
    display: block;
}

.slick-loading .slick-slide{
    visibility: hidden;
}
.slick-vertical .slick-slide{
    display: block;
    height: auto;
    border: 1px solid transparent;
}
.slick-arrow.slick-hidden{
    display: none;
}
@media (max-width: 1023px) {
  .step-card {
    padding: 1.5rem;
  }
  .partner_logos .logo_item {
    padding: 0 0.4rem;
  }
}
@media (max-width: 991px) {
  .carousel-wrapper {
    padding: 0;
  }
  .section-header {
    margin-bottom: 2rem;
  }
  .carousel-item {
    padding: 1rem 0.5rem;
  }
}
@media (max-width: 767px) {
  .hero-description {
    font-size: 1.1rem;
  }
  .header-content button.btn {
    margin-right: 2rem;
  }
  .tagline h3 {
    font-size: 2.4rem;
    line-height: 3rem;
  }
  .tagline {
    padding: 2rem 1.5rem;
  }
  .our-partners {
    padding: 3rem 0;
  }
  .for-experts, .for-Faq {
    padding: 3rem 0;
  }
  .faq_block {
    padding:1.5rem;
  }
}

body.dark-mode {
    background: linear-gradient(180deg, hsl(158 32% 8%), hsl(158 32% 12%));
    color: #ffffff;
}

.theme-btn {
    position: fixed;
    top: 1rem;
    right: 1rem;
    background: #fff;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 50%;
    transition: background 0.3s ease;
    z-index: 99;
    width: 2.4rem;
    height: 2.4rem;
    line-height: 3.2rem;
}
.theme-btn svg {
    width: 1.2rem;
    margin: 0 auto;
    transition: all 0.3s ease;
}
.theme-btn span#themeIcon {
    display: inline-block;
}
body.dark-mode .theme-btn {
    background: #0f1c17;
    color: #fff;
}
body.dark-mode .hero-description,
body.dark-mode .screen-description,
body.dark-mode .section-description,
body.dark-mode .benefit-description,
body.dark-mode .cta-description,
body.dark-mode .faq_content,
body.dark-mode .step-description,
body.dark-mode .footer-link,
body.dark-mode .feature-description,
body.dark-mode .footer-copyright,
body.dark-mode .footer-designby {
    color: rgb(138, 168, 151);
}
body.dark-mode .features {
    background-color: rgb(14, 27, 22);
}
body.dark-mode .for-experts, 
body.dark-mode .for-Faq {
    background: rgb(22, 39, 33);
}
body.dark-mode .benefit-card,
body.dark-mode .cta-card,
body.dark-mode .feature-card,
body.dark-mode .faq_block,
body.dark-mode .step-card {
    background: rgb(22, 39, 33);
    border: 1px solid rgb(39, 63, 54);
}
body.dark-mode span.arrow {
    border-color: #fff;
}
body.dark-mode .faq_row {
    border-color: rgb(39, 63, 54);
}
body.dark-mode .btn-secondary {
    background: rgb(22, 39, 33);
}
body.dark-mode .btn-secondary,
body.dark-mode .nav-link {
    color: #fff;
}
body.dark-mode footer.footer,
body.dark-mode .header {
    background: rgba(14, 27, 22, 0.95);
    border-color: rgb(39, 63, 54);
}
body.dark-mode .footer-bottom {
    border-color: rgb(39, 63, 54);
}
body.dark-mode button.carousal-btn {
    background-color: rgb(22, 39, 33);
    border-color: rgb(39, 63, 54);
    color: #fff;
}
body.dark-mode .step-card .step-connector {
    background: rgb(73 91 82);
}
body.dark-mode .header-content button.btn {
    color: #fff;
}