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

body {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  background: #fff;
  color: #0b1320;
}

html{scroll-behavior:smooth;scroll-padding-top:120px}

.header-space { height: 75px; }



/* ===================== 1. KISIM ===================== */



.navbar {
  width: 100%;
  display: flex;
  justify-content: center;
}

.navbar-inner {
  width: 1520px;
  height: 100px;
  padding: 0 200px;
  background: #fff;
  border-radius: 50px;

  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;

  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.08),
    0 4px 10px rgba(0, 0, 0, 0.04);

  opacity: 0;
  animation: navFadeIn .55s ease forwards;
  animation-delay: .03s;
  will-change: opacity, filter;
  transition: box-shadow .25s ease;
}
.navbar-inner:hover {
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.10),
    0 6px 16px rgba(0, 0, 0, 0.06);
}

.logo { grid-column: 1; justify-self: start; }
.menu { grid-column: 2; justify-self: center; }
.apply { grid-column: 3; justify-self: end; }
.mobile-menu-btn { grid-column: 3; justify-self: end; }

.logo { transform: translateX(-140px); }
.apply { transform: translateX(140px); }

.logo img {
  height: 48px;
  width: auto;
  display: block;
  cursor: pointer;
}

.menu {
  list-style: none;
  display: flex;
  gap: 60px;
  justify-content: center;
  align-items: center;
}

.menu a {
  text-decoration: none;
  font-size: 14px;
  color: #000;
  transition: color 0.25s ease;
}
.menu a:hover { color: red; }

.apply {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.apply-icon {
  width: 25px;
  height: 25px;
  flex-shrink: 0;
}
.apply-icon path { fill: red !important; }

.apply h2 {
  font-size: 14px;
  font-weight: 400;
  transition: color 0.25s ease;
}
.apply:hover h2 { color: red; }

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-icon {
  width: 28px;
  height: 28px;
  display: block;
  transition: transform 0.18s ease;
  transform-origin: center;
}
.menu-icon path { fill: #000 !important; }

.mobile-menu-btn.active .menu-icon { transform: rotate(90deg); }

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 999;
}
.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.96);
  width: 100%;
  max-width: 620px;
  background: #fff;
  border-radius: 28px;
  padding: 36px;
  box-shadow: 0 28px 80px rgba(0,0,0,0.25);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 1000;
}
.modal.active {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.modal-header h2 {
  font-size: 21px;
  font-weight: 400;
}

.modal-close {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: #f2f2f2;
  font-size: 22px;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;

  color: #0b1320;
  -webkit-appearance: none;
  appearance: none;
  font-family: inherit;
}
.modal-close:hover {
  background: red;
  color: #fff;
}

.modal-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.modal-option {
  width: 100%;
  text-align: left;
  padding: 20px;
  border-radius: 18px;
  border: 1px solid #eee;
  background: #fff;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.25s ease;

  color: #0b1320;
  -webkit-appearance: none;
  appearance: none;
  font-family: inherit;
  text-decoration: none;
}

/* Link kullanıyorsan (button değilse) renk sabit kalsın */
.modal-option:visited { color: #0b1320; }
.modal-option a,
.modal-option a:visited {
  color: #0b1320 !important;
  text-decoration: none !important;
}
.modal-option:hover {
  border-color: red;
  color: red;
}

.mobile-nav {
  position: fixed;
  left: 50%;
  top: 56%;
  transform: translate(-50%, -50%) scale(.98);
  width: min(440px, calc(100% - 48px));
  background: #fff;
  border-radius: 28px;
  padding: 42px 36px 30px;
  box-shadow: 0 28px 80px rgba(0,0,0,0.25);
  opacity: 0;
  pointer-events: none;
  transition: all .28s ease;
  z-index: 1000;
}
.mobile-nav.active {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: center;
  padding: 0;
  margin: 0;
}

.mobile-nav a,
.mobile-nav-links a,
.mobile-nav-apply {
  color: #0b1320 !important;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  font-size: 14px;
}
.mobile-nav a:visited,
.mobile-nav-links a:visited {
  color: #0b1320 !important;
}
.mobile-nav-links a:hover,
.mobile-nav-apply:hover {
  color: red !important;
}

.mobile-nav-apply {
  margin: 34px auto 0;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  transition: color .25s ease;
}

.mobile-apply-icon svg {
  width: 22px;
  height: 22px;
  display: block;
}
.mobile-apply-icon svg path { fill: red !important; }

.social-row {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 18px;
}

.social-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: #000;
  text-decoration: none;
  line-height: 0;
  transition: color .25s ease, transform .25s ease;
}

.social-icon svg {
  width: 24px;
  height: 24px;
  display: block;
  transform-origin: center;
}

.social-icon svg path,
.social-icon svg g,
.social-icon svg * {
  fill: currentColor !important;
}

.social-row .social-icon:nth-child(1) svg { transform: scale(0.92); }
.social-row .social-icon:nth-child(2) svg { transform: scale(0.88); }
.social-row .social-icon:nth-child(3) svg { transform: scale(0.86); }
.social-row .social-icon:nth-child(4) svg { transform: scale(0.92); }

.social-icon:hover {
  color: red;
  transform: translateY(-1px);
}

.copyright {
  font-size: 13px !important;
  opacity: .65;
  margin-top: 30px;
  text-align: center;
}

@media (max-width: 1700px) {
  .navbar { padding: 0 50px; }

  .navbar-inner {
    width: 100%;
    padding-left: 80px;
    padding-right: 80px;
  }

  .logo { transform: translateX(-45px); }
  .apply { transform: translateX(45px); }
}

@media (max-width: 1200px) {
  .navbar-inner {
    width: 100%;
    padding: 0 40px;
  }

  .menu,
  .apply { display: none; }

  .mobile-menu-btn { display: block; }

  .logo,
  .apply { transform: none; }
}

@media (min-width: 769px) and (max-width: 1200px) {
  .mobile-nav {
    width: min(520px, calc(100% - 80px));
    top: 45%;
    padding-bottom: 60px;
  }
}

@media (max-width: 768px) {
  .navbar-inner {
    padding: 0 24px;
    border-radius: 30px;
    grid-template-columns: auto 1fr;
  }

  .logo {
    grid-column: 1;
    justify-self: start;
    transform: none;
  }

  .mobile-menu-btn {
    display: block;
    grid-column: 2;
    justify-self: end;
  }

  .logo img { height: 40px; }

  .modal {
    max-width: calc(100% - 32px);
    padding: 26px;
  }

  .mobile-nav {
    top: 56%;
    padding: 40px 28px 26px;
  }

  .copyright { font-size: 13px !important; }
}

@media (prefers-reduced-motion: reduce) {
  .navbar-inner {
    animation: none !important;
    filter: none !important;
    opacity: 1 !important;
  }
}

@keyframes navFadeIn {
  from { opacity: 0; filter: blur(10px); }
  to   { opacity: 1; filter: blur(0); }
}



/* ===================== 2. KISIM ===================== */



.hero{
  margin-top: 100px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.hero-inner{
  width: 100%;
  padding: 0 50px;
}

.hero-card{
  display: block;
  width: 100%;
  max-width: 1520px;
  margin: 0 auto;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,.18);

  opacity: 0;
  animation: premiumReveal 1s cubic-bezier(.2,.8,.2,1) forwards;
  animation-delay: .06s;
  will-change: transform, opacity, filter;
  transition: transform .28s ease, box-shadow .28s ease;
}
.hero-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 30px 75px rgba(0,0,0,.20);
}

.hero-card img{
  width: 100%;
  height: clamp(260px, 34vw, 520px);
  object-fit: cover;
  display: block;
}

@media (max-width: 768px){
  .hero-card img{ height: 320px; }
}

@media (prefers-reduced-motion: reduce){
  .hero-card{
    animation: none !important;
    transition: none !important;
    filter: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

@keyframes premiumReveal {
  from{
    opacity: 0;
    transform: translateY(22px) scale(.985);
    filter: blur(10px);
  }
  to{
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}



/* ===================== 3. KISIM ===================== */



.services{
  margin-top: 150px;
  width: 100%;
  display: flex;
  justify-content: center;
  font-size: 15px;
}

.services-inner{
  width: 100%;
  max-width: 1520px;
  padding: 0 50px;
  padding-left: 0;
  position: relative;
  padding-bottom: 160px;
}

.sr-only{
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.services-grid{
  width: 100%;
  display: grid;
  grid-template-columns: 358px 358px 654px;
  gap: 30px;
  align-items: start;
  justify-content: space-between;
}

.service-card{
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,.12);
  position: relative;

  opacity: 0;
  animation: premiumReveal .95s cubic-bezier(.2,.8,.2,1) forwards;
  will-change: transform, opacity, filter;
  transition: transform .28s ease, box-shadow .28s ease;
}
.service-card:hover{
  transform: translateY(-8px);
  box-shadow: 0 28px 75px rgba(0,0,0,.14);
}

.services-grid .service-card:nth-of-type(1){ animation-delay: .10s; }
.services-grid .service-card:nth-of-type(2){ animation-delay: .24s; }

.service-card.big{
  width: 358px;
  height: 300px;
  padding: 34px 34px 28px;
}

.service-card.light{ background:#fff; }
.service-card.dark{ background:#2f2f2f; color:#fff; }

.service-text h2{
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 18px;
}

.service-text p{
  font-size: 15px;
  line-height: 1.55;
  opacity: .9;
  max-width: 260px;
  margin-top: 40px;
}

.service-card.dark .service-text p{
  opacity: 1;
  color: rgba(255,255,255,.92);
}
.service-card.dark .service-text p strong{
  font-weight: 400;
  color: rgba(255,255,255,.98);
  letter-spacing: .1px;
}

.service-cta{
  margin-top: 46px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  text-decoration: none;
  color: inherit;
  opacity: .95;
}

.cta-arrow{
  display: inline-flex;
  transition: transform .22s ease;
}
.service-cta:hover .cta-arrow{ transform: translateX(8px); }

.cta-arrow svg{
  width: 16px;
  height: 16px;
  display: block;
}
.cta-arrow svg path{ fill: currentColor !important; }

.service-media{
  position: absolute;
  right: 1px;
  bottom: 1px;
  width: 100px;
  height: auto;
  display: block;
}

.mini-grid{
  width: 654px;
  display: grid;
  grid-template-columns: repeat(2, 327px);
  grid-auto-rows: 135px;
  gap: 30px;
  align-content: start;
  justify-self: end;
}

.mini-card{
  width: 327px;
  height: 135px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 25px 60px rgba(0,0,0,.10);
  text-decoration: none;
  color: #0b1320;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  text-align: center;

  opacity: 0;
  animation: premiumReveal .9s cubic-bezier(.2,.8,.2,1) forwards;
  will-change: transform, opacity, filter;
  transition: transform .28s ease, box-shadow .28s ease;
}
.mini-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 26px 70px rgba(0,0,0,.12);
}

.mini-grid .mini-card:nth-child(1){ animation-delay: .34s; }
.mini-grid .mini-card:nth-child(2){ animation-delay: .44s; }
.mini-grid .mini-card:nth-child(3){ animation-delay: .54s; }
.mini-grid .mini-card:nth-child(4){ animation-delay: .64s; }

.mini-icon{ margin-top: 0; }
.mini-icon svg{
  width: 48px;
  height: 48px;
  display: block;
}
.mini-icon svg path,
.mini-icon svg g,
.mini-icon svg *{
  fill: red !important;
}

.mini-card:nth-child(3) .mini-icon svg{
  width: 68px;
  height: 68px;
}

.mini-card h3{
  font-size: 15px;
  font-weight: 400;
  line-height: 1.1;
  margin: 0;
  padding: 0;
  min-height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mini-card:nth-child(3) h3{
  transform: translateY(-10px);
}

.leaf{
  position: absolute;
  right: -180px;
  bottom: -35px;
  height: 110px;
  width: auto;
  pointer-events: none;

  opacity: 0;
  animation: premiumFloat .95s cubic-bezier(.2,.8,.2,1) forwards;
  animation-delay: .72s;
  will-change: transform, opacity, filter;
}

@media (max-width: 1500px){

  .services-inner{
    padding-left: 50px !important;
    padding-right: 50px !important;
  }

  .services-grid{
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 100px;
  }

  .service-card.big{
    width: min(358px, calc(100% - 24px));
    margin: 0 auto;
  }

  .mini-grid{
    width: 100%;
    grid-template-columns: 1fr;
    grid-auto-rows: 120px;
    justify-items: center;
    justify-self: center;
    gap: 50px;
  }

  .mini-card{
    width: min(327px, calc(100% - 24px));
    height: 120px;
  }

  .mini-card:nth-child(3) .mini-icon svg{
    width: 70px;
    height: 70px;
  }

  .leaf{
    display: block;
    right: 10px;
    bottom: 10px;
    height: 90px;
  }
}

@media (max-width: 768px){
  .leaf{
    display: block;
    right: 8px;
    bottom: 8px;
    height: 78px;
  }
}

@media (prefers-reduced-motion: reduce){
  .service-card,
  .mini-card,
  .leaf{
    animation: none !important;
    transition: none !important;
    filter: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

@keyframes premiumReveal {
  from{
    opacity: 0;
    transform: translateY(22px) scale(.985);
    filter: blur(10px);
  }
  to{
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes premiumFloat {
  from{
    opacity: 0;
    transform: translateY(16px);
    filter: blur(10px);
  }
  to{
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}



/* ===================== 4. KISIM ===================== */



.plans{
  margin-top: 30px;
  background: #F1F1F1;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.plans-inner{
  width: 100%;
  max-width: 1520px;
  margin: 0 auto;
  padding: 35px 50px 120px;
  position: relative;

  display: flex;
  flex-direction: column;
  align-items: center;
}

.plans-title{
  font-size: 22px;
  font-weight: 400;
  color: #0b1320;
  text-align: center;
  line-height: 1;
  margin: 0;
  white-space: nowrap;
}

.plans-line{
  position: relative;
  width: 48px;
  height: 3px;
  border-radius: 999px;
  background: #E60012;
  margin-top: 18px;
}

.plans-tabs{
  margin-top: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  flex-wrap: wrap;
  width: 100%;
}

.tab-pill{
  border: 0;
  cursor: pointer;
  background: #E9E9E9;
  color: #0b1320;
  font-size: 14px;
  font-weight: 400;
  padding: 14px 34px;
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(0,0,0,.10);
  position: relative;
  transition: transform .18s ease, background .18s ease, color .18s ease;
}
.tab-pill:hover{ transform: translateY(-2px); }

.tab-pill::after{
  content:"";
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 11px solid transparent;
  border-right: 11px solid transparent;
  border-top: 11px solid transparent;
  opacity: 0;
  transition: opacity .18s ease;
}

.tab-pill.is-active{
  background: #fff;
  color: #0b1320;
}
.tab-pill.is-active::after{
  border-top-color: #fff;
  opacity: 1;
}

.plans-grid{
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(3, minmax(260px, 1fr));
  gap: 60px;
  justify-items: center;
  align-items: start;
  width: 100%;
}

.plan-card{
  width: 100%;
  max-width: 380px;
  transition: transform .28s ease, filter .28s ease;
}
.plan-card:hover{ transform: translateY(-6px); }

.plan-flip{
  position: relative;
  width: 100%;
  height: 260px;
  perspective: 1100px;
}

.plan-face{
  position: absolute;
  inset: 0;
  border-radius: 18px;
  box-shadow: 0 22px 55px rgba(0,0,0,.14);
  backface-visibility: hidden;
  transform-style: preserve-3d;
  overflow: hidden;
  padding: 18px;
}

.plan-front{ background: #fff; }
.plan-front::before{
  content:"";
  position: absolute;
  inset: 14px;
  border-radius: 14px;
  background: linear-gradient(90deg, #F00000, #880000);
}
.plan-front > *{ position: relative; z-index: 2; }

.plan-back{
  background: linear-gradient(90deg, #F00000, #880000);
  transform: rotateY(180deg);
  color: #fff;
}

.plan-card.is-flipped .plan-front{ transform: rotateY(180deg); }
.plan-card.is-flipped .plan-back{ transform: rotateY(360deg); }

.plan-top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 18px 0;
}

.plan-name{
  font-size: 15px;
  font-weight: 400;
  color: #fff;
}

.plan-btn{
  border: 0;
  cursor: pointer;
  background: #fff;
  color: #0b1320;
  font-size: 13px;
  padding: 9px 14px;
  border-radius: 10px;
  box-shadow: 0 12px 25px rgba(0,0,0,.18);
}

.plan-features{
  list-style: none;
  margin: 22px 0 0;
  padding: 8px 18px 0;
  display: grid;
  gap: 14px;
  color: #fff;
  font-size: 13px;
}

.plan-features li{
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.2;
}

.feat-ico{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  font-size: 18px;
  line-height: 1;
}

.feat-ico svg{
  width: 20px;
  height: 20px;
  display: block;
  fill: #fff;
}

.plan-pick{
  position: absolute;
  right: 42px;
  top: calc(50% + 50px);
  transform: translateY(-50%);
}

.plan-details{
  margin-top: 18px;
  padding: 0 18px 18px;
  height: 160px;
  overflow: auto;
  font-size: 13px;
  line-height: 1.55;
}

.plan-details::-webkit-scrollbar{ width: 8px; }
.plan-details::-webkit-scrollbar-track{
  background: rgba(255,255,255,.18);
  border-radius: 999px;
}
.plan-details::-webkit-scrollbar-thumb{
  background: rgba(255,255,255,.55);
  border-radius: 999px;
}
.plan-details::-webkit-scrollbar-thumb:hover{
  background: rgba(255,255,255,.75);
}

.plan-price{
  margin-top: 18px;
  background: #fff;
  border-radius: 14px;
  padding: 16px 18px;
  display: flex;
  align-items: baseline;
  gap: 14px;
  box-shadow: 0 18px 45px rgba(0,0,0,.10);
}

.plan-price .price{
  font-size: 22px;
  font-weight: 400;
  color: #0b1320;
}
.plan-price .per{
  font-size: 12px;
  opacity: .7;
  letter-spacing: .6px;
}

.plans-more-wrap{
  margin-top: 80px;
  display: flex;
  justify-content: center;
  width: 100%;
}

.more-pill{
  width: 100%;
  max-width: 270px;
  height: 52px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: #fff;
  color: #0b1320;
  text-decoration: none;

  font-size: 14px;
  font-weight: 400;

  border-radius: 12px;
  border: 1px solid rgba(11,19,32,.14);

  cursor: pointer;
  position: relative;

  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
  box-shadow: 0 10px 26px rgba(0,0,0,.06);
}

.more-pill::after{
  content:"";
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 11px solid transparent;
  border-right: 11px solid transparent;
  border-top: 11px solid #fff;
}

.more-pill:hover{
  transform: translateY(-1px);
  border-color: rgba(230,0,18,.35);
  box-shadow: 0 14px 32px rgba(0,0,0,.10);
}

.plans-leaf{
  position: absolute;
  left: -190px;
  bottom: -8px;
  height: 110px;
  width: auto;
  pointer-events: none;
}

@media (min-width: 1701px){
  .plans-inner{
    padding-top: 100px;
    padding-bottom: 120px;
  }
}

@media (min-width: 1201px) and (max-width: 1700px){
  .plans{ margin-top: -10px; }

  .plans-inner{
    padding-top: 64px;
    padding-bottom: 120px;
  }

  .plans-leaf{
    left: 0;
    bottom: -2px;
    height: 110px;
    display: block;
  }
}

@media (min-width: 769px){
  .plans-tabs{
    display: grid;
    grid-auto-flow: column;
    justify-content: center;
    align-items: center;
    width: auto;
    margin-left: auto;
    margin-right: auto;
    margin-top: 70px;
  }

  .tab-pill{
    min-width: 140px;
    text-align: center;
  }
}

@media (min-width: 1201px){
  .plans-tabs{ gap: 100px; }
}

@media (min-width: 769px) and (max-width: 1200px){
  .plans{ margin-top: -18px; }

  .plans-inner{ padding: 100px 50px 120px; }

  .plans-tabs{ gap: 60px; }

  .plans-leaf{ left: 0; bottom: -2px; height: 90px; }
  .plans-grid{ grid-template-columns: 1fr; gap: 60px; }
}

@media (max-width: 768px){
  .plans{ margin-top: -14px; }
  .plans-inner{ padding: 92px 24px 120px; }

  .plans-title{
    font-size: 20px;
    transform: translateX(10px);
  }

  .plans-line{ width: 42px; }

  .plans-tabs{
    flex-direction: column;
    gap: 20px;
    width: 100%;
    margin-top: 60px;
  }

  .plans-grid{
    grid-template-columns: 1fr;
    gap: 40px;
    width: 100%;
  }

  .plan-card{ max-width: 380px; }
  .plans-leaf{ left: 0; bottom: 0; height: 78px; }
  .more-pill{ max-width: 270px; }
}

@media (prefers-reduced-motion: reduce){
  .plans-title,
  .plans-line,
  .plans-tabs,
  .plans-grid .plan-card,
  .plans-more-wrap,
  .plans-leaf{
    animation: none !important;
    transition: none !important;
    filter: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

@keyframes premiumReveal {
  from{
    opacity: 0;
    transform: translateY(22px) scale(.985);
    filter: blur(10px);
  }
  to{
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes premiumTitle {
  from{
    opacity: 0;
    transform: translateY(14px);
    filter: blur(8px);
  }
  to{
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.plans-title{
  opacity: 0;
  animation: premiumTitle .85s cubic-bezier(.2,.8,.2,1) forwards;
  animation-delay: .05s;
  will-change: transform, opacity, filter;
}

.plans-line{
  opacity: 0;
  animation: premiumTitle .8s cubic-bezier(.2,.8,.2,1) forwards;
  animation-delay: .14s;
  will-change: transform, opacity, filter;
}

.plans-tabs{
  opacity: 0;
  animation: premiumReveal .9s cubic-bezier(.2,.8,.2,1) forwards;
  animation-delay: .22s;
  will-change: transform, opacity, filter;
}

.plans-grid .plan-card{
  opacity: 0;
  filter: blur(10px);
  animation: premiumReveal .95s cubic-bezier(.2,.8,.2,1) forwards;
  will-change: transform, opacity, filter;
}

.plans-grid .plan-card:nth-child(1){ animation-delay: .28s; }
.plans-grid .plan-card:nth-child(2){ animation-delay: .40s; }
.plans-grid .plan-card:nth-child(3){ animation-delay: .52s; }

.plans-more-wrap{
  opacity: 0;
  animation: premiumReveal .95s cubic-bezier(.2,.8,.2,1) forwards;
  animation-delay: .62s;
  will-change: transform, opacity, filter;
}

.plans-leaf{
  opacity: 0;
  animation: premiumReveal .95s cubic-bezier(.2,.8,.2,1) forwards;
  animation-delay: .72s;
  will-change: transform, opacity, filter;
}



/* ===================== 5. KISIM ===================== */



.devices{
  margin-top: 150px;
  width: 100%;
  background: #fff;
}

.devices-inner{
  width: 100%;
  max-width: 1520px;
  margin: 0 auto;
  padding: 0 50px 140px;

  display: flex;
  flex-direction: column;
  align-items: center;
}

.devices-title{
  font-size: 22px;
  font-weight: 400;
  color: #0b1320;
  text-align: center;
  line-height: 1;
  margin: 0;
  white-space: nowrap;

  opacity: 0;
  animation: premiumTitle .85s cubic-bezier(.2,.8,.2,1) forwards;
  animation-delay: .05s;
  will-change: transform, opacity, filter;
}

.devices-grid{
  width: 100%;
  margin-top: 80px;

  display: grid;
  grid-template-columns: repeat(3, minmax(260px, 1fr));
  gap: 60px;

  justify-items: center;
  align-items: start;
}

.device-card{
  width: 100%;
  max-width: 380px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 22px 55px rgba(0,0,0,.10);

  min-height: 610px;
  padding: 40px 26px 28px;

  display: grid;
  grid-template-rows: 28px 275px 125px 1fr;
  align-items: center;
  justify-items: center;
  text-align: center;

  opacity: 0;
  animation: premiumReveal .95s cubic-bezier(.2,.8,.2,1) forwards;
  will-change: transform, opacity, filter;

  transition: transform .28s ease, box-shadow .28s ease;
}
.devices-grid .device-card:nth-child(1){ animation-delay: .12s; }
.devices-grid .device-card:nth-child(2){ animation-delay: .26s; }
.devices-grid .device-card:nth-child(3){ animation-delay: .40s; }

.device-card:hover{
  transform: translateY(-8px);
  box-shadow:
    0 26px 70px rgba(0,0,0,.12),
    0 10px 26px rgba(0,0,0,.06);
}

.device-name{
  font-size: 16px;
  font-weight: 400;
  color: #0b1320;
  margin: 0;
  align-self: start;
}

.device-img{
  display: block;
  width: 170px;
  height: 210px;
  object-fit: contain;
  object-position: center;
  margin: 26px 0;
  align-self: center;
  justify-self: center;
  transform-origin: center;

  transition: transform .28s ease;
}

.device-img.is-iphone12{ transform: scale(0.86); }

.device-card:hover .device-img{ transform: scale(1.03); }
.device-card:hover .device-img.is-iphone12{ transform: scale(0.90); }

.device-prices{
  width: 100%;
  padding: 18px 8px;

  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;

  margin-top: 14px;
}

.device-divider{
  width: 1px;
  height: 44px;
  background: rgba(11,19,32,.18);
  border-radius: 999px;
}

.device-price .val{
  font-size: 16px;
  font-weight: 400;
  color: #0b1320;
  line-height: 1.2;
}

.device-price .lbl{
  margin-top: 6px;
  font-size: 13px;
  opacity: .65;
  color: #0b1320;
}

.device-buy{
  margin-top: 4px;
  width: 100%;
  max-width: 270px;
  height: 52px;
  border-radius: 12px;

  border: 1px solid rgba(11,19,32,.14);
  background: #fff;
  color: #0b1320;

  font-size: 14px;
  font-weight: 400;

  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
  box-shadow: 0 10px 26px rgba(0,0,0,.06);

  position: relative;
  align-self: end;

  transform: translateY(-8px);
}
.device-buy:hover{
  transform: translateY(-9px);
  border-color: rgba(230,0,18,.35);
  box-shadow: 0 14px 32px rgba(0,0,0,.10);
}

.device-buy::after{
  content:"";
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 11px solid transparent;
  border-right: 11px solid transparent;
  border-top: 11px solid #fff;
}

@media (max-width: 1700px){
  .devices-grid{ gap: 50px; }
}

@media (max-width: 1200px){
  .devices-inner{ padding: 0 50px 130px; }

  .devices-grid{
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .device-card{ max-width: 420px; }
}

@media (max-width: 768px){
  .devices-inner{ padding: 0 24px 120px; }
  .devices-title{ font-size: 20px; }

  .devices-grid{
    margin-top: 60px;
    gap: 44px;
  }

  .device-card{
    max-width: 380px;
    min-height: 590px;
    padding: 38px 22px 26px;
    grid-template-rows: 28px 260px 125px 1fr;
  }

  .device-img{
    width: 160px;
    height: 200px;
    margin: 24px 0;
  }

  .device-prices{ margin-top: 12px; }
  .device-buy{ margin-top: 2px; }
}

.sr-only{
  position:absolute;
  width:1px;height:1px;
  padding:0;margin:-1px;
  overflow:hidden;clip:rect(0,0,0,0);
  white-space:nowrap;border:0;
}

@keyframes premiumReveal{
  from{ opacity:0; transform:translateY(22px) scale(.985); filter:blur(10px); }
  to{ opacity:1; transform:translateY(0) scale(1); filter:blur(0); }
}
@keyframes premiumTitle{
  from{ opacity:0; transform:translateY(14px); filter:blur(8px); }
  to{ opacity:1; transform:translateY(0); filter:blur(0); }
}



/* ===================== 6. KISIM ===================== */



.voda-cta{
  margin-top: 100px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.voda-cta-inner{
  width: 100%;
  max-width: 1520px;
  padding: 0 clamp(50px, 5vw, 80px);
}

.voda-card{
  width: 100%;
  height: 200px;
  background: #fff;
  border-radius: 22px;

  box-shadow:
    0 18px 45px rgba(0,0,0,.08),
    0 6px 16px rgba(0,0,0,.04);

  padding: 24px 46px 34px;

  display: grid;
  grid-template-columns: 260px 1fr 260px;
  align-items: center;
  gap: 24px;

  opacity: 0;
  animation: premiumReveal .95s cubic-bezier(.2,.8,.2,1) forwards;
  animation-delay: .18s;
  will-change: transform, opacity, filter;
  transition: transform .28s ease, box-shadow .28s ease;
}
.voda-card:hover{
  transform: translateY(-6px);
  box-shadow:
    0 22px 60px rgba(0,0,0,.10),
    0 8px 18px rgba(0,0,0,.05);
}

.voda-logo,
.voda-text,
.voda-action{ transform: translateY(-10px); }

.voda-logo{
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.voda-logo img{
  width: 210px;
  max-width: 100%;
  height: auto;
  display: block;
}

.voda-text{
  display: flex;
  align-items: center;
}
.voda-text p{
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.55;
  color: #0b1320;
  opacity: .85;
  max-width: 760px;
}
.voda-break{ display:block; }

.voda-action{
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.voda-btn{
  border: 1px solid #e6e6e6;
  background: #fff;
  color: #0b1320;
  font-size: 14px;
  font-weight: 400;

  min-width: 240px;
  padding: 16px 60px;

  border-radius: 14px;
  cursor: pointer;
  position: relative;

  box-shadow: 0 12px 28px rgba(0,0,0,.06);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.voda-btn:hover{
  border-color:#E60012;
  box-shadow: 0 14px 34px rgba(0,0,0,.08);
  transform: translateY(-1px);
}

.voda-btn::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:-10px;
  transform:translateX(-50%);
  width:0;height:0;
  border-left:11px solid transparent;
  border-right:11px solid transparent;
  border-top:11px solid #fff;
  filter: drop-shadow(0 6px 8px rgba(0,0,0,.08));
}

@media (min-width: 768px) and (max-width: 1200px){
  .voda-cta-inner{ padding: 0 200px; }

  .voda-card{
    height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    min-height: 390px;
    padding: 28px 34px 105px;
    gap: 18px;
    text-align: center;
    justify-items: center;
  }

  .voda-logo,
  .voda-text,
  .voda-action{ transform: translateY(-6px); }

  .voda-logo{ justify-content: center; }
  .voda-text{ justify-content: center; }
  .voda-text p{ text-align: center; max-width: 620px; }

  .voda-action{
    justify-content: center;
    width: 100%;
    margin-top: 50px;
  }

  .voda-btn{
    width: min(200px, 100%);
    max-width: 520px;
    min-width: 0;
    padding: 16px 0;
  }
}

@media (max-width: 768px){
  .voda-cta-inner{ padding: 0 32px; }

  .voda-card{
    grid-template-columns: 1fr;
    height: auto;
    padding: 18px 22px 24px;
    text-align: center;
    justify-items: center;

    max-width: 420px;
    margin: 0 auto;
  }

  .voda-logo,
  .voda-text,
  .voda-action{ transform: translateY(-4px); }

  .voda-logo{ justify-content: center; }
  .voda-text{ justify-content: center; }
  .voda-text p{ text-align: center; }

  .voda-action{
    justify-content: center;
    width: 100%;
    margin: 50px 0;
  }

  .voda-btn{
    width: min(200px, 100%);
    max-width: 420px;
    min-width: 0;
    padding: 16px 0;
  }
}

@media (prefers-reduced-motion: reduce){
  .voda-card,
  .voda-btn{
    animation: none !important;
    transition: none !important;
    filter: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

@keyframes premiumReveal{
  from{ opacity:0; transform:translateY(22px) scale(.985); filter:blur(10px); }
  to{ opacity:1; transform:translateY(0) scale(1); filter:blur(0); }
}



/* ===================== 7. KISIM ===================== */



.contact{
  margin-top: 200px;
  width: 100%;
  background: #fff;
}

.contact-inner{
  width: 100%;
  max-width: 1520px;
  margin: 0 auto;
  padding: 0 50px 140px;

  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-title{
  font-size: 22px;
  font-weight: 400;
  color: #0b1320;
  text-align: center;
  line-height: 1;
  margin: 0 0 50px;
  white-space: nowrap;
}

.contact-grid{
  width: 100%;
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, minmax(260px, 1fr));
  gap: 60px;
  justify-items: center;
  align-items: start;
}

.contact-card{
  width: 100%;
  max-width: 380px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 22px 55px rgba(0,0,0,.10);
  padding: 40px 26px 30px;

  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;

  min-height: 240px;
}

.contact-icon{
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  line-height: 0;
}
.contact-icon svg{
  width: 48px;
  height: 48px;
  display: block;
}
.contact-icon svg path,
.contact-icon svg g,
.contact-icon svg *{
  fill: #0b1320 !important;
}

.contact-card-title{
  font-size: 15px;
  font-weight: 400;
  color: #0b1320;
  margin: 0;
}

.contact-card-text{
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.55;
  color: #0b1320;
  opacity: .75;
}

.contact-link{
  color: #0b1320;
  text-decoration: none;
}
.contact-link:hover{ color: red; }

@media (max-width: 1700px){
  .contact-inner{ padding-bottom: 130px; }
  .contact-grid{ gap: 50px; }
}

@media (max-width: 1200px){
  .contact-grid{ grid-template-columns: 1fr; }
  .contact-card{ max-width: 420px; }
}

@media (max-width: 768px){
  .contact-inner{ padding: 0 24px 120px; }
  .contact-title{ font-size: 20px; }
  .contact-grid{ gap: 44px; }
  .contact-card{ padding: 38px 22px 28px; }
}

@keyframes premiumReveal{
  from{ opacity:0; transform:translateY(22px) scale(.985); filter:blur(10px); }
  to{ opacity:1; transform:translateY(0) scale(1); filter:blur(0); }
}
@keyframes premiumTitle{
  from{ opacity:0; transform:translateY(14px); filter:blur(8px); }
  to{ opacity:1; transform:translateY(0); filter:blur(0); }
}

.contact-title{
  opacity: 0;
  animation: premiumTitle .85s cubic-bezier(.2,.8,.2,1) forwards;
  animation-delay: .06s;
  will-change: transform, opacity, filter;
}

.contact-grid .contact-card{
  opacity: 0;
  animation: premiumReveal .95s cubic-bezier(.2,.8,.2,1) forwards;
  will-change: transform, opacity, filter;
}
.contact-grid .contact-card:nth-child(1){ animation-delay: .14s; }
.contact-grid .contact-card:nth-child(2){ animation-delay: .28s; }
.contact-grid .contact-card:nth-child(3){ animation-delay: .42s; }



/* ===================== 8. KISIM ===================== */



.footer{
  margin-top: 50px;
  width: 100%;
  background: #fff;
}

.footer-inner{
  width: 100%;
  max-width: 1520px;
  margin: 0 auto;
  padding: 0 50px 44px;
}

.footer-top{
  padding-top: 40px;
  display: grid;
  grid-template-columns: 220px 1fr 220px;
  align-items: center;
  gap: 30px;

  opacity: 0;
  animation: premiumReveal .95s cubic-bezier(.2,.8,.2,1) forwards;
  animation-delay: .10s;
  will-change: transform, opacity, filter;
}

.footer-logo{
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  text-decoration: none;
}
.footer-logo img{
  height: 44px;
  width: auto;
  display: block;
}

.footer-menu{
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  margin: 0;
  padding: 0;
}
.footer-menu a{
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  color: #0b1320;
  transition: color .25s ease;
}
.footer-menu a:hover{ color: red; }

.footer-social{
  display: flex;
  justify-content: flex-end;
  gap: 18px;
}

.footer-social-link{
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: #0b1320;
  text-decoration: none;

  transition: color .25s ease, transform .25s ease;
  will-change: transform;
}
.footer-social-link:hover{
  color: red;
  transform: translateY(-2px) scale(1.03);
}

.footer-social-link svg{
  width: 22px;
  height: 22px;
  display: block;
}
.footer-social-link svg path,
.footer-social-link svg g,
.footer-social-link svg *{
  fill: currentColor !important;
}

.footer-line{
  margin-top: 34px;
  height: 1px;
  width: 100%;
  background: rgba(11,19,32,.14);
  border-radius: 999px;

  opacity: 0;
  animation: premiumTitle .8s cubic-bezier(.2,.8,.2,1) forwards;
  animation-delay: .22s;
  will-change: transform, opacity, filter;
}

.footer-bottom{
  margin-top: 26px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 18px;

  opacity: 0;
  animation: premiumReveal .95s cubic-bezier(.2,.8,.2,1) forwards;
  animation-delay: .30s;
  will-change: transform, opacity, filter;
}

.footer-copy,
.footer-note{
  font-size: 14px;
  font-weight: 400;
  margin: 0;
  color: #0b1320;
  opacity: .75;
}

.footer-copy{ text-align: left; }
.footer-note{ text-align: right; }

@media (max-width: 1700px){

  .footer-menu{ gap: 50px; }
}

@media (min-width: 769px) and (max-width: 1200px){
  .footer-top{
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 26px;
    text-align: center;
  }

  .footer-logo{ margin-top: -150px; }
  .footer-logo img{ height: 52px; }

  .footer-social{ justify-content: center; }

  .footer-menu{
    flex-wrap: wrap;
    gap: 28px 46px;
    justify-content: center;
    transform: translateX(-10px);
  }

  .footer-bottom{
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 22px;
  }

  .footer-copy,
  .footer-note{
    text-align: center;
  }

  .footer-note{ margin-top: 6px; }
}

@media (max-width: 768px){
  .footer-inner{ padding: 0 24px 40px; }

  .footer-top{
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 22px;
    text-align: center;
  }

  .footer-logo{ margin-top: -150px; }
  .footer-logo img{ height: 48px; }

  .footer-menu{
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px 28px;
    transform: none;
  }

  .footer-social{ justify-content: center; }

  .footer-social-link{
    width: 32px;
    height: 32px;
  }
  .footer-social-link svg{
    width: 20px;
    height: 20px;
  }

  .footer-bottom{
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 10px;
  }

  .footer-copy,
  .footer-note{
    font-size: 13px;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce){
  .footer-top,
  .footer-line,
  .footer-bottom,
  .footer-social-link{
    animation: none !important;
    transition: none !important;
    filter: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

@keyframes premiumReveal{
  from{ opacity:0; transform:translateY(22px) scale(.985); filter:blur(10px); }
  to{ opacity:1; transform:translateY(0) scale(1); filter:blur(0); }
}
@keyframes premiumTitle{
  from{ opacity:0; transform:translateY(14px); filter:blur(8px); }
  to{ opacity:1; transform:translateY(0); filter:blur(0); }
}

.page-loader{
  position: fixed;
  inset: 0;
  z-index: 9999;

  display: grid;
  place-items: center;

  background: rgba(11, 19, 32, 0.65);
  backdrop-filter: blur(2px);

  opacity: 1;
  visibility: visible;
  transition: opacity .35s ease, visibility .35s ease;
}

.page-loader.is-hidden{
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-block;

  border-top: 3px solid #fff;
  border-right: 3px solid transparent;
  border-bottom: 3px solid rgba(255,255,255,.25);
  border-left: 3px solid rgba(255,255,255,.25);

  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}

@keyframes rotation {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
  .loader { animation: none; }
}

.page-loader{
  position: fixed;
  inset: 0;
  z-index: 9999;

  display: grid;
  place-items: center;

  background: rgba(11, 19, 32, 0.65);
  backdrop-filter: blur(2px);

  opacity: 1;
  visibility: visible;
  transition: opacity .35s ease, visibility .35s ease;
}

.page-loader.is-hidden{
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader{
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-block;

  border-top: 3px solid #fff;
  border-right: 3px solid transparent;
  border-bottom: 3px solid rgba(29, 29, 29, 0.25);
  border-left: 3px solid rgba(255,255,255,.25);

  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}

@keyframes rotation{
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce){
  .loader{ animation: none; }
}
