/* Avartis Nova – Stil tema ile birebir (Elementor/Vamtam değerleri) */

/* Tema değişkenleri – orijinal elementor-kit-9 + vamtam-theme-options */
:root {
  /* Renkler (elementor post-9 + vamtam) */
  --av-accent-1: #2C2C53;           /* Başlıklar, nav, primary metin */
  --av-accent-2: #5CC3DC;           /* Hover (elementor) */
  --av-accent-3: #F6F5F2;           /* Açık arka plan (stats kartları, blur) */
  --av-accent-4: #5CC3DC;           /* Vurgu ("Dijital" vb.) */
  --av-accent-5: #FFFFFF;
  --av-accent-6: #000000;
  --av-accent-7: rgba(0, 0, 0, 0.1);
  --av-btn-bg: #1C4B42;             /* vamtam theme */
  --av-btn-hover-bg: #B4E717;
  --av-btn-hover-text: #1C4B42;
  --av-body-text: rgba(0, 0, 0, 0.8);
  --av-site-max-width: 1440px;
  --av-container-padding: 30px;
  --av-container-padding-mobile: 20px;
  /* Tipografi – vamtam_h1..h6, primary */
  --av-font: "Montserrat", sans-serif;
  --av-body-size: 16px;
  --av-body-height: 1.4em;
  --av-h1-size: 52px;
  --av-h1-weight: 400;
  --av-h1-height: 1.1em;
  --av-h2-size: 48px;
  --av-h2-weight: 400;
  --av-h2-height: 1.2em;
  --av-h2-spacing: -0.5px;
  --av-h3-size: 30px;
  --av-h3-weight: 500;
  --av-h3-height: 1.2em;
  --av-h4-size: 22px;
  --av-h4-weight: 500;
  --av-h4-height: 1.3em;
  --av-h5-size: 20px;
  --av-h5-weight: 500;
  --av-h5-height: 1.2em;
  --av-h6-size: 18px;
  --av-h6-weight: 500;
  --av-h6-height: 1.2em;
  --av-h6-spacing: -0.4px;
  --av-btn-size: 15px;
  --av-btn-weight: 500;
  --av-btn-padding: 16px 24px;
  --av-btn-radius: 100px;
  --av-nav-size: 15px;
  --av-nav-weight: 500;
  --av-nav-spacing: -0.5px;
  --av-border-radius: 24px;
  --av-header-height: 80px;
}

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

body {
  font-family: var(--av-font);
  font-size: var(--av-body-size);
  line-height: var(--av-body-height);
  color: var(--av-body-text);
  padding-top: var(--av-header-height);
}

/* Container – tema ile aynı */
.av-header .container,
.av-hero .container,
.av-stats .container,
.av-features .container,
.av-overview .container,
.av-how .container,
.av-tabs-section .container,
.av-faq .container,
.av-blog-section .container,
.av-footer .container {
  max-width: var(--av-site-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--av-container-padding);
  padding-right: var(--av-container-padding);
}

/* ----- Header – sticky, beyaz ----- */
.av-header {
  min-height: var(--av-header-height);
  height: var(--av-header-height);
  background-color: var(--av-accent-5);
  transition: background-color 0.3s;
}
.av-header .container {
  display: flex;
  align-items: center;
  min-height: var(--av-header-height);
}
.av-header.av-header--scrolled {
  background-color: rgba(255, 255, 255, 0.98);
}
.av-logo {
  flex-shrink: 0;
}
.av-logo__img {
  height: 41px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}
@media (min-width: 992px) {
  .av-header__collapse {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .av-header__nav-wrap {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.av-nav {
  margin-bottom: 0;
  gap: 15px;
  background-color: white;
}
.av-header__collapse {
  background-color: white;
}
.av-nav__link {
  font-family: "Montserrat", var(--av-font), sans-serif;
  font-size: var(--av-nav-size);
  font-weight: 600 !important;
  line-height: 1.3em;
  letter-spacing: 0 !important;
  text-transform: none;
  font-style: normal;
  text-decoration: none;
  color: var(--av-accent-1) !important;
  padding: 12px 14px !important;
  border-radius: 30px;
  transition: background-color 0.2s, color 0.2s;
}
.av-nav__link:hover,
.av-nav__link.active {
  background-color: var(--av-accent-3) !important;
  color: var(--av-accent-1) !important;
}
.av-header__search {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  font-size: 20px;
  padding: 14px;
  background-color: #F6F5F2;
  color: var(--av-accent-1);
  border-radius: 50%;
  transition: background-color 0.2s, color 0.2s;
}
.av-header__search i {
  transition: color 0.2s;
}
.av-header__search:hover {
  background-color: var(--av-accent-1);
  color: transparent;
}
.av-header__search:hover i {
  color: var(--av-accent-4);
}
.av-social {
  display: flex;
  gap: 0.5rem;
}
.av-social__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: transparent;
  color: var(--av-accent-1) !important;
  font-size: 0.9rem;
  transition: background-color 0.2s, color 0.2s;
}
.av-social__link:hover {
  background-color: var(--av-accent-1);
  color: var(--av-accent-4) !important;
}

/* ----- Buttons – vamtam: 16px 24px, 100px radius ----- */
.av-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: var(--av-btn-padding);
  font-family: var(--av-font);
  font-size: var(--av-btn-size);
  font-weight: var(--av-btn-weight);
  border-radius: var(--av-btn-radius);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}
.av-btn--primary {
  background-color: var(--av-btn-bg);
  color: #fff !important;
}
.av-btn--primary:hover {
  background-color: var(--av-btn-hover-bg);
  color: var(--av-btn-hover-text) !important;
}
.av-btn--link {
  background: transparent;
  color: var(--av-accent-1) !important;
}
.av-btn--link:hover {
  color: var(--av-btn-hover-bg) !important;
}
.av-btn__icon {
  font-size: 1rem;
}

/* ----- Hero – 100vh, margin-bottom 12vh, inner max 730px ----- */

@media screen and (max-width: 768px) {
  
  .hero-counter {
    transform: none !important;
  }
  .hero-counter-assets-3 {
    position: relative;
    width: 100% !important;
  }
  .hero-counter-assets  {
    width: 100% !important;
  }

  .hero-counter-assets-2 {
    position: relative;
    width: 100% !important;
  }
}

.av-hero {
  position: relative;
}
.hero-area {
  position: relative;
  min-height: 100vh;
  margin-bottom: 12vh;
  padding: 10px 0;
  display: flex;
  align-items: center;
  background-color: transparent;
}
.av-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  pointer-events: none;
  border-radius: 20px 20px 20px 20px;
}
.av-hero .hero-area::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.25);
  z-index: 1;
  pointer-events: none;
  border-radius: 20px 20px 20px 20px;
}
.av-hero__content {
  position: relative;
  z-index: 2;
}
.av-hero .container {
  padding-top: 10px;
  padding-bottom: 10px;
}
.av-hero__inner {
  max-width: 730px;
  min-height: calc(100vh - 20px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.av-hero__badge {
  font-family: "Montserrat", var(--av-font), sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: -0.2px;
  line-height: 1.8em;
  margin-bottom: 0.5rem;
  color: #fff;
}
.av-hero__subtitle {
  font-family: "Montserrat", var(--av-font), sans-serif;
  font-size: 58px;
  font-weight: 500;
  line-height: 1em;
  letter-spacing: var(--av-h2-spacing);
  color: #fff;
  margin-bottom: 0.25rem;
}
.av-hero__divider {
  width: 60px;
  height: 3px;
  background-color: #fff;
  margin: 0.5rem 0 0.75rem;
}
.av-hero__title {
  font-family: "Montserrat", var(--av-font), sans-serif;
  font-size: 58px;
  font-weight: 500;
  line-height: 1em;
  color: #fff;
  margin-bottom: 1rem;
}
.av-hero__cta {
  display: inline-flex;
  align-items: stretch;
  gap: 0;
  margin-top: 0.5rem;
  text-decoration: none;
}
.av-hero__cta-text {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  background-color: #5CC3DC;
  color: #fff !important;
  font-family: "Montserrat", var(--av-font), sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1em;
  letter-spacing: -0.2px;
  border-radius: 100px 0 0 100px;
  transition: background-color 0.2s, color 0.2s;
}
.av-hero__cta-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background-color: #5CC3DC;
  color: #fff !important;
  border-radius: 0 100px 100px 0;
  font-size: 1rem;
  transition: background-color 0.2s, color 0.2s;
}
.av-hero__cta:hover .av-hero__cta-text,
.av-hero__cta:hover .av-hero__cta-icon-wrap {
  background-color: var(--av-accent-1);
  color: var(--av-accent-4) !important;
}

.hero-counter {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  z-index: 9;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.hero-counter-assets {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  height: 245px;
  background: linear-gradient(
    135deg,
    #f2f4f8 0%,
    #eef3f9 50%,
    #fff 100%
  );
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 24px;
}


.hero-counter-assets-3 {
  position: relative;
  width: 25%;
}
.hero-counter-assets-3 .mid-area-custom {
  width: max-content;
}

.hero-counter-assets-2 {
  position: relative;
  width: 25%;
}

.hero-counter-assets {
  position: relative;
  width: 50%;
}
.hero-counter-assets-3 img {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 24px;
  z-index: -1;
}


.hero-counter-assets .left-area {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  height: 100%;
  padding: 30px 0;
  width: 100%;
}
.hero-counter-assets .left-area h3 {
  font-family: "Montserrat", var(--av-font), sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1em;
  color: var(--av-accent-1);
  margin-bottom: 0;
}
.hero-counter-assets .left-area a {
  font-family: "Montserrat", var(--av-font), sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1em;
  color: var(--av-accent-1);
}

.hero-counter-assets .right-area {
  width: 100%;
  height: 100%;
}

.hero-counter-assets .right-area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
}
.hero-counter-assets .mid-area {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: end;
  gap: 15px;
  background: #fff;
  padding: 20px;
  border-radius: 20px;
  height: 100%;
}
.hero-counter-assets .mid-area h3 {
  font-family: "Montserrat", var(--av-font), sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1em;
  color: var(--av-accent-1);
  margin-bottom: 0;
}
.hero-counter-assets .mid-area p {
  font-family: "Montserrat", var(--av-font), sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1em;
  color: var(--av-accent-1);
}

.hero-counter-assets .mid-area-custom {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: end;
  justify-content: space-between;
  gap: 15px;
  background: #fff;
  padding: 20px;
  border-radius: 20px;
  height: 100%;
}
.hero-counter-assets .mid-area-custom .text-area h3 {
  font-family: "Montserrat", var(--av-font), sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1em;
  color: var(--av-accent-1);
  margin-bottom: 0;
}
.hero-counter-assets .mid-area-custom .text-area p {
  font-family: "Montserrat", var(--av-font), sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1em;
  color: var(--av-accent-1);
}

.hero-counter-assets .right-area-custom { 
  display: flex;
  width: 40% !important;
}

.hero-counter-assets .text-area {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: end;
  gap: 15px;
  width: 60% !important;
}
.hero-counter-assets .right-area-custom img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  object-position: center;
  border-radius: 100px;
  border: 1px solid #fff;
  margin-right: -20px;
  margin-bottom: 15px;
}

.hero-counter-assets .right-area-custom img:not(:last-child) {
  margin-right: -20px;
}

/* ----- Stats (Assets) – hero üzerine taşan beyaz kutu, yan yana ----- */
.av-stats {
  margin-top: -12vh;
  padding: 2.5rem 0 10vh;
  margin-bottom: 0;
  background-color: #fff;
  border-radius: 24px 24px 0 0;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 2;
}
.av-stats__container {
  max-width: var(--av-site-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--av-container-padding);
  padding-right: var(--av-container-padding);
}
.av-stats__row {
  align-items: stretch;
}
.av-stats__header-col {
  display: flex;
  align-items: flex-start;
}
.av-stats__header {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 0;
}
.av-stats__label {
  font-family: var(--av-font);
  font-size: var(--av-h3-size);
  font-weight: var(--av-h3-weight);
  line-height: var(--av-h3-height);
  color: var(--av-accent-1);
  margin: 0;
}
.av-stats__learn {
  align-self: flex-start;
}
.av-stats__cards {
  align-items: stretch;
}
.av-stat-card {
  background-color: #fff;
  -webkit-backdrop-filter: saturate(180%) blur(40px);
  backdrop-filter: saturate(180%) blur(40px);
  border-radius: var(--av-border-radius);
  padding: 7vh 30px 0;
  min-height: 550px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.av-stat-card__spacer {
  flex: 1;
  min-height: 1rem;
}
.av-stat-card__label {
  font-size: 1rem;
  color: var(--av-body-text);
  display: block;
  margin-bottom: 0.25rem;
}
.av-stat-card__number {
  font-family: var(--av-font);
  font-size: var(--av-h3-size);
  font-weight: var(--av-h3-weight);
  line-height: var(--av-h3-height);
  color: var(--av-accent-1);
  margin: 0;
}
.av-stat-card__imgs {
  margin-top: auto;
  display: flex;
  gap: 20px;
  align-items: flex-end;
  padding-bottom: 1rem;
}
.av-stat-card__imgs img {
  width: 100%;
  max-width: 281px;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
}

.assets-3-img { 
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
 }

 @media (max-width: 1200px) {
  .av-hero {
    flex-direction: column;
    align-items: stretch;
  }
  .av-hero__content {
    width: 100%;
  }
  .hero-counter {
    flex-direction: column;
    position: relative;
    bottom: auto;
    left: auto;
    width: 100%;
    margin-top: 1.5rem;
  }
 }


/* ----- Features (Neler Sağlıyoruz) – gradient + kartlar ----- */
.av-features {
  padding: 5rem 0;
}
.av-features--gradient {
    background-color: transparent;
    background-image: linear-gradient(180deg, #F6F5F2 0%, #FFFFFF 100%);}
.av-features__heading {
  font-family: var(--av-font);
  font-size: var(--av-h2-size);
  font-weight: var(--av-h2-weight);
  line-height: var(--av-h2-height);
  letter-spacing: var(--av-h2-spacing);
  color: var(--av-accent-1);
  margin-bottom: 0.25rem;
}
.av-features__divider {
  width: 80px;
  height: 3px;
  background-color: var(--av-accent-4);
  margin-top: 0.5rem;
}
.av-feature-card {
  background-color: transparent;
  background-image: linear-gradient(135deg, #FFFFFF17 0%, #5CC3DC1F 100%);
  border-radius: var(--av-border-radius);
  padding: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 20px;
}
.av-feature-card__icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  color: #5CC3DC;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 1rem;
}
.av-feature-card__title {
  font-family: var(--av-font);
  font-size: var(--av-h5-size);
  font-weight: var(--av-h5-weight);
  line-height: var(--av-h5-height);
  color: var(--av-accent-1);
  margin-bottom: 0.5rem;
}
.av-feature-card__text {
  font-size: var(--av-body-size);
  line-height: var(--av-body-height);
  color: var(--av-body-text);
  margin: 0;
}

.av-features {
  border-radius: 24px!important;
  overflow: hidden!important;
}
/* ----- Overview ----- */
.overview-area {
  background-color: #fff;
}

.av-overview {
  padding: 15vh 0;
  background-color: #2C2C53;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}
.av-overview img {
  position: absolute;
  bottom: -50px;
  left: -250px;
  width: 60%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 24px;
  opacity: 0.1;
}
.av-overview__label {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: -0.2px;
  color: white;
  margin-bottom: 1rem;
  padding: 5px 20px 5px 20px;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: var(--e-global-color-8641245);
    border-radius: 16px 16px 16px 16px;
}
.av-overview__title {
  font-family: var(--av-font);
  font-size: var(--av-h2-size);
  font-weight: var(--av-h2-weight);
  line-height: var(--av-h2-height);
  letter-spacing: var(--av-h2-spacing);
  color: white;
  margin-bottom: 1rem;
}
.av-overview__accent {
  color: var(--av-accent-4);
}
.av-overview__cta {
  margin-bottom: 2rem;
  margin-top: 4rem;
  background-color: white;
  color: #2C2C53 !important; 
}
.av-overview__cta:hover { 
  background-color: #5CC3DC;
  color: #2C2C53 !important; 
}
.av-overview__text p {
  font-size: var(--av-body-size);
  line-height: 1.5em;
  color: white;
  margin-bottom: 1rem;
}

/* ----- How it works ----- */
.av-how {
  padding: 5rem 0;
}
.av-how__title {
  font-family: var(--av-font);
  font-size: var(--av-h2-size);
  font-weight: var(--av-h2-weight);
  line-height: var(--av-h2-height);
  letter-spacing: var(--av-h2-spacing);
  color: var(--av-accent-1);
  margin-bottom: 2rem;
}
.av-how-card {
  display: block;
  background-color: rgb(246, 245, 242);
  border-radius: var(--av-border-radius);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  height: 100%;
  transition: transform 0.3s, box-shadow 0.3s;
}
.av-how-card:hover {
  transform: translateY(-4px);
  color: inherit;
  background-color: #5CC3DC;
}
.av-how-card__img {
  aspect-ratio: 1;
  overflow: hidden;
  padding: 0 1.5rem;
  border-radius: 24px 24px 0px 2px;
}

/* wavy-circle: görsel, assets/images/bg-5.png şekliyle maskelenir */
.av-how-card__img--top .wavy-circle {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 200px;
  position: relative;
  overflow: hidden;
}
.av-how-card__img--top .wavy-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.av-how-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px 24px 0px 2px;
}
.av-how-card__img--top img {
  border-radius: 0 0 24px 24px;
}
.av-how-card__content {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: start;
}
.av-how-card__content-inner {
  width: 70%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.av-how-card__label {
  font-size: 22px;
  line-height: 1.3em;
  color: #2C2C53;
}

.av-how-card__desc {
  font-size: var(--av-body-size);
  line-height: 1.4em;
  color: var(--av-body-text);
  margin: 0;
}
.av-how-card__icon {
  display: inline-flex;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: white;
  color: var(--av-accent-1);
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s, color 0.3s;
}
.av-how-card:hover .av-how-card__icon {
  background-color: var(--av-accent-1);
  color: #5CC3DC;
}

/* ----- Tabs (Herkes İçin) ----- */
.av-tabs-section {
  padding: 5rem 0;
  background-color: #fff;
}
.av-tabs-section__title {
  font-family: var(--av-font);
  font-size: var(--av-h2-size);
  font-weight: var(--av-h2-weight);
  line-height: var(--av-h2-height);
  letter-spacing: var(--av-h2-spacing);
  color: var(--av-accent-1);
  margin-bottom: 2rem;
}
.av-tabs .nav-link {
  font-family: var(--av-font);
  font-weight: 500;
  color: var(--av-body-text);
  border: none;
  border-bottom: 3px solid transparent;
  padding: 1rem 1.5rem;
}
.av-tabs .nav-link:hover {
  color: var(--av-accent-1);
}
.av-tabs .nav-link.active {
  color: var(--av-accent-1);
  background: transparent;
  border-bottom-color: var(--av-btn-hover-bg);
}
.av-tab-content {
  padding-top: 2rem;
}
.av-tab-card {
  background-color: var(--av-accent-3);
  border-radius: var(--av-border-radius);
  padding: 2.5rem 50px;
  text-align: center;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.av-tab-card__icon {
  font-size: 2rem;
  color: var(--av-btn-hover-bg);
  margin-bottom: 1rem;
}
.av-tab-card__title {
  font-family: var(--av-font);
  font-size: var(--av-h2-size);
  font-weight: var(--av-h2-weight);
  line-height: var(--av-h2-height);
  color: var(--av-accent-1);
  margin-bottom: 1rem;
}
.av-tab-card__text {
  font-size: var(--av-body-size);
  line-height: 1.5em;
  color: var(--av-body-text);
  margin-bottom: 1.5rem;
}

/* ----- FAQ ----- */
.av-faq {
  padding: 5rem 0;
}
.av-faq__title {
  font-family: var(--av-font);
  font-size: var(--av-h2-size);
  font-weight: var(--av-h2-weight);
  line-height: var(--av-h2-height);
  letter-spacing: var(--av-h2-spacing);
  color: var(--av-accent-1);
  margin-bottom: 1rem;
}
.av-faq__cta {
  margin-bottom: 1rem;
}
.av-accordion-item {
  background: #fff;
  border: none;
  border-radius: 12px !important;
  margin-bottom: 0.5rem;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.av-accordion-item__btn {
  font-family: var(--av-font);
  font-weight: 600;
  font-size: 1rem;
  color: var(--av-accent-1) !important;
  background: #fff !important;
  padding: 1rem 1.25rem;
}
.av-accordion-item__btn:not(.collapsed) {
  box-shadow: none;
}
.av-accordion-item__body {
  font-size: var(--av-body-size);
  line-height: 1.7;
  color: var(--av-body-text);
  padding: 1rem 1.25rem;
}



.av-accordion-item {
  box-shadow: none !important;
}

.av-accordion-item .accordion-header {
  border-style: solid;
    border-width: 0px 0px 0.5px 0px;
    border-color: #0000001A ;
    padding-bottom: 15px;
}

.av-faq__cta {
  background-color: #2C2C53;
}
.av-faq__cta:hover {
  background-color: #5CC3DC;
  color: #2C2C53 !important;
}

/* ----- Blog ----- */
.av-blog-section {
  padding: 15vh 0;
  background-color: #F6F5F2;
}
.av-blog-section__title {
  font-family: var(--av-font);
  font-size: var(--av-h2-size);
  font-weight: var(--av-h2-weight);
  line-height: var(--av-h2-height);
  letter-spacing: var(--av-h2-spacing);
  color: var(--av-accent-1);
  margin-bottom: 0;
}
.av-blog-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
}
.av-blog-card__link:hover {
  color: var(--av-accent-1);
}
.av-blog-card__img {
  aspect-ratio: 1024/658;
  overflow: hidden;
  border-radius: var(--av-border-radius);
  margin-bottom: 1rem;
}
.av-blog-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.av-blog-card__link:hover .av-blog-card__img img {
  transform: scale(1.03);
}
.av-blog-card__title {
  font-family: var(--av-font);
  font-size: var(--av-h4-size);
  font-weight: var(--av-h4-weight);
  line-height: var(--av-h4-height);
  color: var(--av-accent-1);
  margin: 0;
}

.av-blog__cta  {
  background-color: #2C2C53;
}
.av-blog__cta:hover {
  background-color: #5CC3DC;
  color: #2C2C53 !important;
}
/* ----- Footer ----- */
.av-footer {
  padding: 0;
  background-color: #fff;
  color: #2C2C53;
}
.av-footer__row {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.av-footer__brand {
  margin-bottom: 1rem;
}
.av-footer__logo {
  max-width: 60%;
  height: auto;
  display: block;
  margin-bottom: 1rem;
}
.av-footer__tagline {
  font-size: var(--av-body-size);
  line-height: var(--av-body-height);
  color: #2C2C53;
  margin: 0;
}
.av-footer__heading {
  font-size: var(--av-nav-size);
  font-weight: var(--av-nav-weight);
  letter-spacing: var(--av-nav-spacing);
  color: #2C2C53;
  margin: 0 0 1rem;
}
.av-footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.av-footer__list li {
  font-size: var(--av-body-size);
  line-height: 1.6;
  color: #2C2C53;
  margin-bottom: 0.35rem;
}
.av-footer__list a {
  color: #2C2C53;
  text-decoration: none;
}
.av-footer__list a:hover {
  color: var(--av-btn-hover-bg);
}
.av-footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.av-footer__contact .bi {
  flex-shrink: 0;
  margin-top: 0.2em;
}
.av-footer__bottom {
  margin: 0;
}
.av-footer__copyright {
  font-size: var(--av-body-size);
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}
.av-footer__social .av-social__link {
  color: #fff;
  margin-left: 0.75rem;
}
.av-footer__social .av-social__link:hover {
  color: var(--av-btn-hover-bg);
}

.banner-area-section {
  position: relative;
  height: 100vh;
  padding: 50px 0px;
  display: flex;
  align-items: center;
  justify-content: start;
  flex-direction: column;
}
.banner-area-content {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.banner-area-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}

.banner-area-section  h2 {
  font-family: "Montserrat", var(--av-font), sans-serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 1em;
  color: #fff;
  margin-bottom: 0;
  text-align: center;    
  margin-bottom: 25px;
}

@media screen and (max-width: 768px) {
  .banner-area-section {
      height: max-content !important;
  }
}

.banner-area-item { 
  background: #FFFFFFCC;
  border-radius: 24px;
  padding: 30px;
}

.banner-area-item .banner-area-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.banner-area-item .banner-area-head  span {
  display: inline-block;
  padding: 5px 20px 5px 20px;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #0000001A;
    border-radius: 16px 16px 16px 16px;
    font-size: 11px;
    text-transform: uppercase;
    line-height: 1.8em;
    letter-spacing: -0.2px;
    color: #2C2C53;
    font-weight: 500;
}

.banner-area-item .banner-area-body h4 {
  font-size: 22px;
  font-weight: 600;
  color: #2C2C53;
  line-height: 1.2em;
  line-height: 0.5px;
}
.banner-area-item .banner-area-body p {
  font-style: 16px;
  line-height: 1.4em;
  color: #2C2C53;
  margin-top: 30px;
  margin-bottom: 30px;
}
.banner-area-item .banner-area-body a {
  background-color: #2C2C53;
  font-size: 15px;
  font-weight: 500;
  line-height: 1em;
  letter-spacing: -0.2px;
  text-decoration: none;
  color: white;
  border-radius: 100px 100px 100px 100px;
  padding: 16px 24px 16px 24px;
  transition: .3s ease-in-out all;
}
.banner-area-item .banner-area-body a:hover {
  background-color: #5CC3DC;
  color: #2C2C53;
}
/* Scroll to top – orijinal vamtam-scroll-to-top gibi */
.av-scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: var(--av-accent-1);
  color: #fff;
  font-size: var(--av-btn-size);
  font-weight: var(--av-btn-weight);
  text-decoration: none;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: background-color 0.2s, color 0.2s;
}
.av-scroll-top:hover {
  background-color: var(--av-btn-hover-bg);
  color: var(--av-btn-hover-text);
}

/* ----- Animations ----- */
.av-animate {
  opacity: 0;
}
.av-animate.av-animated {
  opacity: 1;
}
.av-animated.av-animate-fadeIn {
  animation: avFadeIn 0.6s ease forwards;
}
.av-animated.av-animate-fadeInUp {
  animation: avFadeInUp 0.6s ease forwards;
}
.av-animated.av-animate-slideInUp {
  animation: avSlideInUp 0.6s ease forwards;
}
.av-animated.av-animate-fadeInRight {
  animation: avFadeInRight 0.6s ease forwards;
}
.av-animated.av-animate-zoomIn {
  animation: avZoomIn 0.5s ease forwards;
}

@keyframes avFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes avFadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes avSlideInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes avFadeInRight {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes avZoomIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

/* ----- Responsive – tema breakpoint (1024, 767) ----- */
@media (max-width: 1024px) {
  :root {
    --av-h1-size: 38px;
    --av-h2-size: 34px;
    --av-h3-size: 23px;
    --av-h4-size: 20px;
    --av-h5-size: 18px;
    --av-h6-size: 16px;
  }
  .av-hero {
    min-height: 60vh;
    margin-bottom: 60px;
  }
  .av-hero__inner {
    min-height: auto;
  }
  .av-stats {
    margin-top: -8vh;
    padding-bottom: 60px;
  }
  .av-stat-card {
    min-height: 400px;
    padding: 60px 20px 0;
  }
  .av-header .container,
  .av-hero .container,
  .av-stats .container,
  .av-stats__container,
  .av-features .container,
  .av-overview .container,
  .av-how .container,
  .av-tabs-section .container,
  .av-faq .container,
  .av-blog-section .container,
  .av-footer .container {
    padding-left: var(--av-container-padding-mobile);
    padding-right: var(--av-container-padding-mobile);
  }
}
@media (max-width: 767px) {
  :root {
    --av-h1-size: 32px;
    --av-h1-height: 1.2em;
    --av-h2-size: 28px;
    --av-h2-height: 1.3em;
    --av-h3-size: 21px;
    --av-h4-size: 19px;
    --av-h5-size: 17px;
    --av-h6-size: 15px;
  }
  .av-logo__img {
    max-height: 40px;
  }
  .av-hero {
    min-height: 50vh;
    margin-bottom: 40px;
  }
  .av-stats {
    margin-top: 0;
    padding-top: 2rem;
    padding-bottom: 40px;
  }
  .av-stat-card {
    min-height: 150px;
    padding: 40px 20px 0;
    gap: 20px;
  }
  .av-stat-card__imgs {
    flex-direction: row;
    justify-content: center;
  }
  .av-stat-card__imgs img {
    max-width: 80px;
  }
  .av-features,
  .av-overview,
  .av-how,
  .av-tabs-section,
  .av-faq,
  .av-blog-section {
    padding: 3rem 0;
  }
  .av-tab-card {
    padding: 2rem 20px;
    min-height: 300px;
  }
}
