/* Main hero section */
.main-hero { 
  position: relative; 
  padding: 96px 24px 48px; 
  color: #ffffff; 
  overflow: hidden;
  min-height: 80vh;
}
.appstore{
  background: url('/assets/images/btns/apps.png');
    background-size: contain;
  background-repeat: no-repeat;
}
.googleplay{
  background: url('/assets/images/btns/gp.png');
  background-size: contain;
  background-repeat: no-repeat;
}

/* Landing page only: make header transparent and overlay hero */
body.landing .header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  box-shadow: none;
  z-index: 3;
}

.hero-bg { 
  position: absolute; 
  inset: 0; 
  background-position: center; 
  background-size: cover; 
  background-repeat: no-repeat; 
  opacity: 0; 
  transition: opacity .5s ease, transform 1.5s ease; 
  transform: translateY(0);
  z-index: 0;
}
.bg-bireysel { background-image: url('../images/bg/bireysel-bg.png'); }
.bg-kurumsal { background-image: url('../images/bg/kurumsal-bg.png'); }

.main-hero__inner { 
  max-width: 1200px; 
  margin: 0 auto; 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 48px; 
  align-items: center; 
  position: relative;
  z-index: 1;
  margin-bottom: -87px;
}

.main-hero__left { 
  display: flex; 
  flex-direction: column; 
  margin-top: -3em;
}

.badge-group { position: relative; height: 32px;margin-bottom: 10px; }
.badge { 
  display: inline-flex; 
  align-items: center; 
  justify-content: center; 
  width: auto; 
    padding: 6px;
    padding-left: 15px;
    padding-right: 15px;
    height: 32px;
    border-radius: 35px; 
  background: rgba(255,255,255,0.1); 
  font-size: 14px; 
  line-height: 1; 
  opacity: 0; 
  position: absolute; 
  inset: 0 auto auto 0; 
  transition: opacity 1s ease; 
}

.hero-titles { position: relative; min-height: 200px; margin-top: 12px;}

@media (max-width: 800px) {
  .hero-titles { min-height: 150px; }
}

@media (max-width: 480px) {
  .hero-titles { min-height: 120px; }
}
.title { 
  font-size: 67px;
  font-weight: 800; 
  line-height: 1.05; 
  margin: 0; 
  position: absolute; 
  inset: 0 0 auto 0; 
  opacity: 0; 
  transition: opacity 1s ease, transform 1s ease; 
}

.subtitle { 
  font-size: 18px; 
  line-height: 1.6; 
  margin: 8px 0 0; 
  max-width: 560px; 
  opacity: 0; 
  transition: opacity 1s ease, transform 1s ease; 
}

.cta-group { 
  display: flex; 
  gap: 12px; 
  align-items: center; 
  margin-top: 16px; 
}

.btn { 
  display: inline-flex; 
  width: 250px;
  height: 52px;
  align-items: center; 
  justify-content: center; 
  padding: 0 24px; 
  border-radius: 12px; 
  border: 1px solid transparent; 
  color: #ffffff; 
  font-weight: 600; 
  font-size: 15px;
  text-decoration: none; 
  transition: transform .15s ease, opacity .1s ease, background .1s ease, border-color .1s ease; 
}
.btn:active { transform: translateY(1px); }

/* Borrow header dropdown look but with custom colors */
.btn-primary { 
  background: #009F48;
  box-shadow: 0 4px 44px #009F48; 
}
.btn-primary:hover { filter: brightness(1.05); }

.btn-accent { 
  background: #FF6B35;
  box-shadow: 0 4px 44px #FF6B35;
}
.btn-accent:hover { filter: brightness(1.05); }

.btn-outline { 
  background: transparent; 
  border-color: rgba(255,255,255,0.8); 
}
.btn-outline:hover { border-color: #ffffff; }

.btn-duo { display: none; gap: 12px; }

.main-hero__right { 
  position: relative; 
  min-height: 720px;
}
.hero-image { 
  position: absolute; 
  inset: 0; 
  width: 100%; 
  height: 100%; 
  object-fit: contain; 
  opacity: 0; 
  transition: opacity 1s ease, transform 1s ease; 
}

/* Directional crossfade helpers (vertical for main content) */
/* bireysel -> kurumsal: up/down */
[data-prev="bireysel"].anim-right .variant-bireysel,
[data-prev="bireysel"].anim-right .hero-image.variant-bireysel,
[data-prev="bireysel"].anim-right .subtitle.variant-bireysel { transform: translateY(-16px); }
[data-next="kurumsal"].anim-right .variant-kurumsal,
[data-next="kurumsal"].anim-right .hero-image.variant-kurumsal,
[data-next="kurumsal"].anim-right .subtitle.variant-kurumsal { transform: translateY(16px); }

/* include background layers */
[data-prev="bireysel"].anim-right .bg-bireysel { transform: translateY(-16px); }
[data-next="kurumsal"].anim-right .bg-kurumsal { transform: translateY(16px); }

/* kurumsal -> bireysel: down/up */
[data-prev="kurumsal"].anim-left .variant-kurumsal,
[data-prev="kurumsal"].anim-left .hero-image.variant-kurumsal,
[data-prev="kurumsal"].anim-left .subtitle.variant-kurumsal { transform: translateY(16px); }
[data-next="bireysel"].anim-left .variant-bireysel,
[data-next="bireysel"].anim-left .hero-image.variant-bireysel,
[data-next="bireysel"].anim-left .subtitle.variant-bireysel { transform: translateY(-16px); }

/* include background layers */
[data-prev="kurumsal"].anim-left .bg-kurumsal { transform: translateY(16px); }
[data-next="bireysel"].anim-left .bg-bireysel { transform: translateY(-16px); }

/* Switch */
.mode-switch { 
  position: absolute; 
  left: 50%; 
  bottom: 24px; 
  transform: translateX(-50%); 
  display: inline-flex; 
  z-index: 2;
  height: 50px;
  width: 131px;
}

.switch {
  position: relative;
  display: inline-block;
  width: 131px;
  height: 50px;
  cursor: pointer;
}

.switch-input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

/* Background always white */
.switch-label {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 25px;
  box-shadow: inset 0 0 2px rgba(0,0,0,0.2);
  pointer-events: none;
  overflow: hidden;
}

/* Text styling */
.switch-text {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  letter-spacing: -0.5px;
  font-weight: bold;
  color: #555;
  transition: opacity 0.5s ease, left 0.5s ease, right 0.5s ease;
  opacity: 0;
}

/* Kurumsal (default) */
.text-kurumsal {
  right: 9px;
  opacity: 1;
}

/* Bireysel (hidden until checked) */
.text-bireysel {
  left: 15px;
}

/* When checked: hide Kurumsal, show Bireysel */
.switch-input:checked ~ .switch-label .text-kurumsal {
  opacity: 0;
}
.switch-input:checked ~ .switch-label .text-bireysel {
  opacity: 1;
}

/* Round handle */
.switch-handle {
  position: absolute;
  top: 50%;
  left: 5px;
  transform: translateY(-50%);
  width: 33px;
  height: 33px;
  background: #2F3DA2;
  border-radius: 50%;
  box-shadow: 1px 1px 5px rgba(0,0,0,0.2);
  transition: left 0.5s ease, background 0.5s ease;
}

/* Checked = move + color change */
.switch-input:checked ~ .switch-handle {
  left: calc(100% - 33px - 4px);
  background: #009F48;
}

/* Visibility control via data-mode */
[data-mode="bireysel"] .variant-bireysel { opacity: 1; margin-bottom: -4em; }
[data-mode="bireysel"] .variant-kurumsal { opacity: 0; margin-top: 0.5em; }
[data-mode="bireysel"] .bg-bireysel { opacity: 1; border-bottom-right-radius: 11em; }
[data-mode="bireysel"] .bg-kurumsal { opacity: 0; }
[data-mode="bireysel"] .btn-duo { display: none; }
[data-mode="bireysel"] .btn-primary { display: inline-flex; }

[data-mode="kurumsal"] .variant-kurumsal { opacity: 1;}
[data-mode="kurumsal"] .variant-bireysel { opacity: 0; display: none; }
[data-mode="kurumsal"] .bg-kurumsal { opacity: 1; border-bottom-left-radius: 11em; }
[data-mode="kurumsal"] .bg-bireysel { opacity: 0; }
[data-mode="kurumsal"] .btn-duo { display: inline-flex; }
[data-mode="kurumsal"] .btn-primary { display: none; }

.kfix{
    margin-top: -1em !important;
}
/* Responsive */
@media (max-width: 1024px) {
  .main-hero {
    min-height: 80vh;
    padding: 80px 20px 48px;
  }
  
  .main-hero__inner { 
    grid-template-columns: 1fr; 
    gap: 24px;
    margin-bottom: -50px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .main-hero__left {
    order: 1;
    margin-top: 0;
    text-align: center;
    align-items: center;
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  
  .badge-group {
    order: 1;
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
  }
  
  .hero-titles {
    order: 2;
    text-align: center;
    margin-bottom: 16px;
  }
  
  .subtitle {
    order: 3;
    text-align: center;
    margin-bottom: 24px;
  }
  
  .cta-group {
    order: 4;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px;
  }
  
  .main-hero__right { 
    min-height: 335px; 
    order: 2; 
    width: 100%;
  }
  
  .title { 
    font-size: 48px;
    text-align: center;
  }
  
  .btn {
    width: 220px;
    height: 50px;
    font-size: 14px;
  }
}

@media (max-width: 800px) {
  [data-mode="bireysel"] .variant-bireysel { opacity: 1; margin-bottom: 0em; }
  .main-hero {
    min-height: 75vh;
    padding: 90px 16px 48px;
  }
  
  .main-hero__inner {
    gap: 32px;
    margin-bottom: -60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .main-hero__left {
    order: 1;
    width: 100%;
    align-items: center;
    text-align: center;
    display: flex;
    flex-direction: column;
  }
  
  .badge-group {
    order: 1;
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
  }
  
  .hero-titles {
    order: 2;
    text-align: center;
    margin-bottom: 16px;
  }
  
  .title {
    font-size: 32px;
    line-height: 1.1;
    text-align: center;
  }
  
  .subtitle {
    order: 3;
    font-size: 16px;
    line-height: 1.5;
    text-align: center;
    margin-bottom: 24px;
  }
  
  .cta-group {
    order: 4;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 280px;
    margin: 0 auto 24px auto;
  }
  
  .main-hero__right {
    min-height: 335px;
    order: 2;
    width: 100%;
  }
  
  .btn {
    width: 100%;
    height: 50px;
    font-size: 14px;
  }
  
  .btn-duo {
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }
  
  /* .mode-switch {
    bottom: 16px;
    width: 100px;
    height: 40px;
  } */
  
  .switch {
    width: 100px;
    height: 40px;
  }
  
  .switch-handle {
    width: 28px;
    height: 28px;
    left: 4px;
  }
  
  .switch-input:checked ~ .switch-handle {
    left: calc(100% - 28px - 4px);
  }
  
  .switch-text {
    font-size: 11px;
  }
  
  .text-kurumsal {
    right: 6px;
  }
  
  .text-bireysel {
    left: 12px;
  }
  
  /* Remove border radius on mobile */
  [data-mode="bireysel"] .bg-bireysel {
    border-bottom-right-radius: 0 !important;
  }
  
  [data-mode="kurumsal"] .bg-kurumsal {
    border-bottom-left-radius: 0 !important;
  }
}

@media (max-width: 480px) {
  .main-hero {
    min-height: 77vh;
    padding: 80px 12px 40px;
  }
  
  .main-hero__inner {
    gap: 24px;
    margin-bottom: -40px;
  }
  
  .main-hero__right {
    min-height: 335px;
  }
  
  .main-hero__left {
    order: 1;
    display: flex;
    flex-direction: column;
            align-items: normal;
  }
  
  .badge-group {
    order: 1;
    margin-bottom: 12px;
  }
  
  .hero-titles {
    order: 2;
    text-align: center;
    margin-bottom: 12px;
  }
  
  .title {
    font-size: 28px;
    text-align: center;
  }
  
  .subtitle {
    order: 3;
    font-size: 14px;
    text-align: center;
    margin-bottom: 20px;
  }
  
  .cta-group {
    order: 4;
    max-width: 100%;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
  }
  
  .main-hero__right {
    order: 2;
  }
  
  .btn {
    width: 85%;
    height: 48px;
    font-size: 13px;
  }
  
  /* .mode-switch {
    width: 90px;
    height: 36px;
    bottom: 12px;
  } */
  
  .switch {
    width: 90px;
    height: 36px;
  }
  
  .switch-handle {
    width: 24px;
    height: 24px;
  }
  
  .switch-input:checked ~ .switch-handle {
    left: calc(100% - 24px - 4px);
  }
  
  .switch-text {
    font-size: 10px;
  }
  
  /* Ensure border radius is removed on small mobile too */
  [data-mode="bireysel"] .bg-bireysel {
    border-bottom-right-radius: 0 !important;
  }
  
  [data-mode="kurumsal"] .bg-kurumsal {
    border-bottom-left-radius: 0 !important;
  }
}



/* Offers Section */
.offers-section {
  color: #0F172A;
  padding: 64px 24px 96px;
      border-bottom: 0.5px solid lightgray;
}

.offers-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.offers-top { text-align: left; margin-bottom: 28px; }

.section-badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(47, 61, 162, 0.08);
  color: #565656;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-size: 14px;
}

.section-title {
  margin: 10px 0 8px;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-weight: 800;
  font-size: 42px;
  letter-spacing: -0.5px;
}

.section-subtitle {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  color: #334155;
}

.offers-bottom { margin-top: 28px; }

.carousel { position: relative; }
.carousel-viewport {
  overflow: hidden;
  cursor: grab;
}
.carousel-viewport.dragging { cursor: grabbing; }
.carousel-track { display: flex; gap: 12px; transition: transform 0.4s ease; will-change: transform; }
/* Slide Card */
.carousel-card {
  width: 320px;
  height: 298px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #DDDDDD;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-card .card-content {
  width: 270px;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 12px;
  text-align: left;
}
.carousel-card .card-image {
  width: 270px;
  height: 160px;
  border-radius: 12px;
  object-fit: cover;
  display: block;
}
.carousel-card .card-title {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #0f172a;
}
.carousel-card .card-subtitle {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #334155;
}

.carousel-nav { display: flex; justify-content: flex-start; gap: 12px; margin-top: 16px; }

.nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #cbd5e1;
  background: #fff;
  color: #0f172a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.nav-btn:hover { background: #0f172a; color: #fff; border-color: #0f172a; }
.nav-btn:disabled { opacity: .4; cursor: not-allowed; }

/* Offers Section Mobile Responsive */
@media (max-width: 800px) {
  .offers-section {

  }
  .section-badge{
        padding: 14px 10px
  }
  .badge{
 display: none;
  }
  .badge-group{
    display: none;
  }
    .offers-top {
        text-align: center;
        display: flex;
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
  
  .section-title {
    font-size: 28px;
    line-height: 1.2;
  }
  
  .section-subtitle {
    font-size: 16px;
  }
  
  .carousel-card {
    width: 319px;
    height: 298px;
  }
  .carousel-nav { justify-content: center; }
  
  .carousel-card .card-content {
    width: 240px;
    gap: 10px;
  }
  
  .carousel-card .card-image {
    width: 240px;
    height: 140px;
  }
  
  .carousel-card .card-title {
    font-size: 16px;
  }
  
  .carousel-card .card-subtitle {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  
  .section-title {
    font-size: 24px;
  }
  
  .section-subtitle {
    font-size: 15px;
  }
  
  .carousel-card {
    width: 319px;
    height: 298px;
  }
  .carousel-card .card-content {
    width: 220px;
  }
  
  .carousel-card .card-image {
    width: 220px;
    height: 130px;
  }
}

/* Solutions */
.solutions { padding: 48px 24px 72px; background: #fff; }
.solutions-inner { max-width: 1200px; margin: 0 auto; display: flex; flex-direction: column; gap: 48px; }
.solution-row { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center; height: 820px; }
.solution-left { display: flex; flex-direction: column; gap: 16px; }
.solution-right { display: flex; align-items: center; justify-content: center; }
.solution-right img { max-width: 100%; height: auto; display: block; }

.solution-badge {
  display: inline-block; padding: 6px 12px; border-radius: 999px; width: 150px; text-align: center;
  background: rgba(47,61,162,0.08); color: #565656; font-weight: 600; font-size: 14px;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}
.solution-title {
  margin: 0; font-size: 42px; font-weight: 800; letter-spacing: -0.5px;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}
.solution-subtitle {
  margin: 0; font-size: 18px; font-weight: 400; line-height: 1.6; color: #334155;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}

.solution-actions { display: flex; gap: 16px; flex-wrap: nowrap; }
.solution-btn { width: 232px; height: 50px; border-radius: 12px; display: inline-flex; align-items: center; justify-content: center; font-weight: 700; text-decoration: none; }
.solution-btn.primary { color: #fff; }
.solution-btn.secondary { background: #F5F5F5; color: #0f172a; }
.solution-btn.secondary i { margin-left: 8px; }

/* Color variants */
.solution-btn.variant-teal { background: #00E1E0; }
.solution-btn.variant-indigo { background: #2F3DA2; }
.solution-btn.variant-purple { background: #581678; }

/* Responsive */
@media (max-width: 1024px) {
  .solution-row { 
    grid-template-columns: 1fr; 
    height: auto;
    gap: 24px;
  }
  /* center text and place image under text */
  .solution-left { text-align: center; align-items: center; }
  .solution-actions { justify-content: center; }
  .solution-right { order: 2; }
  .solution-left { order: 1; }
  .solution-btn { 
    width: 360px; 
    height: 50px; 
  }
  .solution-actions {
    flex-direction: column;
    gap: 12px;
  }
}

@media (max-width: 800px) {
  .solutions {
    padding: 32px 16px 48px;
  }
  
  .solutions-inner {
    gap: 32px;
  }
  
  .solution-row {
    gap: 20px;
    height: auto;
  }
  .solution-left { text-align: center; align-items: center; }
  .solution-actions { justify-content: center; }
  
  .solution-title {
    font-size: 28px;
    line-height: 1.2;
  }
  
  .solution-subtitle {
    font-size: 16px;
  }
  
  .solution-badge {
    width: auto;
    padding: 6px 16px;
  }
  
  .solution-right img {
    max-width: 80%;
  }
}

@media (max-width: 480px) {
  .solutions {
    padding: 24px 12px 40px;
  }
  
  .solutions-inner {
    gap: 24px;
  }
  
  .solution-title {
    font-size: 24px;
  }
  
  .solution-subtitle {
    font-size: 15px;
  }
  
  .solution-right img {
    max-width: 90%;
  }
}

/* Stacked-on-scroll behavior (only for .solutions.stacked) */
.solutions.stacked { position: relative; }
.solutions.stacked .solutions-inner { position: relative; }
.solutions.stacked .solution-row {
  position: sticky;
  top: 80px; /* keeps some space for header */
  background: #fff; /* keep white background while stacking */
}

/* Disable sticky behavior on mobile for better UX */
@media (max-width: 800px) {
  .solutions.stacked .solution-row {
    position: static;
    top: auto;
  }
}
.solutions.stacked .solution-row:nth-child(1) { 
    z-index: 1; 
    background: url("../images/bg/solution-1.png") no-repeat center center;
    background-size: contain;
}
.solutions.stacked .solution-row:nth-child(2) { 
    z-index: 2; 
    background: url("../images/bg/solution-2.png") no-repeat center center;
    background-size: contain;
}
.solutions.stacked .solution-row:nth-child(3) { 
    z-index: 3; 
    background: url("../images/bg/solution-3.png") no-repeat center center;
    background-size: contain;
}
/* Finance Solutions Section */
.finance-solutions {
    padding: 48px 24px 72px;
    background: #fff;
  }
  .finance-solutions__container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 48px;
  }
  .finance-solutions__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    height: 690px;
  }
  .finance-solutions__info {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .finance-solutions__features {
    display: flex;
    justify-content: center;
  }
  .finance-solutions__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .finance-solutions__card {
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 24px;
    width: 285px;
    height: 275px;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 12px;
  }
  .finance-solutions__card-title {
    margin-top: 12px;
    font-weight: 600;
    font-size: 18px;
  }
  .finance-solutions__card-desc {
    margin-top: 6px;
    font-size: 16px;
    color: #555;
  }
  .finance-solutions__badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 999px;
    width: 150px;
    text-align: center;
    background: rgba(47,61,162,0.08);
    color: #565656;
    font-weight: 600;
    font-size: 14px;
    font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  }
  .finance-solutions__title {
    margin: 0;
    font-size: 42px;
    font-weight: 800;
    letter-spacing: -0.5px;
    font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  }
  .finance-solutions__subtitle {
    margin: 0;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    color: #334155;
    font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  }
  .finance-solutions__btn {
    width: 232px;
    height: 50px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    text-decoration: none;
  }
  .finance-solutions__btn.secondary {
    background: #F5F5F5;
    color: #0f172a;
  }
  .finance-solutions__btn.secondary i {
    margin-left: 8px;
  }
  
  /* Responsive */
  @media (max-width: 1024px) {
    .finance-solutions__row {
      grid-template-columns: 1fr;
      height: auto;
      gap: 24px;
    }
    /* center text & put features (images) under text */
    .finance-solutions__info { text-align: center; align-items: center; width: 95%;}
    .finance-solutions__features { order: 2; width: 95%;}
    .finance-solutions__info { order: 1; width: 95%;}
    .finance-solutions__btn {
      width: 340px;
      height: 50px;
    }
    .finance-solutions__grid {
      grid-template-columns: 1fr;
      gap: 12px;
    }
    .finance-solutions__card {
      width: 90%;
      height: auto;
      min-height: 200px;
    }
  }

  @media (max-width: 800px) {
    .finance-solutions {
      padding: 32px 16px 48px;
    }
    .finance-solutions__info { text-align: center; align-items: center; }
    
    .finance-solutions__title {
      font-size: 28px;
      line-height: 1.2;
    }
    
    .finance-solutions__subtitle {
      font-size: 16px;
    }
    
    .finance-solutions__badge {
      width: auto;
      padding: 6px 16px;
    }
    
    .finance-solutions__card {
      padding: 20px;
      min-height: 180px;
    }
    
    .finance-solutions__card-title {
      font-size: 16px;
    }
    
    .finance-solutions__card-desc {
      font-size: 14px;
    }
  }

  @media (max-width: 480px) {
    .finance-solutions {
      padding: 24px 12px 40px;
    }
    .finance-solutions__info { text-align: center; align-items: center; }
    
    .finance-solutions__title {
      font-size: 24px;
    }
    
    .finance-solutions__subtitle {
      font-size: 15px;
    }
    
    .finance-solutions__card {
      padding: 16px;
      min-height: 160px;
    }
  }
  
  /* Stacked-on-scroll behavior */
  .finance-solutions.stacked {
    position: relative;
  }
  .finance-solutions.stacked .finance-solutions__container {
    position: relative;
  }
  .finance-solutions.stacked .finance-solutions__row {
    position: sticky;
    top: 80px;
    background: #fff;
  }

  /* Disable sticky behavior on mobile for better UX */
  @media (max-width: 800px) {
    .finance-solutions.stacked .finance-solutions__row {
      position: static;
      top: auto;
    }
  }

  .entegration-solutions {
    padding: 48px 24px 72px;
    background: #fff;
  }
  .entegration-solutions__container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .entegration-solutions__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
    height: 820px;
  }
  .entegration-solutions__left {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .entegration-solutions__badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 999px;
    width: 150px;
    text-align: center;
    background: rgba(47,61,162,0.08);
    color: #565656;
    font-weight: 600;
    font-size: 14px;
    font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  }
  .entegration-solutions__title {
    margin: 0;
    font-size: 42px;
    font-weight: 800;
    letter-spacing: -0.5px;
    font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  }
  .entegration-solutions__subtitle {
    margin: 0;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    color: #334155;
    font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  }
  .entegration-solutions__actions {
    display: flex;
    gap: 16px;
    flex-wrap: nowrap;
  }
  .entegration-solutions__btn {
    width: 232px;
    height: 50px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    text-decoration: none;
  }
  .entegration-solutions__btn.primary {
    color: #fff;
  }
  .entegration-solutions__btn.secondary {
    background: #F5F5F5;
    color: #0f172a;
  }
  .entegration-solutions__btn.secondary i {
    margin-left: 8px;
  }
  .entegration-solutions__btn.variant-indigo {
    background: #2F3DA2;
  }
  .entegration-solutions__right {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .entegration-solutions__right img {
    max-width: 100%;
    height: auto;
    display: block;
    width: 450px;
    height: 777px;
  }
  .entegration-solutions{ 
    z-index: 3; 
    background: url("../images/bg/ent.png") no-repeat center center;
    background-size: contain;
}
  /* Responsive */
  @media (max-width: 1024px) {
    .entegration-solutions__row {
      display: flex;
      flex-direction: column-reverse;
      grid-template-columns: 1fr;
      height: auto;
      gap: 24px;
    }
    /* center text & move image under text */
    .entegration-solutions__left { text-align: center; align-items: center; }
    .entegration-solutions__right { order: 2; }
    .entegration-solutions__left { order: 1; }
    .entegration-solutions__btn {
      width: 360px;
      height: 50px;
    }
    .entegration-solutions__actions {
      flex-direction: column;
      gap: 12px;
    }
  }

  @media (max-width: 800px) {
    .entegration-solutions {
      padding: 32px 16px 48px;
    }
    .entegration-solutions__left { text-align: center; align-items: center; }
    
    .entegration-solutions__title {
      font-size: 28px;
      line-height: 1.2;
    }
    
    .entegration-solutions__subtitle {
      font-size: 16px;
    }
    
    .entegration-solutions__badge {
      width: auto;
      padding: 6px 16px;
    }
    
    .entegration-solutions__right img {
      width: 300px;
      height: auto;
      max-width: 100%;
    }
  }

  @media (max-width: 480px) {
    .entegration-solutions {
      padding: 24px 12px 40px;
    }
    .entegration-solutions__left { text-align: center; align-items: center; }
    
    .entegration-solutions__title {
      font-size: 24px;
    }
    
    .entegration-solutions__subtitle {
      font-size: 15px;
    }
    
    .entegration-solutions__right img {
      width: 250px;
    }
  }
  .download-app {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 0;
}

.download-app__container {
  max-width: 1200px;
  margin: 0 auto;
}

.download-app__row {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.download-app__center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.download-app__center-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.download-app__image {
    margin-bottom: -45px;
}

.download-app__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.download-app__title {
  font-size: 34px;
  font-weight: 300;
  margin-bottom: 10px;
}
.download-app__title strong {
  font-weight: 600 !important;
}

.download-app__subtitle {
  font-size: 18px;
  color: #666;
  margin-bottom: 20px;
}

.download-app__links {
  display: flex;
  flex-direction: row;
      gap: 15px;
}

.download-app__links img {
  width: 140px;
  height: 50px;
  cursor: pointer;
}

/* Download App Mobile Responsive */
@media (max-width: 800px) {
  .download-app {
    padding: 32px 16px;
  }
  
  .download-app__center-inner {
    flex-direction: column-reverse;
    text-align: center;
    gap: 20px;
  }
  
  .download-app__image {
    margin-bottom: 0;
    order: -1;
  }
  
  .download-app__image img {
    max-width: 441px;
    margin-bottom: -28px;
  }
  
  .download-app__title {
    font-size: 28px;
    margin-bottom: 12px;
  }
  
  .download-app__subtitle {
    font-size: 16px;
    margin-bottom: 24px;
  }
  
  .download-app__links {
    justify-content: center;
    gap: 12px;
  }
  
  .download-app__links img {
    width: 120px;
    height: 42px;
    margin: 0;
  }
}

@media (max-width: 480px) {
  .download-app {
    padding: 24px 12px;
  }
  
  .download-app__title {
    font-size: 24px;
  }
  
  .download-app__subtitle {
    font-size: 15px;
  }
  
  .download-app__links {
    flex-direction: row;
    align-items: center;
    gap: 8px;
  }
  
  .download-app__links img {
    width: 140px;
    height: 50px;
  }
}