.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  padding: 16px 0;
  background: transparent;
  box-shadow: none;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.header.is-scrolled {
  background: #FFFFFF;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}
.header__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #45506E;
  font-weight: 600;
  font-size: 1.25rem;
}
.header__logo img {
  height: 36px;
  width: auto;
  object-fit: contain;
}
.header__logo-img--light {
  display: block !important;
}
.header__logo-img--dark {
  display: none !important;
}
.header__logo-text {
  display: inline-flex;
  align-items: center;
}
.header__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.header__nav-item {
  position: relative;
}
.header__nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  color: #45506E;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  border-radius: 10px;
  transition: all 0.2s ease;
  background: transparent;
}
.header__nav-link > i:first-of-type {
  font-size: 1rem;
  transition: color 0.2s ease;
}
.header__nav-link .fa-chevron-down {
  font-size: 0.7rem;
  margin-left: 2px;
  transition: transform 0.3s ease;
  color: #7C808D;
}
.header__nav-link:hover {
  color: #1074E6;
  background: rgba(16, 116, 230, 0.08);
}
.header__nav-link:hover .fa-chevron-down {
  transform: rotate(180deg);
}
.header__nav-link--gear > i:first-of-type {
  color: #1074E6;
}
.header__nav-link--instagram > i:first-of-type {
  color: #E1306C;
}
.header__nav-link--facebook > i:first-of-type {
  color: #3089FF;
}
.header__nav-link--youtube > i:first-of-type {
  color: #FF0000;
}
.header__nav-link--twitter > i:first-of-type {
  color: #25BEF9;
}
.header__nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 220px;
  background: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  margin-top: 4px;
}
.header__nav-dropdown::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #FFFFFF;
  filter: drop-shadow(0 -2px 2px rgba(0, 0, 0, 0.05));
}
.header__nav-item:hover .header__nav-dropdown, .header__nav-item.is-active .header__nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.header__nav-dropdown-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  color: #45506E;
  text-decoration: none;
  font-size: 0.9rem;
  border-radius: 6px;
  transition: all 0.2s ease;
}
.header__nav-dropdown-link i {
  font-size: 1.1rem;
  width: 24px;
  text-align: center;
}
.header__nav-dropdown-link:hover {
  background: rgba(16, 116, 230, 0.08);
  color: #1074E6;
  padding-left: 18px;
}
.header__nav-dropdown-link--instagram i {
  color: #E1306C;
}
.header__nav-dropdown-link--facebook i {
  color: #3089FF;
}
.header__nav-dropdown-link--youtube i {
  color: #FF0000;
}
.header__nav-dropdown-link--twitter i {
  color: #25BEF9;
}
.header__nav-dropdown-link:hover i {
  color: #1074E6;
}
.header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-shrink: 0;
}
.header__cart-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 2px solid #1074E6;
  border-radius: 10px;
  background: #FFFFFF;
  padding: 0;
  cursor: pointer;
  transition: all 0.2s ease;
}
.header__cart-btn:hover {
  border-color: #0d61c0;
  background: rgba(16, 116, 230, 0.05);
}
.header__cart-btn img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.header__login-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: #1074E6;
  color: #FFFFFF !important;
  border: none;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
  font-family: "Poppins", sans-serif;
}
.header__login-btn:hover {
  background: #0d61c0;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(16, 116, 230, 0.4);
}
.header__login-btn:hover img {
  transform: translateX(3px);
}
.header__login-btn img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  transition: transform 0.2s ease;
}
.header__theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 2px solid #1074E6;
  border-radius: 10px;
  background: #FFFFFF;
  cursor: pointer;
  padding: 0;
  transition: all 0.2s ease;
  position: relative;
}
@media (max-width: 576px) {
  .header__theme-toggle {
    width: 40px;
    height: 40px;
  }
}
.header__theme-toggle:hover {
  border-color: #0d61c0;
  background: rgba(16, 116, 230, 0.05);
}
.header__theme-toggle .header__theme-icon {
  position: absolute;
  font-size: 1.1rem;
  color: #1074E6;
  transition: opacity 0.2s ease;
}
.header__theme-toggle .header__theme-icon--moon {
  opacity: 1;
}
.header__theme-toggle .header__theme-icon--sun {
  opacity: 0;
}
.header__menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  min-width: 44px;
  padding: 10px;
  background: transparent;
  border: 1px solid #E5E7EB;
  cursor: pointer;
  flex-shrink: 0;
  border-radius: 10px;
  transition: background 0.2s ease;
}
.header__menu-toggle:hover {
  background: rgba(16, 116, 230, 0.08);
}
.header__menu-toggle span {
  width: 22px;
  height: 2px;
  background: #45506E;
  border-radius: 2px;
  transition: all 0.3s ease;
  display: block;
}
.header__menu-toggle.is-active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.header__menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}
.header__menu-toggle.is-active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
.header__mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(69, 80, 110, 0.5);
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.header__mobile-nav.is-open {
  opacity: 1;
  visibility: visible;
}
.header__mobile-nav.is-open .header__mobile-nav-inner {
  transform: translateX(0);
}
.header__mobile-nav-inner {
  position: absolute;
  top: 0;
  right: 0;
  width: 320px;
  max-width: 90vw;
  height: 100%;
  background: #FFFFFF;
  padding: 70px 24px 32px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
}
.header__mobile-nav-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 116, 230, 0.08);
  border: none;
  border-radius: 50%;
  color: #1074E6;
  cursor: pointer;
  transition: all 0.2s ease;
}
.header__mobile-nav-close:hover {
  background: rgba(16, 116, 230, 0.15);
  transform: rotate(90deg);
}
.header__mobile-nav-close i {
  font-size: 1.2rem;
}
.header__mobile-nav-item {
  border-bottom: 1px solid #E5E7EB;
}
.header__mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 0;
  color: #45506E;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  transition: color 0.2s ease;
}
.header__mobile-nav-link--trigger {
  justify-content: space-between;
}
.header__mobile-nav-link i:first-of-type {
  font-size: 1.2rem;
}
.header__mobile-nav-link:hover {
  color: #1074E6;
}
.header__mobile-nav-chevron {
  font-size: 0.7rem;
  color: #7C808D;
  transition: transform 0.3s ease;
}
.header__mobile-nav-item.is-open .header__mobile-nav-chevron {
  transform: rotate(180deg);
}
.header__mobile-nav-dropdown {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: rgba(16, 116, 230, 0.04);
}
.header__mobile-nav-item.is-open .header__mobile-nav-dropdown {
  max-height: 300px;
}
.header__mobile-nav-sublink {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px 12px 44px;
  color: #45506E;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
}
.header__mobile-nav-sublink i {
  font-size: 1.1rem;
}
.header__mobile-nav-sublink:hover, .header__mobile-nav-sublink:active {
  background: rgba(16, 116, 230, 0.08);
  color: #1074E6;
  border-left-color: #1074E6;
}
.header__mobile-nav-login {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #E5E7EB;
}
.header__mobile-nav-login-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 20px;
  background: #1074E6;
  color: #FFFFFF !important;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
  font-family: "Poppins", sans-serif;
}
.header__mobile-nav-login-btn:hover {
  background: #0d61c0;
  box-shadow: 0 4px 15px rgba(16, 116, 230, 0.4);
}
.header__mobile-nav-login-btn img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}
html[data-theme=dark] .header.is-scrolled {
  background: rgba(15, 20, 25, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}
html[data-theme=dark] .header:not(.is-scrolled) {
  background: transparent;
}
html[data-theme=dark] .header .header__logo {
  color: #FFFFFF;
}
html[data-theme=dark] .header .header__logo-img--light {
  display: none !important;
}
html[data-theme=dark] .header .header__logo-img--dark {
  display: block !important;
}
html[data-theme=dark] .header .header__nav-link {
  color: #FFFFFF;
}
html[data-theme=dark] .header .header__nav-link .fa-chevron-down {
  color: rgba(255, 255, 255, 0.7);
}
html[data-theme=dark] .header .header__nav-link:hover {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.1);
}
html[data-theme=dark] .header .header__theme-toggle {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.4);
}
html[data-theme=dark] .header .header__theme-toggle .header__theme-icon--moon {
  opacity: 0;
}
html[data-theme=dark] .header .header__theme-toggle .header__theme-icon--sun {
  opacity: 1;
  color: #fbbf24;
}
html[data-theme=dark] .header .header__cart-btn {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.4);
}
html[data-theme=dark] .header .header__cart-btn img {
  filter: brightness(0) invert(1);
}
html[data-theme=dark] .header .header__menu-toggle {
  border-color: rgba(255, 255, 255, 0.4);
}
html[data-theme=dark] .header .header__menu-toggle span {
  background: #FFFFFF;
}
@media (min-width: 1201px) {
  .header__menu-toggle {
    display: none;
  }
}
@media (max-width: 1200px) {
  .header__inner {
    grid-template-columns: 1fr auto;
  }
  .header__nav {
    display: none;
  }
  .header__login-btn {
    display: none;
  }
  .header__actions {
    gap: 8px;
  }
  .header__mobile-nav {
    display: block;
    pointer-events: none;
  }
  .header__mobile-nav.is-open {
    pointer-events: auto;
  }
}
@media (max-width: 768px) {
  .header {
    padding: 16px 0;
  }
  .header__nav-link {
    padding: 8px 10px;
    font-size: 0.85rem;
  }
}
@media (max-width: 576px) {
  .header {
    padding: 8px 0;
  }
  .header__inner {
    gap: 8px;
  }
  .header__logo img {
    height: 32px;
    width: 100%;
    height: auto;
    max-width: 180px;
  }
  .header__logo {
    font-size: 0.95rem;
  }
  .header__login-btn {
    padding: 8px 12px;
    font-size: 0.85rem;
  }
  .header__cart-btn {
    width: 40px;
    height: 40px;
  }
  .header__menu-toggle {
    width: 40px;
    height: 40px;
  }
  .header__menu-toggle span {
    width: 20px;
  }
  .header__mobile-nav-inner {
    padding: 80px 16px 24px;
    width: 280px;
  }
}

.footer {
  color: #FFFFFF;
  margin-top: auto;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #3A7DF8 0%, #5B9AFF 100%);
  z-index: 1;
}

.footer-top {
  background-color: #202230;
  position: relative;
  z-index: 1;
  border-top: 5px solid #3A7DF8;
}

.footer-top__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 23px 16px;
}
@media (max-width: 992px) {
  .footer-top__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

.footer-center {
  background-image: url("../../assets/images/footer-nav-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
}

.footer-center__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 48px 16px;
  align-items: start;
}
@media (max-width: 1200px) {
  .footer-center__inner {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .footer-center__inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 20px 15px;
  }
}

.footer-bottom {
  background-color: #151722;
  position: relative;
  z-index: 1;
}

.footer-bottom__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  padding: 20px 16px 20px;
}
@media (max-width: 992px) {
  .footer-bottom__inner {
    flex-direction: column;
    text-align: center;
  }
}

.footer__brand {
  max-width: 400px;
}
.footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #FFFFFF;
  font-weight: 600;
  font-size: 1.5rem;
  margin-bottom: 8px;
  transition: opacity 0.2s ease;
}
.footer__logo:hover {
  opacity: 0.9;
}
.footer__logo-image {
  height: 43px;
  width: auto;
  object-fit: contain;
}
.footer__tagline {
  font-size: 0.9rem;
  color: #9CA3AF;
  line-height: 1.5;
  margin: 0;
}
.footer__cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
@media (max-width: 992px) {
  .footer__cta {
    width: 100%;
    justify-content: center;
  }
}
.footer__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-size: 0.95rem;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.footer__btn--secondary {
  background: #313340;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.footer__btn--secondary:hover {
  background: #3D4150;
}
.footer__btn--primary {
  background: #3A7DF8;
  color: #FFFFFF;
}
.footer__btn--primary:hover {
  background: #538df9;
}
.footer__col {
  display: flex;
  flex-direction: column;
}
.footer__col-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: 600;
  color: #FFFFFF;
  margin: 0 0 24px 0;
}
.footer__col-title i {
  font-size: 0.85rem;
  color: #5B9AFF;
}
.footer__links {
  list-style: none;
  margin: 0 0 24px 0;
  padding: 0;
}
.footer__links li {
  margin-bottom: 8px;
}
.footer__links li:last-child {
  margin-bottom: 0;
}
.footer__links a {
  color: #9CA3AF;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}
.footer__links a:hover {
  color: #5B9AFF;
}
.footer__col-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  align-self: flex-start;
  padding: 10px 18px;
  background: #313340;
  color: #FFFFFF;
  border-radius: 8px;
  font-size: 0.9rem;
  font-family: "Poppins", sans-serif;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: auto;
  width: 100%;
  width: 100%;
  background-color: #22232F;
  border: none;
}
.footer__col-btn i {
  font-size: 0.75rem;
  transition: transform 0.2s ease;
}
.footer__col-btn:hover {
  background: #3D4150;
}
.footer__col-btn:hover i {
  transform: translateY(2px);
}
.footer__payments {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
@media (max-width: 992px) {
  .footer__payments {
    justify-content: center;
  }
}
.footer__payment-logo {
  height: 17px;
  width: auto;
  object-fit: contain;
  opacity: 0.95;
  display: block;
}
.footer__copyright {
  font-size: 0.85rem;
  color: #9CA3AF;
  margin: 0;
}
.footer__social {
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (max-width: 992px) {
  .footer__social {
    justify-content: center;
  }
}
.footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #313340;
  color: #FFFFFF;
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.2s ease;
}
.footer__social-link--instagram {
  background: #3A7DF8;
  color: #FFFFFF;
}
.footer__social-link:hover:not(.footer__social-link--instagram) {
  background: #3D4150;
  color: #5B9AFF;
}
.footer__social-link--instagram:hover {
  background: #6197f9;
}

.home-hero {
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #FAFBFC 0%, #F5F6F8 100%);
  position: relative;
  padding-top: 90px;
}
.home-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../../assets/images/hero-bg.png");
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
html[data-theme=dark] .home-hero {
  background: #0f1419;
}
html[data-theme=dark] .home-hero::before {
  background-image: url("../../assets/images/hero-dark-bg.png");
  opacity: 1;
}
html[data-theme=dark] .home-hero .home-hero__title--dark {
  color: #FFFFFF;
}
html[data-theme=dark] .home-hero .home-hero__title--accent {
  color: #1074E6;
}
html[data-theme=dark] .home-hero .home-hero__description {
  color: rgba(255, 255, 255, 0.85);
}
html[data-theme=dark] .home-hero .home-hero__hero-image--light {
  display: none !important;
}
html[data-theme=dark] .home-hero .home-hero__hero-image--dark {
  display: block !important;
}
.home-hero__content {
  flex: 1;
  max-width: 1440px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
  position: relative;
  z-index: 1;
  padding-top: 48px;
}
.home-hero__main {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 48px;
  align-items: flex-start;
}
.home-hero__left {
  max-width: 100%;
  padding-top: 60px;
}
@media (max-width: 768px) {
  .home-hero__left {
    padding-top: 0;
  }
}
.home-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(16, 116, 230, 0.08);
  border: 2px dashed rgba(16, 116, 230, 0.4);
  border-radius: 16px;
  color: #1074E6;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 24px;
}
.home-hero__badge i {
  font-size: 1rem;
}
.home-hero__title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
}
.home-hero__title .home-hero__title--dark {
  color: #45506E;
}
.home-hero__title .home-hero__title--accent {
  color: #1074E6;
}
.home-hero__description {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #7C808D;
  margin-bottom: 32px;
}
.home-hero__cta-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
}
.home-hero__cta-row img {
  max-width: 300px;
}
.home-hero__video-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: #1074E6;
  color: #FFFFFF !important;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(16, 116, 230, 0.35);
  white-space: nowrap;
}
.home-hero__video-btn:hover {
  background: #0e66c9;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(16, 116, 230, 0.45);
}
.home-hero__video-btn:hover i {
  transform: translateX(4px);
}
.home-hero__video-btn i {
  font-size: 1.1rem;
  transition: transform 0.2s ease;
}
.home-hero__testimonial-img {
  max-width: 100%;
  height: auto;
  display: block;
  max-height: 60px;
  object-fit: contain;
}
.home-hero__right {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 450px;
}
.home-hero__hero-image {
  width: 100%;
  max-width: 470px;
  height: auto;
  object-fit: contain;
  position: relative;
  z-index: 2;
  animation: home-hero__float 4s ease-in-out infinite;
}
.home-hero__hero-image--dark {
  display: none !important;
}
.home-hero__hero-image-placeholder {
  width: 100%;
  max-width: 400px;
  height: 400px;
  background: linear-gradient(135deg, rgba(16, 116, 230, 0.1) 0%, rgba(16, 116, 230, 0.05) 100%);
  border-radius: 30% 70% 70% 30%/30% 30% 70% 70%;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7C808D;
  font-size: 0.9rem;
  animation: home-hero__float 4s ease-in-out infinite;
}
.home-hero__floating-icons {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 3;
}
.home-hero__floating-icon {
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 1.4rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  animation: home-hero__icon-float 3s ease-in-out infinite;
}
.home-hero__floating-icon--instagram {
  top: 12%;
  right: 8%;
  background: #E1306C;
  animation-delay: 0s;
  box-shadow: 0 0 15.8px -1px #C6DEFF inset;
  width: 65px;
  height: 65px;
}
.home-hero__floating-icon--facebook {
  left: 5%;
  top: 45%;
  background: #3089FF;
  animation-delay: 0.5s;
  width: 65px;
  height: 65px;
  box-shadow: 0 0 15.8px -1px #C6DEFF inset;
}
.home-hero__floating-icon--twitter {
  bottom: 38%;
  right: 12%;
  background: #25BEF9;
  animation-delay: 1s;
  box-shadow: 0 0 15.8px -1px #C6DEFF inset;
  width: 65px;
  height: 65px;
}
.home-hero__floating-icon .home-hero__floating-notification {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 20px;
  height: 20px;
  background: #ff4757;
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  border: 2px solid white;
}
.home-hero__services-grid {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 12px;
  margin-bottom: 48px;
  margin-top: -220px;
  position: relative;
  z-index: 2;
}
.home-hero__service-card {
  border-radius: 16px;
  flex-direction: column;
  gap: 16px;
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  padding: 40px 27px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  min-height: 160px;
}
.home-hero__service-card i {
  font-size: 30px;
  display: block;
}
.home-hero__service-card span {
  display: block;
  font-weight: 400;
  font-size: 13px;
}
.home-hero__service-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}
.home-hero__service-card--facebook {
  background: #3089FF;
}
.home-hero__service-card--instagram {
  background: #E1306C;
}
.home-hero__service-card--twitch {
  background: #9752FF;
}
.home-hero__service-card--twitter {
  background: #25BEF9;
}
.home-hero__service-card--soundcloud {
  background: #F97637;
}
.home-hero__service-card--spotify {
  background: #29D266;
}
.home-hero__service-card--youtube {
  background: #FF0000;
}
.home-hero__service-card--tiktok {
  background: #000;
}
.home-hero__service-card--linkedin {
  background: #0A66C2;
}
.home-hero__service-card--discord {
  background: #5865F2;
}
.home-hero__service-card--telegram {
  background: #0088CC;
}
.home-hero__service-card--tumblr {
  background: #36465D;
}
.home-hero__service-card--pinterest {
  background: #E60023;
}
.home-hero__purchase-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 32px;
  background: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
  flex-wrap: wrap;
}
.home-hero__custom-select {
  flex: 1;
  min-width: 180px;
  position: relative;
}
.home-hero__select-trigger {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: #F8F9FA;
  border: 2px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.home-hero__select-trigger:hover {
  border-color: rgba(16, 116, 230, 0.3);
}
.home-hero__select-trigger.is-open {
  border-color: #1074E6;
  background: #FFFFFF;
  box-shadow: 0 4px 15px rgba(16, 116, 230, 0.15);
}
.home-hero__select-trigger i:first-child {
  font-size: 1.3rem;
  width: 28px;
  text-align: center;
}
.home-hero__select-trigger .home-hero__select-text {
  flex: 1;
  font-size: 0.95rem;
  font-weight: 500;
  color: #45506E;
  text-align: left;
}
.home-hero__select-trigger .fa-chevron-down {
  font-size: 0.75rem;
  color: #7C808D;
  transition: transform 0.3s ease;
}
.home-hero__select-trigger.is-open .fa-chevron-down {
  transform: rotate(180deg);
}
.home-hero__select-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin-top: 6px;
  background: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s ease;
  z-index: 100;
  max-height: 280px;
  overflow-y: auto;
}
.home-hero__select-dropdown.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.home-hero__select-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.95rem;
  color: #45506E;
}
.home-hero__select-option i {
  font-size: 1.2rem;
}
.home-hero__select-option:hover {
  background: rgba(16, 116, 230, 0.08);
}
.home-hero__select-option.is-selected {
  background: rgba(16, 116, 230, 0.12);
  color: #1074E6;
  font-weight: 600;
}
.home-hero__purchase-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}
.home-hero__buy-btn {
  display: flex;
  align-items: stretch;
  border: none;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  transition: all 0.3s ease;
  background: #1074E6;
}
.home-hero__buy-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(16, 116, 230, 0.4);
}
.home-hero__buy-btn:hover .home-hero__buy-btn-action {
  background: #0e66c9;
}
.home-hero__buy-btn-action {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: #1074E6;
  color: #FFFFFF !important;
  font-size: 1rem;
  font-weight: 600;
}
.home-hero__buy-btn-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
  mix-blend-mode: screen;
}
.home-hero__buy-btn-price {
  display: flex;
  align-items: center;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF !important;
  font-size: 1.1rem;
  font-weight: 700;
}
@keyframes home-hero__float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}
@keyframes home-hero__icon-float {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-8px) scale(1.05);
  }
}
@media (max-width: 992px) {
  .home-hero__main {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .home-hero__left {
    max-width: 100%;
  }
  .home-hero__cta-row {
    justify-content: center;
  }
  .home-hero__services-grid {
    grid-template-columns: repeat(5, 1fr);
  }
  .home-hero__floating-icon {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
}
@media (max-width: 768px) {
  .home-hero__content {
    padding-top: 32px;
    padding-bottom: 32px;
  }
  .home-hero__services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .home-hero__purchase-bar {
    flex-direction: column;
  }
  .home-hero__custom-select {
    min-width: 100%;
  }
  .home-hero__purchase-actions {
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 576px) {
  .home-hero {
    min-height: auto;
  }
  .home-hero__content {
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .home-hero__main {
    margin-bottom: 32px;
  }
  .home-hero__badge {
    padding: 6px 12px;
    font-size: 0.8rem;
  }
  .home-hero__title {
    font-size: 1.75rem;
  }
  .home-hero__description {
    font-size: 0.95rem;
  }
  .home-hero__cta-row {
    flex-direction: column;
    align-items: stretch;
  }
  .home-hero__video-btn {
    justify-content: center;
  }
  .home-hero__right {
    min-height: 280px;
  }
  .home-hero__hero-image-placeholder {
    max-width: 280px;
    height: 280px;
  }
  .home-hero__floating-icon {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }
  .home-hero__floating-icon--instagram {
    top: 8%;
    right: 5%;
  }
  .home-hero__floating-icon--facebook {
    left: 2%;
    top: 40%;
  }
  .home-hero__floating-icon--twitter {
    bottom: 15%;
    right: 5%;
  }
  .home-hero__services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-bottom: 32px;
  }
  .home-hero__service-card {
    font-size: 0.85rem;
  }
  .home-hero__service-card i {
    font-size: 2rem;
  }
  .home-hero__purchase-bar {
    padding: 16px;
  }
  .home-hero__buy-btn-action {
    padding: 12px 18px;
    font-size: 0.95rem;
  }
  .home-hero__buy-btn-icon {
    width: 18px;
    height: 18px;
  }
  .home-hero__buy-btn-price {
    padding: 12px 16px;
    font-size: 1rem;
  }
}

.popular-packages {
  background: #F2F3FF;
  padding: 48px 0;
  position: relative;
  overflow: hidden;
}
.popular-packages__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}
.popular-packages__header-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.popular-packages__header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.popular-packages__header-icon {
  width: 63px;
  height: 67px;
  flex-shrink: 0;
  object-fit: contain;
}
.popular-packages__header-text {
  padding-top: 4px;
}
.popular-packages__title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #45506E;
  margin-bottom: 4px;
  line-height: 1.2;
}
.popular-packages__subtitle {
  font-size: 0.95rem;
  color: #7C808D;
  line-height: 1.4;
}
.popular-packages__tabs {
  display: flex;
  gap: 10px;
}
.popular-packages__tab {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition: all 0.3s ease;
  background: #FFFFFF;
}
.popular-packages__tab i {
  transition: transform 0.2s ease;
}
.popular-packages__tab:hover {
  transform: translateY(-2px);
}
.popular-packages__tab:hover i {
  transform: scale(1.1);
}
.popular-packages__tab[data-platform=instagram] {
  color: #E1306C;
}
.popular-packages__tab[data-platform=facebook] {
  color: #3089FF;
}
.popular-packages__tab[data-platform=twitch] {
  color: #9752FF;
}
.popular-packages__tab.is-active {
  color: #FFFFFF !important;
}
.popular-packages__tab.is-active[data-platform=instagram] {
  background: #E1306C;
}
.popular-packages__tab.is-active[data-platform=facebook] {
  background: #3089FF;
}
.popular-packages__tab.is-active[data-platform=twitch] {
  background: #9752FF;
}
.popular-packages__content {
  display: flex;
  gap: 12px;
  align-items: stretch;
  min-height: 380px;
  overflow: visible;
}
.popular-packages__left {
  position: relative;
  flex: 0 0 280px;
  max-width: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}
.popular-packages__left-image {
  position: relative;
  z-index: 2;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}
.popular-packages__cta-btn {
  position: relative;
  z-index: 3;
  margin-top: -10px;
  padding: 14px 32px;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 16px;
  color: #FFFFFF;
  font-size: 1rem;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
.popular-packages__cta-btn:hover {
  background: rgba(255, 255, 255, 0.35);
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}
.popular-packages__cards {
  flex: 1;
  min-width: 0;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  padding: 4px 0;
  overflow: visible;
  justify-content: flex-start;
}
.popular-packages__card {
  flex: 1 1 220px;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: transparent;
  border-radius: 16px;
  overflow: visible;
  transition: transform 0.3s ease;
}
.popular-packages__card:hover {
  transform: translateY(-4px);
}
.popular-packages__card-header {
  background: #FFFFFF;
  padding: 16px 24px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: box-shadow 0.3s ease;
  margin-bottom: 8px;
}
.popular-packages__card:hover .popular-packages__card-header {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
.popular-packages__card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #FFFFFF;
  flex-shrink: 0;
  transition: background 0.3s ease;
}
.popular-packages[data-platform=instagram] .popular-packages__card-icon {
  background: #E1306C;
}
.popular-packages[data-platform=facebook] .popular-packages__card-icon {
  background: #3089FF;
}
.popular-packages[data-platform=twitch] .popular-packages__card-icon {
  background: #9752FF;
}
.popular-packages__card-header-text {
  min-width: 0;
}
.popular-packages__card-platform {
  display: block;
  font-size: 0.8rem;
  color: #7C808D;
  margin-bottom: 2px;
}
.popular-packages__card-name {
  font-size: 1rem;
  font-weight: 500;
  color: #45506E;
  line-height: 1.3;
}
.popular-packages__card-content {
  background: #FFFFFF;
  padding: 16px;
  border-radius: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 0.3s ease;
}
.popular-packages__card:hover .popular-packages__card-content {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
.popular-packages__features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.popular-packages__features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 12px;
  background: #F6F8FC;
  border-radius: 10px;
  font-size: 14px;
  color: #45506E;
  line-height: 1.4;
}
.popular-packages__features li:nth-child(odd) {
  background: transparent;
}
.popular-packages__features li i {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: #FFFFFF;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.popular-packages[data-platform=instagram] .popular-packages__features li i {
  background: #E1306C;
}
.popular-packages[data-platform=facebook] .popular-packages__features li i {
  background: #3089FF;
}
.popular-packages[data-platform=twitch] .popular-packages__features li i {
  background: #9752FF;
}
.popular-packages__features li:hover i {
  transform: scale(1.1);
}
.popular-packages__price-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}
.popular-packages__price-wallet {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(225, 48, 108, 0.12);
}
.popular-packages[data-platform=instagram] .popular-packages__price-wallet {
  background: rgba(225, 48, 108, 0.12);
}
.popular-packages[data-platform=facebook] .popular-packages__price-wallet {
  background: rgba(48, 137, 255, 0.12);
}
.popular-packages[data-platform=twitch] .popular-packages__price-wallet {
  background: rgba(151, 82, 255, 0.12);
}
.popular-packages__price-stack {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}
.popular-packages__price-old {
  font-size: 0.85rem;
  color: #7C808D;
  text-decoration: line-through;
  line-height: 1.2;
}
.popular-packages__price-current {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.2;
}
.popular-packages[data-platform=instagram] .popular-packages__price-current {
  color: #E1306C;
}
.popular-packages[data-platform=facebook] .popular-packages__price-current {
  color: #3089FF;
}
.popular-packages[data-platform=twitch] .popular-packages__price-current {
  color: #9752FF;
}
.popular-packages__wallet-icon {
  width: 20px;
  height: 17px;
  flex-shrink: 0;
  transition: color 0.3s ease;
}
.popular-packages[data-platform=instagram] .popular-packages__wallet-icon {
  color: #E1306C;
}
.popular-packages[data-platform=facebook] .popular-packages__wallet-icon {
  color: #3089FF;
}
.popular-packages[data-platform=twitch] .popular-packages__wallet-icon {
  color: #9752FF;
}
.popular-packages__favorite-btn {
  margin-left: auto;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(225, 48, 108, 0.6);
  font-size: 1.1rem;
  border-radius: 50%;
  transition: all 0.2s ease;
}
.popular-packages[data-platform=instagram] .popular-packages__favorite-btn {
  color: rgba(225, 48, 108, 0.6);
}
.popular-packages[data-platform=instagram] .popular-packages__favorite-btn:hover {
  color: #E1306C;
  background: rgba(225, 48, 108, 0.1);
}
.popular-packages[data-platform=facebook] .popular-packages__favorite-btn {
  color: rgba(48, 137, 255, 0.6);
}
.popular-packages[data-platform=facebook] .popular-packages__favorite-btn:hover {
  color: #3089FF;
  background: rgba(48, 137, 255, 0.1);
}
.popular-packages[data-platform=twitch] .popular-packages__favorite-btn {
  color: rgba(151, 82, 255, 0.6);
}
.popular-packages[data-platform=twitch] .popular-packages__favorite-btn:hover {
  color: #9752FF;
  background: rgba(151, 82, 255, 0.1);
}
.popular-packages__favorite-btn.is-active .fa-regular {
  display: none;
}
.popular-packages__favorite-btn.is-active .fa-solid {
  display: block !important;
}
.popular-packages__favorite-btn .fa-solid {
  display: none;
}
.popular-packages[data-platform=instagram] .popular-packages__favorite-btn.is-active {
  color: #E1306C;
}
.popular-packages[data-platform=facebook] .popular-packages__favorite-btn.is-active {
  color: #3089FF;
}
.popular-packages[data-platform=twitch] .popular-packages__favorite-btn.is-active {
  color: #9752FF;
}
.popular-packages__buy-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  padding: 14px 20px;
  border: none;
  border-radius: 10px;
  background: #E1306C;
  color: #FFFFFF;
  font-size: 1rem;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 4px;
  transform-origin: center;
}
.popular-packages[data-platform=instagram] .popular-packages__buy-btn {
  background: #E1306C;
}
.popular-packages[data-platform=instagram] .popular-packages__buy-btn:hover {
  background: #d41f5c;
  transform: translateY(-2px);
}
.popular-packages[data-platform=facebook] .popular-packages__buy-btn {
  background: #3089FF;
}
.popular-packages[data-platform=facebook] .popular-packages__buy-btn:hover {
  background: #1178ff;
  transform: translateY(-2px);
}
.popular-packages[data-platform=twitch] .popular-packages__buy-btn {
  background: #9752FF;
}
.popular-packages[data-platform=twitch] .popular-packages__buy-btn:hover {
  background: #8533ff;
  transform: translateY(-2px);
}
.popular-packages__buy-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  mix-blend-mode: screen;
}
@keyframes popular-packages__float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
.popular-packages__card {
  animation: popular-packages__card-in 0.5s ease-out backwards;
}
.popular-packages__card:nth-child(1) {
  animation-delay: 0.05s;
}
.popular-packages__card:nth-child(2) {
  animation-delay: 0.1s;
}
.popular-packages__card:nth-child(3) {
  animation-delay: 0.15s;
}
.popular-packages__card:nth-child(4) {
  animation-delay: 0.2s;
}
@keyframes popular-packages__card-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 992px) {
  .popular-packages__content {
    flex-direction: column;
    align-items: center;
  }
  .popular-packages__left {
    flex: none;
    width: 100%;
    max-width: 280px;
    min-height: 300px;
    padding-bottom: 24px;
  }
  .popular-packages__left-bg {
    border-radius: 24px;
  }
  .popular-packages__cards {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }
  .popular-packages__card {
    flex: 1 1 220px;
    min-width: 200px;
    max-width: 260px;
  }
}
@media (max-width: 768px) {
  .popular-packages {
    padding: 32px 0;
  }
  .popular-packages__header-row {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 32px;
  }
  .popular-packages__left {
    max-width: 100%;
    display: none;
  }
  .popular-packages__cards {
    justify-content: center;
  }
  .popular-packages__card {
    flex: 1 1 240px;
    min-width: 220px;
    max-width: 280px;
  }
}
@media (max-width: 576px) {
  .popular-packages {
    padding: 24px 0;
  }
  .popular-packages__header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .popular-packages__header-icon {
    width: 50px;
    height: 54px;
  }
  .popular-packages__title {
    font-size: 1.5rem;
  }
  .popular-packages__subtitle {
    font-size: 0.9rem;
  }
  .popular-packages__tabs {
    width: 100%;
    justify-content: center;
  }
  .popular-packages__tab {
    width: 44px;
    height: 44px;
    font-size: 1.25rem;
  }
  .popular-packages__content {
    flex-direction: column;
  }
  .popular-packages__left {
    flex: none;
    max-width: 100%;
    min-height: 240px;
  }
  .popular-packages__left-image {
    max-height: 200px;
  }
  .popular-packages__cta-btn {
    padding: 12px 24px;
    font-size: 0.95rem;
  }
  .popular-packages__cards {
    width: 100%;
  }
  .popular-packages__card {
    flex: 1 1 100%;
    min-width: 100%;
    max-width: 100%;
  }
  .popular-packages__card-content {
    padding: 16px;
  }
  .popular-packages__features li {
    font-size: 0.85rem;
  }
  .popular-packages__price-current {
    font-size: 1.1rem;
  }
  .popular-packages__buy-btn {
    padding: 12px 16px;
    font-size: 0.95rem;
  }
}

.kayit-ol-section {
  position: relative;
  overflow: hidden;
  margin-top: -5px;
}
.kayit-ol-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../../assets/images/anasayfa-kayit-ol-bg.png");
  opacity: 1;
  background-size: cover;
  background-position: top;
  pointer-events: none;
}
.kayit-ol-section__inner {
  position: relative;
  z-index: 1;
  padding: 48px 16px;
  max-width: 1440px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}
.kayit-ol-section__main {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 64px;
  align-items: center;
  min-height: 480px;
}
.kayit-ol-section__left {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 420px;
}
.kayit-ol-section__visual {
  position: relative;
  width: 100%;
  max-width: 420px;
  height: 100%;
  min-height: 380px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.kayit-ol-section__visual-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-45%, -50%) rotate(-5deg);
  width: 85%;
  max-width: 340px;
  z-index: 0;
}
.kayit-ol-section__visual-bg-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}
.kayit-ol-section__visual-image {
  position: relative;
  z-index: 2;
  height: auto;
  object-fit: contain;
  transform: translate(5%, 0) rotate(-3deg);
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
  animation: kayit-ol__float 4s ease-in-out infinite;
}
.kayit-ol-section__right {
  padding: 24px 0;
}
.kayit-ol-section__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  color: #FFFFFF;
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 24px;
}
.kayit-ol-section__badge i {
  font-size: 1rem;
  color: #1074E6;
}
.kayit-ol-section__title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.25;
  color: #FFFFFF;
  margin-bottom: 24px;
}
.kayit-ol-section__title-accent {
  color: #1074E6;
}
.kayit-ol-section__description {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #E0E0E0;
  margin-bottom: 32px;
  max-width: 480px;
}
.kayit-ol-section__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  background: #1074E6;
  color: #FFFFFF !important;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  text-decoration: none;
  transition: all 0.3s ease;
}
.kayit-ol-section__cta:hover {
  background: #0d61c0;
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(16, 116, 230, 0.5);
}
.kayit-ol-section__cta:hover i {
  transform: translateX(4px);
}
.kayit-ol-section__cta i {
  font-size: 1rem;
  transition: transform 0.2s ease;
}
.kayit-ol-section__wave {
  position: relative;
  width: 100%;
  line-height: 0;
  margin-top: -1px;
}
.kayit-ol-section__wave-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center top;
  margin-top: -25px;
}
.kayit-ol-section__stats {
  background: #2563eb;
  padding: 48px 16px;
  position: relative;
}
.kayit-ol-section__stats-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1440px;
  margin: 0 auto;
}
.kayit-ol-section__stat-card {
  border-radius: 20px;
  background: #3677E9;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 0 1px rgba(88, 146, 243, 0.5), 0 1px 2px rgba(0, 0, 0, 0.08);
  padding: 14px;
  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: left;
  gap: 24px;
  transition: transform 0.3s ease;
}
.kayit-ol-section__stat-card:hover {
  transform: translateY(-4px);
}
.kayit-ol-section__stat-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.kayit-ol-section__stat-icon {
  width: 52px;
  min-width: 52px;
  border-radius: 12px;
  background: #5892F3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: #FFFFFF;
  padding: 23px 18px;
}
.kayit-ol-section__stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.25;
}
.kayit-ol-section__stat-label {
  font-size: 0.9rem;
  color: #CDDFFD;
  line-height: 1.4;
  font-weight: 400;
}
@keyframes kayit-ol__float {
  0%, 100% {
    transform: translate(5%, 0) rotate(-3deg) translateY(0);
  }
  50% {
    transform: translate(5%, 0) rotate(-3deg) translateY(-10px);
  }
}
@media (max-width: 992px) {
  .kayit-ol-section__main {
    grid-template-columns: 1fr;
    gap: 32px;
    min-height: auto;
    padding: 32px 0;
  }
  .kayit-ol-section__left {
    order: 1;
    min-height: 360px;
  }
  .kayit-ol-section__right {
    order: 2;
    text-align: center;
    padding: 0;
  }
  .kayit-ol-section__description {
    margin-left: auto;
    margin-right: auto;
  }
  .kayit-ol-section__cta {
    justify-content: center;
  }
  .kayit-ol-section__stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .kayit-ol-section__inner {
    padding: 32px 16px;
  }
  .kayit-ol-section__visual {
    min-height: 320px;
  }
  .kayit-ol-section__visual-image {
    max-width: 240px;
  }
  .kayit-ol-section__stats-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .kayit-ol-section__stat-card {
    padding: 24px;
  }
  .kayit-ol-section__stat-value {
    font-size: 1.5rem;
  }
}
@media (max-width: 576px) {
  .kayit-ol-section__inner {
    padding: 24px 16px;
  }
  .kayit-ol-section__main {
    padding: 24px 0;
  }
  .kayit-ol-section__left {
    min-height: 280px;
  }
  .kayit-ol-section__visual {
    min-height: 260px;
  }
  .kayit-ol-section__visual-bg {
    width: 90%;
  }
  .kayit-ol-section__visual-image {
    max-width: 200px;
    width: 70%;
  }
  .kayit-ol-section__badge {
    padding: 8px 14px;
    font-size: 0.85rem;
  }
  .kayit-ol-section__title {
    font-size: 1.5rem;
    margin-bottom: 16px;
  }
  .kayit-ol-section__description {
    font-size: 0.95rem;
    margin-bottom: 24px;
  }
  .kayit-ol-section__cta {
    padding: 14px 24px;
    font-size: 1rem;
    width: 100%;
    justify-content: center;
  }
  .kayit-ol-section__stats {
    padding: 32px 16px;
  }
  .kayit-ol-section__stats-inner {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .kayit-ol-section__stat-card {
    padding: 24px;
    gap: 24px;
  }
  .kayit-ol-section__stat-icon {
    flex-shrink: 0;
  }
  .kayit-ol-section__stat-value {
    font-size: 1.4rem;
  }
  .kayit-ol-section__stat-label {
    font-size: 0.9rem;
  }
}

.testimonial-section {
  position: relative;
  background: #ECEFFB;
  padding: 48px 0;
  overflow: hidden;
  margin-top: -5px;
}
.testimonial-section__bg-image {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(20%, -50%);
  width: 420px;
  max-width: 45vw;
  height: auto;
  z-index: 0;
  pointer-events: none;
}
.testimonial-section__bg-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}
.testimonial-section__inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 24px;
  padding-bottom: 32px;
}
.testimonial-section__header {
  text-align: center;
  margin-bottom: 48px;
}
.testimonial-section__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: #45506E;
  margin-bottom: 8px;
}
.testimonial-section__subtitle {
  font-size: 1rem;
  color: #7C808D;
  font-weight: 400;
}
.testimonial-section__slider-container {
  position: relative;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 56px;
}

.testimonial-splide .splide__pagination {
  display: none !important;
}
.testimonial-splide .splide__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: #1074E6 !important;
  border: none;
  border-radius: 10px;
  color: #FFFFFF !important;
  opacity: 1;
  z-index: 10;
  transition: background 0.2s ease, transform 0.2s ease;
}
.testimonial-splide .splide__arrow:hover {
  background: #0d61c0 !important;
  transform: translateY(-50%) scale(1.05);
}
.testimonial-splide .splide__arrow svg {
  fill: #FFFFFF !important;
  width: 20px;
  height: 20px;
}
.testimonial-splide .splide__arrow--prev {
  left: 8px;
}
.testimonial-splide .splide__arrow--next {
  right: 8px;
}
.testimonial-splide .splide__slide {
  padding: 0px;
  transition: transform 0.3s ease;
}
.testimonial-splide .splide__slide.is-active .testimonial-card {
  transform: scale(1.08);
}

.testimonial-card {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 20px;
  height: 100%;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 24px;
}
.testimonial-card__avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 16px;
  background-color: #F2F3FF;
}
.testimonial-card__name {
  font-size: 16px;
  font-weight: 400;
  color: #45506E;
  margin-bottom: 8px;
}
.testimonial-card__stars {
  display: flex;
  gap: 4px;
  justify-content: center;
  margin-bottom: 16px;
}
.testimonial-card__stars i {
  color: #1074E6;
  font-size: 0.95rem;
}
.testimonial-card__stars i.fa-regular {
  opacity: 0.7;
}
.testimonial-card__description {
  border-radius: 12px;
  background: #F7F8FB;
  padding: 10px 15px;
  font-size: 14px;
  line-height: 1.6;
  color: #7C808D;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 300;
}

.testimonial-splide .splide__track {
  overflow: hidden;
  padding-top: 16px;
  padding-bottom: 16px;
}

.testimonial-splide .splide__list {
  display: flex;
  align-items: stretch;
}

@media (max-width: 992px) {
  .testimonial-section__bg-image {
    width: 320px;
    transform: translate(30%, -50%);
    opacity: 0.85;
  }
  .testimonial-section__slider-container {
    padding: 0 52px;
  }
  .testimonial-splide .splide__arrow--prev {
    left: 8px;
  }
  .testimonial-splide .splide__arrow--next {
    right: 8px;
  }
}
@media (max-width: 768px) {
  .testimonial-section {
    padding: 32px 0;
  }
  .testimonial-section__bg-image {
    width: 260px;
    opacity: 0.6;
  }
  .testimonial-section__slider-container {
    padding: 0 48px;
  }
  .testimonial-card {
    min-height: 260px;
    padding: 24px;
  }
  .testimonial-splide .splide__slide.is-active .testimonial-card {
    transform: scale(1.05);
  }
}
@media (max-width: 576px) {
  .testimonial-section {
    padding: 24px 0;
  }
  .testimonial-section__bg-image {
    display: none;
  }
  .testimonial-section__header {
    margin-bottom: 32px;
  }
  .testimonial-section__slider-container {
    padding: 0 44px;
  }
  .testimonial-splide .splide__arrow {
    width: 40px;
    height: 40px;
  }
  .testimonial-splide .splide__arrow--prev {
    left: 0;
  }
  .testimonial-splide .splide__arrow--next {
    right: 0;
  }
  .testimonial-card {
    min-height: 240px;
    padding: 16px;
  }
  .testimonial-card__avatar {
    width: 56px;
    height: 56px;
  }
  .testimonial-card__description {
    padding: 8px 16px;
    font-size: 0.85rem;
  }
  .testimonial-splide .splide__slide.is-active .testimonial-card {
    transform: scale(1.02);
  }
}
.testimonial-splide .splide__arrow--next {
  right: -20px;
}

.testimonial-splide .splide__arrow--prev {
  left: -20px;
}

.faq-section {
  background: #F2F3FF;
  padding: 48px 0;
  overflow: hidden;
}
.faq-section__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}
.faq-section__header {
  text-align: center;
  margin-bottom: 48px;
}
.faq-section__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #45506E;
  margin-bottom: 8px;
}
.faq-section__subtitle {
  font-size: 1rem;
  font-weight: 400;
  color: #7C808D;
}
.faq-section__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 100%;
}
.faq-section__column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.faq-item {
  background: #FFFFFF;
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow 0.35s ease;
}
.faq-item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
.faq-item__header {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: background 0.2s ease;
}
.faq-item__header:hover {
  background: rgba(0, 0, 0, 0.02);
}
.faq-item__header:focus-visible {
  outline: 2px solid #1074E6;
  outline-offset: 2px;
}
.faq-item__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  object-fit: contain;
  transition: opacity 0.35s ease;
}
.faq-item__icon--default {
  display: block;
}
.faq-item__icon--active {
  display: none;
}
.faq-item.is-open .faq-item__icon--default {
  display: none;
}
.faq-item.is-open .faq-item__icon--active {
  display: block;
}
.faq-item__question {
  font-size: 1.125rem;
  font-weight: 500;
  color: #45506E;
  line-height: 1.4;
}
.faq-item__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-item__answer {
  padding: 16px;
  font-size: 0.9375rem;
  font-weight: 300;
  color: #7C808D;
  line-height: 1.65;
}
.faq-item.is-open .faq-item__content {
  max-height: 500px;
}

@media (max-width: 768px) {
  .faq-section__grid {
    grid-template-columns: 1fr;
  }
}
.blog-section {
  background-repeat: repeat;
  background-position: 0 0;
  padding: 48px 0;
  position: relative;
}
.blog-section__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
  background-image: url("../../assets/images/blog-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 20px;
  padding: 40px !important;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
}
@media (max-width: 1200px) {
  .blog-section__inner {
    border-radius: 16px;
    padding: 24px;
  }
}
.blog-section__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.blog-section__header-left {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.blog-section__header-icon {
  width: 63px;
  height: 67px;
  flex-shrink: 0;
  object-fit: contain;
}
.blog-section__header-text {
  padding-top: 4px;
}
.blog-section__title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 4px;
  line-height: 1.2;
}
.blog-section__subtitle {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
}
.blog-section__view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: #1074E6;
  color: #FFFFFF;
  font-size: 1rem;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  text-decoration: none;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.blog-section__view-all-btn:hover {
  background: #0d61c0;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(16, 116, 230, 0.4);
}
.blog-section__view-all-btn i {
  font-size: 0.9rem;
}
.blog-section__cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
@media (max-width: 1200px) {
  .blog-section__cards {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 992px) {
  .blog-section__cards {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .blog-section__cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .blog-section__cards {
    grid-template-columns: 1fr;
  }
}
.blog-section__card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
  text-decoration: none;
  color: inherit;
}
.blog-section__card:hover {
  transform: translateY(-4px);
}
.blog-section__card-top {
  position: relative;
  z-index: 2;
  padding: 16px 24px 8px;
  text-align: center;
}
.blog-section__card-branding {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 8px;
  color: #FFFFFF;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: lowercase;
}
.blog-section__card-branding i {
  font-size: 0.85rem;
}
.blog-section__card-main-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 4px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}
.blog-section__card-subtitle {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.3;
}
.blog-section__card-image-wrap {
  position: relative;
  z-index: 1;
  flex: 1;
  min-height: 120px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.blog-section__card-image {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  object-position: bottom center;
}
.blog-section__card-footer {
  position: absolute;
  bottom: 0;
  z-index: 3;
  padding: 0px;
  padding-bottom: 24px;
  padding-right: 16px;
}
.blog-section__card-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #000000 0%, #000000 30%, transparent 100%);
  pointer-events: none;
}
.blog-section__card-footer-content {
  position: relative;
  z-index: 2;
}
.blog-section__card-post-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.3;
  margin-bottom: 4px;
  padding-left: 14px;
  position: relative;
}
.blog-section__card-post-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 50%;
  min-height: 50px;
  background: #1074E6;
  border-radius: 2px;
}
.blog-section__card-url {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.6);
}
.blog-section__article-wrap {
  margin-top: 32px;
  border-radius: 16px;
  margin-bottom: 60px;
}
.blog-section__article {
  position: relative;
  background: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}
.blog-section__article-content {
  max-height: 400px;
  overflow-y: auto;
  padding: 32px;
  text-align: left;
}
.blog-section__article-content::-webkit-scrollbar {
  width: 8px;
}
.blog-section__article-content::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 4px;
}
.blog-section__article-content::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.15);
  border-radius: 4px;
}
.blog-section__article-content::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.25);
}
.blog-section__article-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #343a40;
  margin-bottom: 16px;
  line-height: 1.3;
}
.blog-section__article-text {
  font-size: 0.95rem;
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 32px;
  letter-spacing: 0.01em;
}
.blog-section__article-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  pointer-events: none;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.25) 50%, transparent 100%);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0.75;
}
@media (max-width: 768px) {
  .blog-section {
    padding: 32px 0;
  }
  .blog-section__inner {
    padding: 24px;
  }
  .blog-section__header {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 24px;
  }
  .blog-section__view-all-btn {
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 576px) {
  .blog-section {
    padding: 24px 0;
  }
  .blog-section__inner {
    padding: 16px;
    border-radius: 14px;
  }
  .blog-section__header-left {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .blog-section__header-icon {
    width: 50px;
    height: 54px;
  }
  .blog-section__title {
    font-size: 1.5rem;
  }
  .blog-section__subtitle {
    font-size: 0.9rem;
  }
  .blog-section__cards {
    gap: 8px;
  }
  .blog-section__card-main-title {
    font-size: 0.85rem;
  }
  .blog-section__card-post-title {
    font-size: 0.95rem;
  }
}

.blog-hero {
  position: relative;
  overflow: hidden;
  padding: 90px 0 30px;
  min-height: 300px;
}
.blog-hero__bg {
  position: absolute;
  inset: 0;
  background-image: url("../../assets/images/banner-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}
.blog-hero__wave {
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  width: 100%;
  height: 30px;
  background-image: url("../../assets/images/banner-under-vawe.png");
  background-size: contain;
  background-position: center bottom;
  background-repeat: repeat-x;
  z-index: 3;
  pointer-events: none;
}
html[data-theme=dark] .blog-hero__bg {
  background-image: url("../../assets/images/banner-dark-bg.png");
}
html[data-theme=dark] .blog-hero .blog-hero__title {
  color: #FFFFFF;
}
html[data-theme=dark] .blog-hero .blog-hero__subtitle {
  color: rgba(255, 255, 255, 0.8);
}
html[data-theme=dark] .blog-hero .blog-hero__cta {
  background: rgba(16, 116, 230, 0.3);
  color: #7fb7f6;
  border-color: rgba(16, 116, 230, 0.5);
}
.blog-hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-top: 24px;
}
.blog-hero__main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 32px;
}
@media (max-width: 768px) {
  .blog-hero__main {
    grid-template-columns: 1fr;
    gap: 16px;
    align-items: center;
    justify-content: center;
  }
}
.blog-hero__left {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}
.blog-hero__icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  background: #1074E6;
  border-radius: 16px;
  color: #FFFFFF;
  font-size: 2rem;
  padding: 36px 20px;
}
.blog-hero__title {
  font-size: clamp(1.5rem, 3vw, 1.5rem);
  font-weight: 500;
  color: #45506E;
  line-height: 1.2;
  margin: 0;
}
.blog-hero__subtitle {
  font-size: 14px;
  color: #7C808D;
  margin: 0;
  line-height: 1.5;
  margin-bottom: 10px;
  display: block;
}
.blog-hero__cta {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  background: rgba(16, 116, 230, 0.15);
  color: #1074E6;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
  border: 1px solid rgba(16, 116, 230, 0.3);
}
.blog-hero__cta:hover {
  background: rgba(16, 116, 230, 0.25);
  transform: translateY(-1px);
}
.blog-hero__right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.blog-hero__banner-image {
  max-width: 100%;
  width: 100%;
  max-height: 200px;
  object-fit: contain;
  object-position: center right;
}
@media (max-width: 768px) {
  .blog-hero {
    padding: 70px 0 50px;
    min-height: auto;
  }
  .blog-hero__main {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .blog-hero__left {
    order: 1;
    align-items: center;
    justify-content: center;
  }
  .blog-hero__right {
    order: 2;
    justify-content: center;
    align-items: center;
  }
  .blog-hero__banner-image {
    max-width: 100%;
    width: 100%;
    height: auto;
    max-height: max-content;
  }
}
@media (max-width: 576px) {
  .blog-hero {
    padding: 60px 0 40px;
  }
  .blog-hero__icon-wrap {
    width: 56px;
    padding: 28px 16px;
    font-size: 1.5rem;
  }
  .blog-hero__banner-image {
    width: 100%;
    height: auto;
    max-height: max-content;
  }
}

.blog-page__cards .blog-section__cards {
  gap: 12px;
}

.blog-page__cards .blog-section__cards .blog-section__card .blog-section__card-image {
  width: 100%;
  height: auto;
}

.blog-page__cards {
  margin-top: -40px !important;
  padding-bottom: 48px;
  position: relative;
  z-index: 3;
}
@media (max-width: 768px) {
  .blog-page__cards {
    margin-top: -24px;
  }
}

.blog-detail-content {
  position: relative;
  z-index: 3;
  margin-top: -180px;
  min-height: 400px;
  margin-bottom: 48px;
}
.blog-detail-content__wave {
  position: absolute;
  top: 0;
  right: 0;
  width: 45%;
  max-width: 600px;
  height: 100%;
  min-height: 500px;
  background: linear-gradient(135deg, rgba(16, 116, 230, 0.06) 0%, rgba(16, 116, 230, 0.02) 50%, transparent 100%);
  border-radius: 50% 0 0 50%/30% 0 0 30%;
  transform: translate(15%, -5%) scale(1.2);
  pointer-events: none;
  z-index: 0;
}
.blog-detail-content__inner {
  position: relative;
  z-index: 1;
  background: #FFFFFF;
  border-radius: 24px;
  padding: 20px;
}
@media (max-width: 768px) {
  .blog-detail-content {
    margin-top: -24px;
    padding: 32px 0;
  }
  .blog-detail-content__inner {
    padding: 32px;
  }
  .blog-detail-content__wave {
    width: 60%;
    opacity: 0.7;
  }
}
@media (max-width: 576px) {
  .blog-detail-content {
    margin-top: -80px;
    padding: 24px 0;
  }
  .blog-detail-content__inner {
    padding: 24px;
    border-radius: 16px;
  }
  .blog-detail-content__wave {
    width: 80%;
    min-height: 400px;
  }
}

.blog-detail-article__image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  margin-bottom: 32px;
}
.blog-detail-article__image {
  display: block;
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  object-position: center right;
}
.blog-detail-article__image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 30%;
  min-height: 100px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
  pointer-events: none;
}
.blog-detail-article__image-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: clamp(1.1rem, 2.5vw, 2rem);
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.3;
  font-family: "Poppins", sans-serif;
  padding-left: 0px;
}
.blog-detail-article__image-title-bar {
  flex-shrink: 0;
  width: 5px;
  height: 28px;
  background: #1074E6;
  border-radius: 3px;
}
.blog-detail-article__image-title-text {
  flex: 1;
}
.blog-detail-article__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #45506E;
  line-height: 1.3;
  margin: 0 0 32px;
  letter-spacing: -0.02em;
}
.blog-detail-article__body {
  margin-bottom: 48px;
}
.blog-detail-article__body p {
  font-size: 1rem;
  color: #7C808D;
  line-height: 1.7;
  margin: 0 0 24px;
  letter-spacing: 0.01em;
}
.blog-detail-article__body p:last-child {
  margin-bottom: 0;
}
@media (max-width: 576px) {
  .blog-detail-article__title {
    font-size: 1.35rem;
    margin-bottom: 24px;
  }
  .blog-detail-article__body p {
    font-size: 0.95rem;
  }
}

.kategoriler-hero {
  position: relative;
  overflow: hidden;
  padding: 90px 0 30px;
  min-height: 300px;
}
.kategoriler-hero__bg {
  position: absolute;
  inset: 0;
  background-image: url("../../assets/images/banner-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}
.kategoriler-hero__wave {
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  width: 100%;
  height: 30px;
  background-image: url("../../assets/images/banner-under-vawe.png");
  background-size: contain;
  background-position: center bottom;
  background-repeat: repeat-x;
  z-index: 3;
  pointer-events: none;
}
html[data-theme=dark] .kategoriler-hero__bg {
  background-image: url("../../assets/images/banner-dark-bg.png");
}
html[data-theme=dark] .kategoriler-hero .kategoriler-hero__title {
  color: #FFFFFF;
}
html[data-theme=dark] .kategoriler-hero .kategoriler-hero__subtitle {
  color: rgba(255, 255, 255, 0.8);
}
html[data-theme=dark] .kategoriler-hero .kategoriler-hero__cta {
  background: rgba(151, 82, 255, 0.3);
  color: #d4b8ff;
  border-color: rgba(151, 82, 255, 0.5);
}
.kategoriler-hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-top: 24px;
}
.kategoriler-hero__main {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
}
.kategoriler-hero__left {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}
.kategoriler-hero__icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  background: #9752FF;
  border-radius: 16px;
  color: #FFFFFF;
  font-size: 2rem;
  padding: 36px 20px;
}
.kategoriler-hero__title {
  font-size: clamp(1.5rem, 3vw, 1.5rem);
  font-weight: 500;
  color: #45506E;
  line-height: 1.2;
  margin: 0;
}
.kategoriler-hero__subtitle {
  font-size: 14px;
  color: #7C808D;
  margin: 0;
  line-height: 1.5;
  margin-bottom: 10px;
  display: block;
}
.kategoriler-hero__cta {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  background: rgba(151, 82, 255, 0.15);
  color: #9752FF;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
  border: 1px solid rgba(151, 82, 255, 0.3);
}
.kategoriler-hero__cta:hover {
  background: rgba(151, 82, 255, 0.25);
  transform: translateY(-1px);
}
.kategoriler-hero__center {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.kategoriler-hero__image {
  max-width: 340px;
  width: 100%;
  height: auto;
  object-fit: contain;
  margin-bottom: -50px;
}
.kategoriler-hero__right {
  display: flex;
  justify-content: flex-end;
}
.kategoriler-hero__user-box {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: #9752FF;
  border-radius: 24px;
  max-width: 340px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  overflow: hidden;
}
.kategoriler-hero__user-box-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 50px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}
.kategoriler-hero__user-box-icon {
  font-size: 1.5rem;
  color: #FFFFFF;
}
.kategoriler-hero__user-box-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  flex: 1;
}
.kategoriler-hero__user-box-text {
  font-size: 0.95rem;
  font-weight: 500;
  color: #FFFFFF;
  margin: 0;
  line-height: 1.4;
}
.kategoriler-hero__avatars {
  width: 100%;
  margin-top: 4px;
}
.kategoriler-hero__avatars-img {
  width: 120px;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
@media (max-width: 1200px) {
  .kategoriler-hero__main {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 32px;
  }
  .kategoriler-hero__left {
    grid-column: 1;
    grid-row: 1;
  }
  .kategoriler-hero__right {
    grid-column: 2;
    grid-row: 1;
    justify-content: flex-end;
  }
  .kategoriler-hero__center {
    grid-column: 1/-1;
    grid-row: 2;
    justify-content: center;
  }
  .kategoriler-hero__image {
    max-width: 220px;
  }
}
@media (max-width: 768px) {
  .kategoriler-hero {
    padding: 70px 0 50px;
    min-height: auto;
  }
  .kategoriler-hero__main {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 32px;
    align-items: center;
  }
  .kategoriler-hero__left {
    grid-column: auto;
    grid-row: auto;
    order: 1;
    align-items: center;
    justify-content: center;
  }
  .kategoriler-hero__right {
    grid-column: auto;
    grid-row: auto;
    order: 2;
    justify-content: center;
    align-items: center;
  }
  .kategoriler-hero__center {
    grid-column: auto;
    grid-row: auto;
    order: 3;
  }
  .kategoriler-hero__image {
    max-width: 200px;
  }
  .kategoriler-hero__user-box {
    max-width: 100%;
  }
}
@media (max-width: 576px) {
  .kategoriler-hero {
    padding: 60px 0 40px;
  }
  .kategoriler-hero__icon-wrap {
    width: 56px;
    height: 56px;
    font-size: 1.5rem;
  }
  .kategoriler-hero__image {
    max-width: 180px;
  }
  .kategoriler-hero__user-box {
    padding: 16px;
  }
}

.kategoriler-cards {
  padding: 48px 0;
}

.kategoriler-cards__inner {
  width: 100%;
}

.kategoriler-cards__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.kategoriler-cards__card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 32px;
  background: #FFFFFF;
  border-radius: 16px;
  border: 1px solid #E5E7EB;
  text-decoration: none;
  color: #45506E;
  transition: all 0.2s ease;
}
.kategoriler-cards__card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
  border-color: rgba(151, 82, 255, 0.3);
}
.kategoriler-cards__card:hover .kategoriler-cards__card-btn {
  background: #8839ff;
}

.kategoriler-cards__card-icon {
  flex-shrink: 0;
  font-size: 1.75rem;
  color: #A0A0A0;
  margin-right: 16px;
}

.kategoriler-cards__card-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}

.kategoriler-cards__card-platform {
  font-size: 0.8rem;
  font-weight: 500;
  color: #7C808D;
  line-height: 1.3;
}

.kategoriler-cards__card-title {
  font-size: 1rem;
  font-weight: 600;
  color: #45506E;
  line-height: 1.4;
}

.kategoriler-cards__card-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 24px;
  background: #9752FF;
  color: #FFFFFF;
  border-radius: 500px;
  font-size: 0.9rem;
  font-weight: 400;
  flex-shrink: 0;
  transition: all 0.2s ease;
}
.kategoriler-cards__card-btn i {
  font-size: 0.75rem;
}

@media (max-width: 992px) {
  .kategoriler-cards__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .kategoriler-cards {
    padding: 32px 16px;
  }
  .kategoriler-cards__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .kategoriler-cards__card {
    flex-direction: row;
    align-items: center;
    text-align: left;
  }
  .kategoriler-cards__card-body {
    align-items: flex-start;
  }
  .kategoriler-cards__card-btn {
    justify-content: center;
  }
}
@media (max-width: 576px) {
  .kategoriler-cards__card {
    padding: 16px 24px;
  }
  .kategoriler-cards__card-title {
    font-size: 0.9rem;
  }
}
.paketler-hero {
  position: relative;
  overflow: hidden;
  padding: 90px 0 30px;
  min-height: 300px;
}
.paketler-hero__bg {
  position: absolute;
  inset: 0;
  background-image: url("../../assets/images/banner-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}
.paketler-hero__wave {
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  width: 100%;
  height: 30px;
  background-image: url("../../assets/images/banner-under-vawe.png");
  background-size: contain;
  background-position: center bottom;
  background-repeat: repeat-x;
  z-index: 3;
  pointer-events: none;
}
html[data-theme=dark] .paketler-hero__bg {
  background-image: url("../../assets/images/banner-dark-bg.png");
}
html[data-theme=dark] .paketler-hero .paketler-hero__title {
  color: #FFFFFF;
}
html[data-theme=dark] .paketler-hero .paketler-hero__subtitle {
  color: rgba(255, 255, 255, 0.8);
}
html[data-theme=dark] .paketler-hero .paketler-hero__cta {
  background: rgba(225, 48, 108, 0.3);
  color: #f19fbb;
  border-color: rgba(225, 48, 108, 0.5);
}
.paketler-hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-top: 24px;
}
.paketler-hero__main {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
}
.paketler-hero__left {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}
.paketler-hero__icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  background: #E1306C;
  border-radius: 16px;
  color: #FFFFFF;
  font-size: 2rem;
  padding: 36px 20px;
}
.paketler-hero__title {
  font-size: clamp(1.5rem, 3vw, 1.5rem);
  font-weight: 500;
  color: #45506E;
  line-height: 1.2;
  margin: 0;
}
.paketler-hero__subtitle {
  font-size: 14px;
  color: #7C808D;
  margin: 0;
  line-height: 1.5;
  margin-bottom: 10px;
  display: block;
}
.paketler-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  background: rgba(225, 48, 108, 0.15);
  color: #E1306C;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
  border: 1px solid rgba(225, 48, 108, 0.3);
}
.paketler-hero__cta i {
  font-size: 12px;
}
.paketler-hero__cta:hover {
  background: rgba(225, 48, 108, 0.25);
  transform: translateY(-1px);
}
.paketler-hero__center {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.paketler-hero__image {
  max-width: 340px;
  width: 100%;
  height: auto;
  object-fit: contain;
  margin-bottom: -50px;
}
.paketler-hero__right {
  display: flex;
  justify-content: flex-end;
}
.paketler-hero__user-box {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: #E1306C;
  border-radius: 24px;
  max-width: 340px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  overflow: hidden;
}
.paketler-hero__user-box-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 50px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}
.paketler-hero__user-box-icon {
  font-size: 1.5rem;
  color: #FFFFFF;
}
.paketler-hero__user-box-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  flex: 1;
}
.paketler-hero__user-box-text {
  font-size: 0.95rem;
  font-weight: 500;
  color: #FFFFFF;
  margin: 0;
  line-height: 1.4;
}
.paketler-hero__avatars {
  width: 100%;
  margin-top: 4px;
}
.paketler-hero__avatars-img {
  width: 120px;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
@media (max-width: 1200px) {
  .paketler-hero__main {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 32px;
  }
  .paketler-hero__left {
    grid-column: 1;
    grid-row: 1;
  }
  .paketler-hero__right {
    grid-column: 2;
    grid-row: 1;
    justify-content: flex-end;
  }
  .paketler-hero__center {
    grid-column: 1/-1;
    grid-row: 2;
    justify-content: center;
  }
  .paketler-hero__image {
    max-width: 220px;
  }
}
@media (max-width: 768px) {
  .paketler-hero {
    padding: 70px 0 50px;
    min-height: auto;
  }
  .paketler-hero__main {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 32px;
    align-items: center;
  }
  .paketler-hero__left {
    grid-column: auto;
    grid-row: auto;
    order: 1;
    align-items: center;
    justify-content: center;
  }
  .paketler-hero__right {
    grid-column: auto;
    grid-row: auto;
    order: 2;
    justify-content: center;
    align-items: center;
  }
  .paketler-hero__center {
    grid-column: auto;
    grid-row: auto;
    order: 3;
  }
  .paketler-hero__image {
    max-width: 200px;
  }
  .paketler-hero__user-box {
    max-width: 100%;
  }
}
@media (max-width: 576px) {
  .paketler-hero {
    padding: 60px 0 40px;
  }
  .paketler-hero__icon-wrap {
    width: 56px;
    height: 56px;
    font-size: 1.5rem;
  }
  .paketler-hero__image {
    max-width: 180px;
  }
  .paketler-hero__user-box {
    padding: 16px;
  }
}

.paketler-packages {
  background: #F2F3FF;
  padding: 48px 0;
  position: relative;
}
.paketler-packages__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}
.paketler-packages__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
.paketler-packages__card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: transparent;
  border-radius: 16px;
  overflow: visible;
  transition: transform 0.3s ease;
}
.paketler-packages__card:hover {
  transform: translateY(-4px);
}
.paketler-packages__card-header {
  background: #FFFFFF;
  padding: 16px 24px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: box-shadow 0.3s ease;
  margin-bottom: 4px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
.paketler-packages__card:hover .paketler-packages__card-header {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
.paketler-packages__card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #FFFFFF;
  background: #E1306C;
  flex-shrink: 0;
}
.paketler-packages__card-header-text {
  min-width: 0;
}
.paketler-packages__card-platform {
  display: block;
  font-size: 0.8rem;
  color: #7C808D;
  margin-bottom: 2px;
}
.paketler-packages__card-name {
  font-size: 1rem;
  font-weight: 500;
  color: #45506E;
  line-height: 1.3;
}
.paketler-packages__card-content {
  background: #FFFFFF;
  padding: 16px;
  border-radius: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 0.3s ease;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
.paketler-packages__card:hover .paketler-packages__card-content {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
.paketler-packages__features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.paketler-packages__features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 12px;
  background: #F6F8FC;
  border-radius: 10px;
  font-size: 14px;
  color: #45506E;
  line-height: 1.4;
}
.paketler-packages__features li:nth-child(odd) {
  background: transparent;
}
.paketler-packages__features li i {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: #FFFFFF;
  background: #E1306C;
  flex-shrink: 0;
}
.paketler-packages__price-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}
.paketler-packages__price-wallet {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(225, 48, 108, 0.12);
}
.paketler-packages__wallet-icon {
  width: 20px;
  height: 17px;
  flex-shrink: 0;
  color: #E1306C;
}
.paketler-packages__price-stack {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}
.paketler-packages__price-old {
  font-size: 0.85rem;
  color: #7C808D;
  text-decoration: line-through;
  line-height: 1.2;
}
.paketler-packages__price-current {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.2;
  color: #E1306C;
}
.paketler-packages__favorite-btn {
  margin-left: auto;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(225, 48, 108, 0.6);
  font-size: 1.1rem;
  border-radius: 50%;
  transition: all 0.2s ease;
}
.paketler-packages__favorite-btn:hover {
  color: #E1306C;
  background: rgba(225, 48, 108, 0.1);
}
.paketler-packages__favorite-btn .fa-solid {
  display: none;
}
.paketler-packages__favorite-btn.is-active .fa-regular {
  display: none;
}
.paketler-packages__favorite-btn.is-active .fa-solid {
  display: block !important;
}
.paketler-packages__buy-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  padding: 14px 20px;
  border: none;
  border-radius: 10px;
  background: #E1306C;
  color: #FFFFFF;
  font-size: 1rem;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 4px;
}
.paketler-packages__buy-btn:hover {
  background: #d41f5c;
  transform: translateY(-2px);
}
.paketler-packages__buy-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  mix-blend-mode: screen;
}
@media (max-width: 1200px) {
  .paketler-packages__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 992px) {
  .paketler-packages__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .paketler-packages {
    padding: 32px 0;
  }
  .paketler-packages__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
@media (max-width: 576px) {
  .paketler-packages {
    padding: 24px 0;
  }
  .paketler-packages__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .paketler-packages__card-content {
    padding: 16px;
  }
  .paketler-packages__features li {
    font-size: 0.85rem;
  }
  .paketler-packages__price-current {
    font-size: 1.1rem;
  }
  .paketler-packages__buy-btn {
    padding: 12px 16px;
    font-size: 0.95rem;
  }
}

.sepete-ekle-hero {
  position: relative;
  overflow: hidden;
  padding: 90px 0 40px;
  min-height: 300px;
}
.sepete-ekle-hero__bg {
  position: absolute;
  inset: 0;
  background-image: url("../../assets/images/banner-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}
.sepete-ekle-hero__wave {
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  width: 100%;
  height: 30px;
  background-image: url("../../assets/images/banner-under-vawe.png");
  background-size: contain;
  background-position: center bottom;
  background-repeat: repeat-x;
  z-index: 3;
  pointer-events: none;
}
html[data-theme=dark] .sepete-ekle-hero__bg {
  background-image: url("../../assets/images/banner-dark-bg.png");
}
html[data-theme=dark] .sepete-ekle-hero .sepete-ekle-hero__title {
  color: #FFFFFF;
}
html[data-theme=dark] .sepete-ekle-hero .sepete-ekle-hero__subtitle {
  color: rgba(255, 255, 255, 0.8);
}
html[data-theme=dark] .sepete-ekle-hero .sepete-ekle-hero__progress-track {
  background: rgba(255, 255, 255, 0.2);
}
html[data-theme=dark] .sepete-ekle-hero .sepete-ekle-hero__progress-step .sepete-ekle-hero__progress-label {
  color: rgba(255, 255, 255, 0.9);
}
html[data-theme=dark] .sepete-ekle-hero .sepete-ekle-hero__progress-step .sepete-ekle-hero__progress-value {
  color: rgba(255, 255, 255, 0.7);
}
html[data-theme=dark] .sepete-ekle-hero .sepete-ekle-hero__progress-step--active .sepete-ekle-hero__progress-label {
  color: #97c4f8;
}
html[data-theme=dark] .sepete-ekle-hero .sepete-ekle-hero__progress-step--active .sepete-ekle-hero__progress-value {
  color: rgba(255, 255, 255, 0.8);
}
.sepete-ekle-hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-top: 24px;
}
.sepete-ekle-hero__main {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 48px;
}
.sepete-ekle-hero__left {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
}
.sepete-ekle-hero__icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
}
.sepete-ekle-hero__icon-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.sepete-ekle-hero__text {
  flex: 1;
  min-width: 0;
}
.sepete-ekle-hero__title {
  font-size: clamp(1.5rem, 3vw, 1.5rem);
  font-weight: 600;
  color: #45506E;
  line-height: 1.2;
  margin: 0 0 4px 0;
}
.sepete-ekle-hero__subtitle {
  font-size: 14px;
  color: #7C808D;
  margin: 0 0 24px 0;
  line-height: 1.5;
  display: block;
}
.sepete-ekle-hero__progress {
  display: block;
}
.sepete-ekle-hero__progress-track {
  position: relative;
  width: 100%;
  height: 10px;
  background: rgba(124, 128, 141, 0.25);
  border-radius: 2px;
  margin-bottom: 16px;
}
.sepete-ekle-hero__progress-fill {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 10px;
  width: 5%;
  background: #1074E6;
  border-radius: 4px 0 0 4px;
}
.sepete-ekle-hero__progress-knob {
  position: absolute;
  left: 5%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #1074E6;
  box-shadow: 0 0 0 4px rgba(16, 116, 230, 0.25);
}
.sepete-ekle-hero__progress-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  flex-wrap: wrap;
}
.sepete-ekle-hero__progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  color: #7C808D;
  padding: 0 16px;
  flex: 1;
  min-width: 0;
}
.sepete-ekle-hero__progress-step:first-child {
  padding-left: 0;
  align-items: flex-start;
}
.sepete-ekle-hero__progress-step:last-child {
  padding-right: 0;
  align-items: flex-end;
}
.sepete-ekle-hero__progress-step:not(:first-child):not(:last-child) {
  align-items: center;
}
.sepete-ekle-hero__progress-step--active .sepete-ekle-hero__progress-label {
  color: #1074E6;
  font-weight: 700;
}
.sepete-ekle-hero__progress-step--active .sepete-ekle-hero__progress-value {
  color: #7C808D;
  font-weight: 400;
}
.sepete-ekle-hero__progress-label {
  font-size: 13px;
  font-weight: 600;
  color: #45506E;
  line-height: 1.3;
  white-space: nowrap;
}
.sepete-ekle-hero__progress-value {
  font-size: 12px;
  color: #7C808D;
  line-height: 1.2;
}
.sepete-ekle-hero__right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.sepete-ekle-hero__image {
  max-width: 320px;
  width: 100%;
  height: auto;
  object-fit: contain;
}
@media (max-width: 1200px) {
  .sepete-ekle-hero__main {
    grid-template-columns: 1fr;
  }
  .sepete-ekle-hero__right {
    justify-content: center;
  }
  .sepete-ekle-hero__image {
    max-width: 260px;
  }
}
@media (max-width: 768px) {
  .sepete-ekle-hero {
    padding: 70px 0 40px;
    min-height: auto;
  }
  .sepete-ekle-hero__left {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .sepete-ekle-hero__progress-steps {
    justify-content: center;
  }
  .sepete-ekle-hero__image {
    max-width: 200px;
  }
}
@media (max-width: 576px) {
  .sepete-ekle-hero {
    padding: 60px 0 30px;
  }
  .sepete-ekle-hero__icon-wrap {
    width: 60px;
    height: 60px;
  }
  .sepete-ekle-hero__icon-img {
    width: 100%;
    height: 100%;
  }
  .sepete-ekle-hero__progress-steps {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    display: none;
  }
  .sepete-ekle-hero__progress-step {
    align-items: center !important;
  }
  .sepete-ekle-hero__image {
    max-width: 180px;
  }
}

.sepete-ekle-content {
  margin-top: -50px;
  position: relative;
  z-index: 3;
  margin-bottom: 50px;
}

.sepete-ekle-content__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sepete-ekle-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 16px;
  background: #202230;
  border-radius: 16px;
  color: #FFFFFF;
}

.sepete-ekle-header__icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
}

.sepete-ekle-header__icon-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.sepete-ekle-header__text {
  flex: 1;
}

.sepete-ekle-header__title {
  font-size: 1.25rem;
  font-weight: 500;
  color: #FFFFFF;
  margin: 0 0 4px 0;
  line-height: 1.3;
}

.sepete-ekle-header__desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 300;
  margin: 0;
  line-height: 1.5;
}

.sepete-ekle-form {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 32px;
}
@media (max-width: 768px) {
  .sepete-ekle-form {
    padding: 16px;
  }
}

.sepete-ekle-form__title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #45506E;
  margin: 0 0 4px 0;
  line-height: 1.3;
}

.sepete-ekle-form__hint {
  position: relative;
  font-size: 13px;
  color: #7C808D;
  margin: 0 0 24px 0;
  padding-bottom: 16px;
}
.sepete-ekle-form__hint::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background: #1074E6;
  border-radius: 2px;
}

.sepete-ekle-form__row {
  display: flex;
  align-items: stretch;
  gap: 0;
  border: 1px solid #E5E7EB;
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.2s ease;
}
.sepete-ekle-form__row:focus-within {
  border-color: #1074E6;
  outline: none;
}

.sepete-ekle-form__input-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0;
  padding: 12px 12px 12px 16px;
  border: none;
  border-radius: 0;
  background: #FFFFFF;
}

.sepete-ekle-form__input-icon {
  font-size: 1rem;
  color: #7C808D;
  opacity: 0.7;
  flex-shrink: 0;
}

.sepete-ekle-form__input-sep {
  width: 1px;
  height: 20px;
  background: #E5E7EB;
  margin: 0 12px;
  flex-shrink: 0;
}

.sepete-ekle-form__input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  color: #45506E;
  min-width: 0;
}
.sepete-ekle-form__input::placeholder {
  color: #7C808D;
  opacity: 0.8;
}
.sepete-ekle-form__input:focus {
  outline: none;
}

.sepete-ekle-form__btn {
  flex-shrink: 0;
  padding: 8px 20px;
  background: rgba(225, 48, 108, 0.12);
  color: #1074E6;
  border: none;
  border-radius: 0;
  font-size: 14px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  cursor: pointer;
  transition: background 0.2s ease;
}
.sepete-ekle-form__btn:hover {
  background: rgba(225, 48, 108, 0.25);
}

.sepete-ekle-form-footer {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #FFFFFF;
  border-radius: 16px;
  padding: 18px 16px;
}

.sepete-ekle-form-footer__icon-wrap {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(151, 82, 255, 0.15);
  border-radius: 10px;
  flex-shrink: 0;
}

.sepete-ekle-form-footer__icon {
  font-size: 1.5rem;
  color: #9752FF;
}

.sepete-ekle-form-footer__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sepete-ekle-form-footer__platform {
  font-size: 1rem;
  font-weight: 600;
  color: #45506E;
  line-height: 1.3;
}

.sepete-ekle-form-footer__quantity {
  font-size: 13px;
  color: #7C808D;
  line-height: 1.3;
}

.sepete-ekle-action {
  display: flex;
  justify-content: flex-end;
}

.sepete-ekle-action__btn {
  display: flex;
  align-items: stretch;
  border: none;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  transition: all 0.3s ease;
  background: #1074E6;
}
.sepete-ekle-action__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(16, 116, 230, 0.4);
}
.sepete-ekle-action__btn:hover .sepete-ekle-action__action {
  background: #0e66c9;
}

.sepete-ekle-action__action {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: #1074E6;
  color: #FFFFFF !important;
  font-size: 1rem;
  font-weight: 600;
}

.sepete-ekle-action__icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
  mix-blend-mode: screen;
}

.sepete-ekle-action__price {
  display: flex;
  align-items: center;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF !important;
  font-size: 1.1rem;
  font-weight: 700;
}

@media (max-width: 576px) {
  .sepete-ekle-form__row {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    border: none;
    overflow: visible;
  }
  .sepete-ekle-form__input-wrap {
    border: 1px solid #E5E7EB;
    border-radius: 10px;
  }
  .sepete-ekle-form__input-wrap:focus-within {
    border-color: #1074E6;
  }
  .sepete-ekle-form__btn {
    width: 100%;
    border-radius: 10px;
  }
}
.sepetim-content {
  position: relative;
  margin-top: -50px;
  margin-bottom: 50px;
  z-index: 3;
}

.sepetim-content__bg {
  position: absolute;
  inset: 0;
  background-image: url("../../assets/images/Sepetim-%20light.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  pointer-events: none;
}

.sepetim-content__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
  position: relative;
  z-index: 1;
}

.sepetim-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
  align-items: start;
}
@media (max-width: 992px) {
  .sepetim-layout {
    grid-template-columns: 1fr;
  }
}

.sepetim-cart {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sepetim-cart__header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 16px;
  background: #202230;
  border-radius: 16px;
  color: #FFFFFF;
}

.sepetim-cart__header-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
}

.sepetim-cart__header-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.sepetim-cart__header-text {
  flex: 1;
}

.sepetim-cart__header-title {
  font-size: 1.25rem;
  font-weight: 500;
  color: #FFFFFF;
  margin: 0 0 4px 0;
  line-height: 1.3;
}

.sepetim-cart__header-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 300;
  margin: 0;
  line-height: 1.5;
}

.sepetim-cart__items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sepetim-cart__item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 25px 16px;
  background: #FFFFFF;
  border-radius: 16px;
}

.sepetim-cart__item-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(225, 48, 108, 0.12);
  border-radius: 10px;
  flex-shrink: 0;
  font-size: 1.5rem;
  color: #E1306C;
}

.sepetim-cart__item-body {
  flex: 1;
  min-width: 0;
}

.sepetim-cart__item-title {
  font-size: 1rem;
  font-weight: 600;
  color: #45506E;
  margin: 0 0 4px 0;
  line-height: 1.3;
}

.sepetim-cart__item-input {
  width: 100%;
  padding: 8px 0;
  border: none;
  background: transparent;
  font-size: 13px;
  color: #7C808D;
  font-family: "Poppins", sans-serif;
}
.sepetim-cart__item-input:focus {
  outline: none;
}

.sepetim-cart__item-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.sepetim-cart__item-price {
  font-size: 1rem;
  font-weight: 600;
  color: #45506E;
}

.sepetim-cart__item-remove {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  color: #E1306C;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.2s ease;
}
.sepetim-cart__item-remove:hover {
  background: rgba(225, 48, 108, 0.1);
}

.sepetim-summary {
  position: sticky;
  top: 100px;
}

.sepetim-summary__box {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 32px;
}
@media (max-width: 768px) {
  .sepetim-summary__box {
    padding: 16px;
  }
}

.sepetim-summary__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.sepetim-summary__header-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
}

.sepetim-summary__header-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.sepetim-summary__header-text {
  flex: 1;
}

.sepetim-summary__header-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #45506E;
  margin: 0 0 4px 0;
  line-height: 1.3;
}

.sepetim-summary__header-desc {
  font-size: 14px;
  color: #7C808D;
  margin: 0;
  line-height: 1.5;
}

.sepetim-summary__coupon {
  margin-bottom: 32px;
}

.sepetim-summary__coupon-field {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 8px;
  border: 1px solid #E5E7EB;
  border-radius: 10px;
  transition: border-color 0.2s ease;
}
.sepetim-summary__coupon-field:focus-within {
  border-color: #1074E6;
}

.sepetim-summary__coupon-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px 4px 6px;
  color: #7C808D;
  opacity: 0.8;
  font-size: 1rem;
  flex-shrink: 0;
}

.sepetim-summary__coupon-input {
  flex: 1;
  padding: 8px 12px;
  border: none;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  color: #45506E;
  min-width: 0;
}
.sepetim-summary__coupon-input::placeholder {
  color: #7C808D;
}
.sepetim-summary__coupon-input:focus {
  outline: none;
}

.sepetim-summary__coupon-btn {
  padding: 10px 18px;
  margin-left: 12px;
  padding-left: 18px;
  border-left: 1px solid #E5E7EB;
  background: #1074E6;
  color: #FFFFFF;
  border-top: none;
  border-right: none;
  border-bottom: none;
  font-size: 14px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  cursor: pointer;
  transition: background 0.2s ease;
  border-radius: 6px;
}
.sepetim-summary__coupon-btn:hover {
  background: #0e66c9;
}

.sepetim-summary__prices {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.sepetim-summary__price-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  padding-bottom: 16px;
  border-bottom: 1px solid #E5E7EB;
}
.sepetim-summary__price-row--total {
  font-weight: 600;
}

.sepetim-summary__price-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  flex-shrink: 0;
}

.sepetim-summary__price-label {
  flex: 1;
  color: #7C808D;
}

.sepetim-summary__price-value {
  font-weight: 500;
  color: #45506E;
}

.sepetim-summary__price-value--total {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1074E6;
}

.sepetim-summary__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 24px;
  background: #1074E6;
  color: #FFFFFF !important;
  font-size: 1rem;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  text-decoration: none;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.sepetim-summary__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(16, 116, 230, 0.4);
  background: #0e66c9;
  color: #FFFFFF !important;
}

.sepetim-summary__btn-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
  mix-blend-mode: screen;
}

.sepete-ekle-hero__progress-fill--step2 {
  width: 37%;
}

.sepete-ekle-hero__progress-knob--step2 {
  left: 37%;
}

.sepete-ekle-hero__progress-step--completed .sepete-ekle-hero__progress-label {
  color: #1074E6;
}
.sepete-ekle-hero__progress-step--completed .sepete-ekle-hero__progress-value {
  color: #7C808D;
}

@media (max-width: 576px) {
  .sepetim-cart__item {
    flex-direction: column;
    align-items: flex-start;
  }
  .sepetim-cart__item-meta {
    width: 100%;
    justify-content: space-between;
  }
}
.sepete-ekle-hero__progress-fill--step3 {
  width: 62%;
}

.sepete-ekle-hero__progress-knob--step3 {
  left: 62%;
}

.odeme-content {
  position: relative;
  margin-top: -50px;
  margin-bottom: 50px;
  z-index: 3;
}

.odeme-content__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
  position: relative;
  z-index: 1;
}

.odeme-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
  align-items: start;
}
@media (max-width: 992px) {
  .odeme-layout {
    grid-template-columns: 1fr;
  }
}

.odeme-form {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.odeme-form__banner {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 16px;
  background: #202230;
  border-radius: 16px;
  color: #FFFFFF;
}

.odeme-form__banner-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
}

.odeme-form__banner-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.odeme-form__banner-text {
  flex: 1;
}

.odeme-form__banner-title {
  font-size: 1.25rem;
  font-weight: 500;
  color: #FFFFFF;
  margin: 0 0 4px 0;
  line-height: 1.3;
}

.odeme-form__banner-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 300;
  margin: 0;
  line-height: 1.5;
}

.odeme-form__section {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 30px;
}

.odeme-form__section-header {
  margin-bottom: 24px;
}

.odeme-form__section-title {
  font-size: 16px;
  font-weight: 500;
  color: #45506E;
  margin: 0 0 4px 0;
  line-height: 1.3;
  display: block;
}

.odeme-form__section-desc {
  font-size: 14px;
  color: #7C808D;
  margin: 0;
  line-height: 1.5;
}

.odeme-form__input-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #45506E;
  margin-bottom: 8px;
  line-height: 1.3;
}

.odeme-form__input {
  width: 100%;
  min-height: 55px;
  padding: 12px 16px 12px 44px;
  border-radius: 12px;
  border: 1px solid #ECECF4;
  background: #FFF;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  color: #45506E;
  transition: border-color 0.2s ease;
  box-sizing: border-box;
}
.odeme-form__input::placeholder {
  color: #7C808D;
}
.odeme-form__input:focus {
  outline: none;
  border-color: #1074E6;
}

.odeme-form__fields {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.odeme-form__row {
  display: grid;
  gap: 16px;
}
.odeme-form__row--2col {
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 576px) {
  .odeme-form__row--2col {
    grid-template-columns: 1fr;
  }
}
.odeme-form__row--1col {
  grid-template-columns: 1fr;
}

.odeme-form__field {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.odeme-form__field--phone .odeme-form__input {
  padding-left: 72px;
}

.odeme-form__input-wrap {
  position: relative;
  display: block;
}

.odeme-form__field-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  color: #7C808D;
  font-size: 14px;
  pointer-events: none;
  z-index: 1;
}
.odeme-form__field-icon--flag {
  left: 12px;
}

.odeme-form__flag {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.odeme-form__phone-prefix {
  position: absolute;
  left: 42px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  color: #7C808D;
  z-index: 1;
  pointer-events: none;
}

.odeme-form__payment-block {
  padding-top: 32px;
}

.odeme-form__payment-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 768px) {
  .odeme-form__payment-options {
    grid-template-columns: 1fr;
  }
}

.odeme-form__payment-option {
  cursor: pointer;
  margin: 0;
}

.odeme-form__payment-radio {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.odeme-form__payment-radio:checked + .odeme-form__payment-card {
  border-color: #1074E6;
  background: rgba(16, 116, 230, 0.04);
  box-shadow: 0 0 0 2px rgba(16, 116, 230, 0.2);
}

.odeme-form__payment-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  border-radius: 12px;
  border: 1px solid #ECECF4;
  background: #FFF;
  min-height: 70px;
  position: relative;
  transition: all 0.2s ease;
}
.odeme-form__payment-card:hover {
  border-color: rgba(16, 116, 230, 0.5);
}

.odeme-form__payment-icon {
  width: 36px;
  height: 36px;
  object-fit: contain;
  flex-shrink: 0;
}

.odeme-form__payment-card-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  flex: 1;
}

.odeme-form__payment-bonus {
  font-size: 12px;
  font-weight: 600;
  color: #1074E6;
  line-height: 1.2;
}

.odeme-form__payment-label {
  font-size: 14px;
  font-weight: 400;
  color: #45506E;
  line-height: 1.3;
}

.odeme-form__payment-check {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1074E6;
  color: #FFFFFF;
  border-radius: 50%;
  font-size: 12px;
  flex-shrink: 0;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.odeme-form__payment-radio:checked ~ .odeme-form__payment-card .odeme-form__payment-check {
  opacity: 1;
}

.odeme-summary {
  position: sticky;
  top: 100px;
}

.odeme-summary__box {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}
@media (max-width: 768px) {
  .odeme-summary__box {
    padding: 16px;
  }
}

.odeme-summary__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.odeme-summary__header-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
}

.odeme-summary__header-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.odeme-summary__header-text {
  flex: 1;
}

.odeme-summary__header-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #45506E;
  margin: 0 0 4px 0;
  line-height: 1.3;
}

.odeme-summary__header-desc {
  font-size: 14px;
  color: #7C808D;
  margin: 0;
  line-height: 1.5;
}

.odeme-summary__coupon {
  margin-bottom: 32px;
}

.odeme-summary__coupon-field {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 8px;
  border: 1px solid #E5E7EB;
  border-radius: 10px;
  transition: border-color 0.2s ease;
}
.odeme-summary__coupon-field:focus-within {
  border-color: #1074E6;
}

.odeme-summary__coupon-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px 4px 6px;
  color: #7C808D;
  opacity: 0.8;
  font-size: 1rem;
  flex-shrink: 0;
}

.odeme-summary__coupon-input {
  flex: 1;
  padding: 8px 12px;
  border: none;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  color: #45506E;
  min-width: 0;
}
.odeme-summary__coupon-input::placeholder {
  color: #7C808D;
}
.odeme-summary__coupon-input:focus {
  outline: none;
}

.odeme-summary__coupon-btn {
  padding: 10px 18px;
  margin-left: 12px;
  padding-left: 18px;
  border-left: 1px solid #E5E7EB;
  background: #1074E6;
  color: #FFFFFF;
  border-top: none;
  border-right: none;
  border-bottom: none;
  font-size: 14px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  cursor: pointer;
  transition: background 0.2s ease;
  border-radius: 6px;
}
.odeme-summary__coupon-btn:hover {
  background: #0e66c9;
}

.odeme-summary__prices {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.odeme-summary__price-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  padding-bottom: 16px;
  border-bottom: 1px solid #E5E7EB;
}
.odeme-summary__price-row--total {
  font-weight: 600;
  border-bottom: none;
}

.odeme-summary__price-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  flex-shrink: 0;
}

.odeme-summary__price-label {
  flex: 1;
  color: #7C808D;
}

.odeme-summary__price-value {
  font-weight: 500;
  color: #45506E;
}

.odeme-summary__price-value--total {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1074E6;
}

.odeme-summary__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 24px;
  background: #1074E6;
  color: #FFFFFF !important;
  font-size: 1rem;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  text-decoration: none;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.odeme-summary__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(16, 116, 230, 0.4);
  background: #0e66c9;
  color: #FFFFFF !important;
}

.odeme-summary__btn-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
  mix-blend-mode: screen;
}

.sepete-ekle-hero--sorgula-sonuc .sepete-ekle-hero__right {
  display: none;
}
.sepete-ekle-hero--sorgula-sonuc .sepete-ekle-hero__main {
  grid-template-columns: 1fr;
}
.sepete-ekle-hero--sorgula-sonuc .sepete-ekle-hero__subtitle {
  display: none;
}

.sepete-ekle-hero__icon-wrap--blue {
  background: transparent !important;
  width: 56px;
  height: 56px;
}

.sepete-ekle-hero__title--sorgula {
  font-size: clamp(1.1rem, 2.5vw, 1.25rem) !important;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 24px !important;
}

.sorgula-progress {
  display: block;
}

.sorgula-progress__track {
  position: relative;
  width: 100%;
  height: 10px;
  background: rgba(69, 80, 110, 0.2);
  border-radius: 2px;
  margin-bottom: 20px;
}

.sorgula-progress__fill {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 10px;
  width: 50%;
  background: #1074E6;
  border-radius: 4px 0 0 4px;
}

.sorgula-progress__circle {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #B0B8C4;
  z-index: 2;
}
.sorgula-progress__circle--bekliyor {
  left: 0;
}
.sorgula-progress__circle--islemde {
  left: 50%;
}
.sorgula-progress__circle--tamamlandi {
  left: 100%;
}
.sorgula-progress__circle--active {
  background: #1074E6;
  box-shadow: 0 0 0 4px rgba(16, 116, 230, 0.25);
}

.sorgula-progress__steps {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.sorgula-progress__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex: 1;
  text-align: center;
}
.sorgula-progress__step:first-child {
  align-items: flex-start;
  text-align: left;
}
.sorgula-progress__step:last-child {
  align-items: flex-end;
  text-align: right;
}
.sorgula-progress__step:not(:first-child):not(:last-child) {
  align-items: center;
}

.sorgula-progress__label {
  font-size: 13px;
  font-weight: 600;
  color: #45506E;
  line-height: 1.3;
}

.sorgula-progress__value {
  font-size: 12px;
  color: #7C808D;
  line-height: 1.2;
}

.sorgula-progress__step--active .sorgula-progress__label {
  color: #1074E6;
  font-weight: 700;
}
.sorgula-progress__step--active .sorgula-progress__value {
  color: #45506E;
}

html[data-theme=dark] .sepete-ekle-hero--sorgula-sonuc .sepete-ekle-hero__title--sorgula {
  color: #FFFFFF;
}
html[data-theme=dark] .sorgula-progress__track {
  background: rgba(255, 255, 255, 0.2);
}
html[data-theme=dark] .sorgula-progress__circle:not(.sorgula-progress__circle--active) {
  background: rgba(255, 255, 255, 0.4);
}
html[data-theme=dark] .sorgula-progress__label {
  color: rgba(255, 255, 255, 0.9);
}
html[data-theme=dark] .sorgula-progress__value {
  color: rgba(255, 255, 255, 0.7);
}
html[data-theme=dark] .sorgula-progress__step--active .sorgula-progress__label {
  color: #97c4f8;
}
html[data-theme=dark] .sorgula-progress__step--active .sorgula-progress__value {
  color: rgba(255, 255, 255, 0.9);
}

.sorgula-content {
  position: relative;
  margin-top: -40px;
  margin-bottom: 50px;
  z-index: 3;
}
@media (max-width: 768px) {
  .sorgula-content {
    margin-top: -10px;
  }
}

.sorgula-content__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
  position: relative;
  z-index: 1;
}

.sorgula-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
  align-items: start;
}
@media (max-width: 992px) {
  .sorgula-layout {
    grid-template-columns: 1fr;
  }
}

.sorgula-products {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sorgula-products__header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 16px;
  background: #202230;
  border-radius: 16px;
  color: #FFFFFF;
}

.sorgula-products__header-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
}

.sorgula-products__header-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.sorgula-products__header-text {
  flex: 1;
}

.sorgula-products__header-title {
  font-size: 1.25rem;
  font-weight: 500;
  color: #FFFFFF;
  margin: 0 0 4px 0;
  line-height: 1.3;
}

.sorgula-products__header-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 300;
  margin: 0;
  line-height: 1.5;
}

.sorgula-products__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sorgula-product-card {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.sorgula-product-card__main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.sorgula-product-card__left {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  min-width: 0;
}

.sorgula-product-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(225, 48, 108, 0.12);
  border-radius: 10px;
  flex-shrink: 0;
  font-size: 1.5rem;
  color: #E1306C;
}

.sorgula-product-card__info {
  flex: 1;
  min-width: 0;
}

.sorgula-product-card__title {
  font-size: 1rem;
  font-weight: 600;
  color: #45506E;
  margin: 0 0 4px 0;
  line-height: 1.3;
}

.sorgula-product-card__username {
  font-size: 14px;
  color: #7C808D;
  display: block;
}

.sorgula-product-card__price-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex-shrink: 0;
}

.sorgula-product-card__price-label {
  font-size: 12px;
  color: #7C808D;
  margin-bottom: 2px;
}

.sorgula-product-card__price {
  font-size: 1rem;
  font-weight: 600;
  color: #45506E;
}

.sorgula-product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid #E5E7EB;
}

.sorgula-product-card__progress-info {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 13px;
  color: #7C808D;
}

.sorgula-product-card__progress-item {
  white-space: nowrap;
}

.sorgula-product-card__btn {
  padding: 10px 20px;
  background: #1074E6;
  color: #FFFFFF;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  cursor: pointer;
  transition: background 0.2s ease;
}
.sorgula-product-card__btn:hover {
  background: #0e66c9;
}

.sorgula-customer {
  position: sticky;
  top: 100px;
}

.sorgula-customer__box {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.sorgula-customer__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.sorgula-customer__header-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 11px;
  height: 11px;
  flex-shrink: 0;
  border-radius: 12px;
  background: rgba(16, 116, 230, 0.12);
}

.sorgula-customer__header-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.sorgula-customer__header-text {
  flex: 1;
}

.sorgula-customer__header-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #45506E;
  margin: 0 0 4px 0;
  line-height: 1.3;
}

.sorgula-customer__header-desc {
  font-size: 14px;
  color: #7C808D;
  margin: 0;
  line-height: 1.5;
}

.sorgula-customer__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sorgula-customer__item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 16px;
  border-bottom: 1px solid #E5E7EB;
}
.sorgula-customer__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.sorgula-customer__label {
  font-size: 13px;
  font-weight: 600;
  color: #45506E;
  line-height: 1.3;
}

.sorgula-customer__value {
  font-size: 14px;
  color: #7C808D;
  line-height: 1.3;
}

@media (max-width: 576px) {
  .sorgula-product-card__main {
    flex-direction: column;
  }
  .sorgula-product-card__price-wrap {
    align-items: flex-start;
  }
  .sorgula-product-card__footer {
    flex-direction: column;
    align-items: stretch;
  }
  .sorgula-product-card__progress-info {
    flex-wrap: wrap;
  }
}
.giris-hero {
  position: relative;
  overflow: hidden;
  min-height: 80px;
  max-height: 120px;
  height: 120px;
}
.giris-hero__bg {
  position: absolute;
  inset: 0;
  background-image: url("../../assets/images/banner-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}
.giris-hero__wave {
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  width: 100%;
  height: 30px;
  background-image: url("../../assets/images/banner-under-vawe.png");
  background-size: contain;
  background-position: center bottom;
  background-repeat: repeat-x;
  z-index: 3;
  pointer-events: none;
}
html[data-theme=dark] .giris-hero__bg {
  background-image: url("../../assets/images/banner-dark-bg.png");
}

.giris-form-section {
  padding: 40px 16px 60px;
  margin-top: -5px;
}

.giris-form__container {
  position: relative;
  z-index: 2;
}

.giris-form__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .giris-form__cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.giris-form__card {
  background: #FFFFFF;
  border-radius: 24px;
  padding: 40px 40px;
  min-height: 480px;
}
@media (max-width: 768px) {
  .giris-form__card {
    padding: 36px 24px;
    min-height: auto;
  }
}
.giris-form__card--form {
  display: flex;
  flex-direction: column;
}
.giris-form__card--image {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px;
}

.giris-form__left {
  flex: 1;
}

.giris-form__title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #45506E;
  margin: 0 0 8px;
  text-align: center;
}

.giris-form__subtitle {
  font-size: 0.9375rem;
  color: #7C808D;
  margin: 0 0 32px;
  text-align: center;
  line-height: 1.5;
  font-weight: 300;
}

.giris-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.giris-form__field {
  position: relative;
  display: flex;
  align-items: center;
  background: #fff;
}

.giris-form__field-icon {
  position: absolute;
  left: 16px;
  color: #7C808D;
  font-size: 1rem;
  pointer-events: none;
  z-index: 1;
}

.giris-form__input {
  width: 100%;
  padding: 14px 16px 14px 48px;
  border-radius: 12px;
  border: 1px solid #ECECF4;
  font-family: "Poppins", sans-serif;
  font-size: 0.9375rem;
  color: #45506E;
  background: #FFFFFF;
  transition: border-color 0.2s ease;
}
.giris-form__input::placeholder {
  color: #A0A4B0;
}
.giris-form__input:focus {
  outline: none;
  border-color: #1074E6;
}

.giris-form__field--password .giris-form__input {
  padding-right: 48px;
}

.giris-form__field--phone {
  position: relative;
}
.giris-form__field--phone .giris-form__phone-prefix {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 1;
  pointer-events: none;
}
.giris-form__field--phone .giris-form__phone-flag {
  width: 24px;
  height: 24px;
  object-fit: contain;
  border-radius: 50%;
}
.giris-form__field--phone .giris-form__phone-code {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #45506E;
}
.giris-form__field--phone .giris-form__input {
  padding-left: 88px;
}

.giris-form__toggle-password {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #7C808D;
  cursor: pointer;
  padding: 4px;
  font-size: 1rem;
}
.giris-form__toggle-password:hover {
  color: #1074E6;
}

.giris-form__options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.giris-form__remember {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: #7C808D;
  cursor: pointer;
  user-select: none;
}

.giris-form__checkbox {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.giris-form__checkbox-custom {
  display: inline-flex;
  width: 20px;
  height: 20px;
  border: 2px solid #ECECF4;
  border-radius: 6px;
  background: #FFFFFF;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.giris-form__checkbox:checked + .giris-form__checkbox-custom {
  background: #1074E6;
  border-color: #1074E6;
}
.giris-form__checkbox:checked + .giris-form__checkbox-custom::after {
  content: "";
  display: block;
  width: 6px;
  height: 10px;
  margin: 2px 6px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.giris-form__forgot {
  font-size: 0.875rem;
  color: #1074E6;
  text-decoration: none;
}
.giris-form__forgot:hover {
  text-decoration: underline;
}

.giris-form__submit {
  width: 100%;
  padding: 14px 24px;
  background: #1074E6;
  color: #FFFFFF;
  border: none;
  border-radius: 12px;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}
.giris-form__submit:hover {
  background: #0e66c9;
}

.giris-form__register {
  margin: 24px 0 0;
  font-size: 0.9375rem;
  color: #7C808D;
  text-align: center;
}
.giris-form__register a {
  color: #1074E6;
  font-weight: 500;
  text-decoration: none;
}
.giris-form__register a:hover {
  text-decoration: underline;
}

.giris-form__right {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 320px;
}
@media (max-width: 768px) {
  .giris-form__right {
    min-height: 240px;
  }
}

.giris-form__image-wrap {
  position: relative;
  width: 100%;
}

.giris-form__image {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.iletisim-hero .blog-hero__icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  background: #1074E6;
  border-radius: 16px;
  color: #FFFFFF;
  font-size: 2rem;
  padding: 36px 20px;
}
.iletisim-hero .blog-hero__icon-wrap .blog-hero__icon-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.iletisim-form__header-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
  display: block;
  margin-bottom: 8px;
}

.iletisim-content {
  margin-top: -40px;
  padding-bottom: 48px;
  position: relative;
  z-index: 3;
}
@media (max-width: 768px) {
  .iletisim-content {
    margin-top: -60px;
  }
}

.iletisim-content__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 16px;
}

.iletisim-content__grid {
  display: grid;
  grid-template-columns: 0.5fr 1.5fr;
  gap: 24px;
  align-items: start;
}
@media (max-width: 768px) {
  .iletisim-content__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.iletisim-info {
  background: #FFFFFF;
  border-radius: 24px;
  padding: 20px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}
@media (max-width: 768px) {
  .iletisim-info {
    padding: 28px 24px;
  }
}

.iletisim-info__item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid #ECECF4;
}
.iletisim-info__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.iletisim-info__item:first-child {
  padding-top: 0;
}

.iletisim-info__icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 1.125rem;
}
.iletisim-info__icon--phone {
  background: #1074E6;
}
.iletisim-info__icon--whatsapp {
  background: #21CA84;
}
.iletisim-info__icon--email {
  background: #8C57F8;
}
.iletisim-info__icon--address {
  background: #FFA930;
}

.iletisim-info__text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.iletisim-info__label {
  font-size: 16px;
  font-weight: 600;
  color: #45506E;
}

.iletisim-info__value {
  font-size: 15px;
  color: #7C808D !important;
  line-height: 1.5;
  text-decoration: none;
}

a.iletisim-info__value {
  color: #1074E6;
  transition: color 0.2s ease;
}
a.iletisim-info__value:hover {
  color: #0d5cb6;
}

.iletisim-form-card {
  background: #FFFFFF;
  border-radius: 24px;
  padding: 20px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}
@media (max-width: 768px) {
  .iletisim-form-card {
    padding: 32px 24px;
  }
}

.iletisim-form__header {
  margin-bottom: 28px;
}

.iletisim-form__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #45506E;
  margin: 0 0 8px;
}

.iletisim-form__subtitle {
  font-size: 0.9375rem;
  color: #7C808D;
  margin: 0;
  line-height: 1.5;
}

.iletisim-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.iletisim-form__field--textarea {
  margin: 0;
}

.iletisim-form__textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid #ECECF4;
  font-family: "Poppins", sans-serif;
  font-size: 0.9375rem;
  color: #45506E;
  background: #FFFFFF;
  transition: border-color 0.2s ease;
  resize: vertical;
  min-height: 120px;
}
.iletisim-form__textarea::placeholder {
  color: #A0A4B0;
}
.iletisim-form__textarea:focus {
  outline: none;
  border-color: #1074E6;
}

.iletisim-form__submit {
  width: 100%;
  padding: 14px 24px;
  background: #1074E6;
  color: #FFFFFF;
  border: none;
  border-radius: 12px;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}
.iletisim-form__submit:hover {
  background: #0e66c9;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: #F2F3FF;
  font-family: "Poppins", sans-serif;
  color: #45506E;
  line-height: 1.5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-top: 80px;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}

main {
  margin-top: -80px;
}

a {
  text-decoration: none;
}/*# sourceMappingURL=main.css.map */