:root{
  --bg:#070b14;
  --panel:#0b1220;
  --text:#eaf0ff;
  --muted:#a9b4d0;
  --stroke:rgba(255,255,255,.10);
  --stroke2:rgba(255,255,255,.14);
  --a1:#7c3aed;
  --a2:#22d3ee;
  --a3:#60ffa3;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family:"Manrope", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  background: var(--bg);
  color:var(--text);
  overflow-x:hidden;
}
a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }
strong{ color:#fff; }
.muted{ color:var(--muted); }

.container{
  width:min(1140px, calc(100% - 40px));
  margin-inline:auto;
}

/* Cursor glow */
.cursorGlow{
  position:fixed;
  left:0; top:0;
  width:520px; height:520px;
  transform: translate(-50%, -50%);
  pointer-events:none;
  z-index:0;
  opacity:0;
  background: radial-gradient(circle at center,
    rgba(34,211,238,.18) 0%,
    rgba(124,58,237,.10) 35%,
    rgba(0,0,0,0) 65%
  );
  filter: blur(18px);
}

/* Topbar */
.topbar{
  position:sticky;
  top:0;
  z-index:20;
  background: rgba(7,11,20,.78);
  border-bottom:1px solid var(--stroke);
}
@supports ((backdrop-filter: blur(10px)) or (-webkit-backdrop-filter: blur(10px))){
  .topbar{
    background: rgba(7,11,20,.58);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }
}
.topbar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:14px;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:900;
  letter-spacing:.2px;
}
.brand__logo{
  width:28px;
  height:28px;
  border-radius:10px;
  background: linear-gradient(135deg, rgba(124,58,237,.85), rgba(34,211,238,.85));
  box-shadow: 0 10px 35px rgba(0,0,0,.35);
}
.brand__text{ opacity:.95; }

.nav{
  display:flex;
  gap:18px;
  align-items:center;
  font-weight:900;
  color:rgba(234,240,255,.92);
}
.nav a{
  padding:10px 10px;
  border-radius:12px;
}
.nav a:hover{
  background:rgba(255,255,255,.06);
}

.hamburger{
  display:none;
  width:46px;
  height:42px;
  border-radius:14px;
  border:1px solid var(--stroke);
  background:rgba(255,255,255,.04);
  cursor:pointer;
}
.hamburger span{
  display:block;
  height:2px;
  width:18px;
  margin:5px auto;
  background:rgba(255,255,255,.86);
  border-radius:999px;
}

/* Drawer */
.drawer{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.55);
  opacity:0;
  pointer-events:none;
  transition: opacity .2s ease;
  z-index:30;
}
.drawer.is-open{
  opacity:1;
  pointer-events:auto;
}
.drawer__panel{
  position:absolute;
  right:16px;
  top:72px;
  width:min(340px, calc(100% - 32px));
  background:rgba(11,18,32,.92);
  border:1px solid var(--stroke2);
  border-radius:20px;
  padding:14px;
  box-shadow: 0 20px 70px rgba(0,0,0,.45);
}
.drawer__top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:10px;
}
.drawer__title{ font-weight:900; }
.drawer__close{
  border:1px solid var(--stroke);
  background:rgba(255,255,255,.04);
  color:var(--text);
  width:40px;
  height:38px;
  border-radius:14px;
  cursor:pointer;
}
.drawer__link{
  display:block;
  padding:12px 12px;
  border-radius:16px;
  font-weight:900;
  color:rgba(234,240,255,.92);
}
.drawer__link:hover{ background:rgba(255,255,255,.06); }
.drawer__cta{
  background: linear-gradient(135deg, rgba(124,58,237,.22), rgba(34,211,238,.14));
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:16px;
  border:1px solid var(--stroke);
  background: rgba(255,255,255,.04);
  font-weight:900;
  letter-spacing:.2px;
  cursor:pointer;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.btn:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.16);
}
.btn--primary{
  border-color: transparent;
  background: linear-gradient(135deg, rgba(124,58,237,.95), rgba(34,211,238,.85));
}
.btn--ghost{ background: rgba(255,255,255,.02); }
.btn--sm{ padding:10px 14px; border-radius:14px; }
.btn--full{ width:100%; }
.btn__icon{ opacity:.95; }

/* HERO */
.hero{
  position:relative;
  padding: 62px 0 28px;
  z-index:1;
  overflow:hidden; /* mobile overflow fix */
}
.hero__bg{
  position:absolute;
  inset:0;
  overflow:hidden;
  background:
    radial-gradient(1200px 700px at 20% 10%, rgba(124,58,237,.20), transparent 60%),
    radial-gradient(900px 600px at 85% 20%, rgba(34,211,238,.18), transparent 60%),
    radial-gradient(900px 600px at 50% 90%, rgba(96,255,163,.10), transparent 60%);
}
.hero__overlay{
  position:absolute;
  inset:0;
  background: linear-gradient(to bottom, rgba(7,11,20,.10), rgba(7,11,20,.78));
}
/* FIX: keep grid within viewport */
.hero__grid{
  position:absolute;
  top:-140px;
  left:50%;
  width:120vw;
  height:120vh;
  transform: translateX(-50%) rotate(6deg);
  opacity:.16;
  background-size: 64px 64px;
  background-image:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  pointer-events:none;
}
.hero__inner{
  position:relative;
  display:flex;
  gap:28px;
  align-items:flex-start;
}
.hero__left{ flex: 1.1; min-width:0; }
.hero__right{ flex: .9; min-width:0; }

.pill{
  display:inline-flex;
  gap:10px;
  align-items:center;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid var(--stroke);
  background:rgba(255,255,255,.05);
  font-weight:900;
  color:rgba(234,240,255,.92);
}
.pill .dot{
  width:10px;
  height:10px;
  border-radius:999px;
  background: linear-gradient(135deg, var(--a1), var(--a2));
  box-shadow: 0 0 0 6px rgba(34,211,238,.10);
}

.hero__title{
  margin:16px 0 12px;
  font-size: clamp(34px, 4vw, 54px);
  line-height:1.06;
  letter-spacing:-.8px;
}
.gradientText{
  background: linear-gradient(135deg, var(--a2), var(--a1), var(--a3));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.hero__desc{
  margin:0 0 18px;
  color:rgba(234,240,255,.86);
  font-weight:650;
  line-height:1.7;
  max-width: 62ch;
}
.hero__cta{
  display:flex;
  gap:12px;
  align-items:center;
  flex-wrap:wrap;
}
.hero__stats{
  margin-top:20px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
.stat{
  padding:14px;
  border-radius:18px;
  border:1px solid var(--stroke);
  background: rgba(255,255,255,.04);
  flex: 1 1 220px;
  min-width: 200px;
}
.stat__num{ font-size:26px; font-weight:900; }
.stat__label{
  margin-top:4px;
  color: rgba(234,240,255,.78);
  font-weight:850;
  font-size:13px;
}

/* Showcase Card */
.showcaseCard{
  position:relative;
  padding:16px;
  border-radius:22px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(11,18,32,.55);
  box-shadow: 0 24px 80px rgba(0,0,0,.45);
  overflow:hidden;
}
.showcaseCard::before{
  content:"";
  position:absolute;
  inset:-2px;
  background:
    radial-gradient(600px 220px at 20% 0%, rgba(124,58,237,.22), transparent 55%),
    radial-gradient(600px 240px at 90% 10%, rgba(34,211,238,.18), transparent 55%);
  pointer-events:none;
}
.showcaseCard > *{ position:relative; }

.showcaseCard__top{
  display:flex;
  gap:10px;
  justify-content:flex-end;
  margin-bottom:10px;
}
.badge{
  padding:8px 10px;
  border-radius:999px;
  border:1px solid var(--stroke);
  background: rgba(255,255,255,.04);
  font-weight:900;
  font-size:12px;
}
.badge--soft{
  background: linear-gradient(135deg, rgba(34,211,238,.14), rgba(96,255,163,.06));
}

.preview{ border-radius:18px; overflow:hidden; }
.preview__screen{
  border-radius:18px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(7,11,20,.55);
  overflow:hidden;
}
.preview__header{
  display:flex;
  gap:8px;
  padding:10px 12px;
  border-bottom:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
}
.preview__dot{ width:10px; height:10px; border-radius:999px; background: rgba(255,255,255,.22); }
.preview__content{ padding:16px 16px 14px; }

.chip{
  display:inline-flex;
  padding:6px 10px;
  border-radius:999px;
  background: rgba(34,211,238,.14);
  border:1px solid rgba(34,211,238,.20);
  font-weight:900;
  font-size:12px;
  margin-bottom:10px;
}
.preview__content h3{ margin:0 0 8px; font-size:18px; letter-spacing:-.3px; }
.preview__content p{ margin:0 0 12px; color: rgba(234,240,255,.80); font-weight:650; line-height:1.65; }

.miniGrid{ display:flex; flex-wrap:wrap; gap:10px; margin-bottom:12px; }
.miniCard{
  padding:10px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  flex: 1 1 calc(50% - 10px);
  min-width: 180px;
}
.miniCard strong{ display:block; font-weight:900; font-size:13px; }
.miniCard span{ color: rgba(234,240,255,.78); font-weight:850; font-size:12px; }

.progressBar__label{ display:block; font-size:12px; font-weight:900; color: rgba(234,240,255,.78); margin-bottom:8px; }
.progressBar__track{
  height:10px;
  border-radius:999px;
  background: rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.10);
  overflow:hidden;
}
.progressBar__fill{
  height:100%;
  width:72%;
  border-radius:999px;
  background: linear-gradient(90deg, rgba(34,211,238,.95), rgba(124,58,237,.95), rgba(96,255,163,.85));
}

.floatingNote{
  margin-top:12px;
  display:flex;
  gap:10px;
  align-items:flex-start;
  padding:12px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(11,18,32,.60);
  box-shadow: 0 18px 60px rgba(0,0,0,.35);
}
.spark{
  width:32px;
  height:32px;
  display:grid;
  place-items:center;
  border-radius:12px;
  background: linear-gradient(135deg, rgba(124,58,237,.22), rgba(34,211,238,.16));
  border:1px solid rgba(255,255,255,.12);
  font-weight:900;
}

/* Sections */
.section{ padding:74px 0; position:relative; z-index:1; }
.section--alt{
  background: rgba(255,255,255,.02);
  border-top:1px solid rgba(255,255,255,.06);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.sectionHead{ text-align:center; margin-bottom:22px; }
.sectionHead h2{ margin:0 0 8px; font-size: clamp(26px, 3vw, 38px); letter-spacing:-.6px; }
.sectionHead p{ margin:0 auto; color: rgba(234,240,255,.80); font-weight:650; max-width:70ch; line-height:1.7; }
.sectionHead--left{ text-align:left; }
.sectionHead--left p{ margin:0; }

/* Cards */
.cards{ display:flex; flex-wrap:wrap; gap:14px; }
.card{
  padding:16px;
  border-radius:22px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(11,18,32,.40);
  overflow:hidden;
  transition: transform .15s ease, border-color .15s ease;
  flex: 1 1 calc(50% - 14px);
  min-width: 280px;
}
.card:hover{ transform: translateY(-2px); border-color: rgba(255,255,255,.18); }
.card__icon{
  width:44px; height:44px;
  border-radius:16px;
  display:grid; place-items:center;
  background: linear-gradient(135deg, rgba(34,211,238,.14), rgba(124,58,237,.14));
  border:1px solid rgba(255,255,255,.12);
  font-weight:900;
  margin-bottom:10px;
}
.card h3{ margin:0 0 6px; letter-spacing:-.2px; }
.card p{ margin:0 0 12px; color: rgba(234,240,255,.80); font-weight:650; line-height:1.65; }
.list{ margin:0 0 14px; padding-left:18px; color: rgba(234,240,255,.80); font-weight:850; }
.list li{ margin:6px 0; }
.card__img{
  border-radius:18px;
  border:1px solid rgba(255,255,255,.10);
  height:220px;
  width:100%;
  object-fit: cover;
}

/* Split */
.split{ display:flex; gap:18px; align-items:flex-start; }
.split__left{ flex: 1.05; min-width:0; }
.split__right{ flex: .95; min-width:0; }

.featureGrid{ display:flex; flex-wrap:wrap; gap:12px; margin-top:16px; }
.feature{
  padding:14px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  flex: 1 1 calc(50% - 12px);
  min-width: 260px;
}
.feature__title{ font-weight:900; margin-bottom:6px; }
.feature__desc{ color: rgba(234,240,255,.78); font-weight:650; line-height:1.6; }

.callout{
  margin-top:14px;
  padding:14px;
  border-radius:20px;
  border:1px solid rgba(34,211,238,.18);
  background: rgba(34,211,238,.06);
  display:flex;
  gap:12px;
}
.callout__icon{
  width:44px; height:44px;
  border-radius:16px;
  display:grid; place-items:center;
  background: rgba(34,211,238,.14);
  border:1px solid rgba(255,255,255,.12);
  font-weight:900;
}

.mediaStack{ display:flex; flex-direction:column; gap:12px; }
.mediaCard{
  border-radius:22px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(11,18,32,.35);
}
.mediaCard img{ height:320px; width:100%; object-fit: cover; }
.mediaCard--small img{ height:210px; }
.mediaCard figcaption{ padding:12px 14px; color: rgba(234,240,255,.78); font-weight:850; }

/* Portfolio Slider */
.portfolioSlider{
  position: relative;
  padding: 0 50px;
}

.portfolioWrapper{
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  margin: 0 -20px;
  padding: 0 20px;
}

.portfolioWrapper::-webkit-scrollbar{
  display: none;
}

.portfolio{ 
  display: flex;
  gap: 20px;
  padding-bottom: 20px;
}

.work{
  border-radius:22px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(11,18,32,.30);
  cursor:pointer;
  transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
  flex: 0 0 360px;
  min-width: 360px;
}

.work:hover{ 
  transform: translateY(-4px); 
  border-color: rgba(255,255,255,.18);
  box-shadow: 0 12px 28px rgba(0,0,0,.3);
}

.work--link{ display: block; }
.work--link:hover{
  border-color: rgba(34,211,238,.35);
  box-shadow: 0 12px 32px rgba(34,211,238,.20);
}
.work--link .work__title::after{
  content: " ðŸ”—";
  opacity: 0.7;
  font-size: 14px;
  margin-left: 4px;
}

.work img{ 
  height: 240px;
  width: 100%; 
  object-fit: cover;
  display: block;
  background: rgba(255,255,255,.02);
}

.work__meta{ padding:16px; }
.work__title{ 
  font-weight:900; 
  margin-bottom:10px;
  font-size: 17px;
  line-height: 1.3;
}

.work__tags{ display:flex; flex-wrap:wrap; gap:8px; }
.work__tags span{
  padding:6px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  font-weight:900;
  font-size:12px;
  color: rgba(234,240,255,.84);
}

/* Slider Buttons */
.sliderBtn{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(11,18,32,.85);
  backdrop-filter: blur(12px);
  color: #fff;
  font-size: 28px;
  font-weight: 300;
  cursor: pointer;
  transition: all .2s ease;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.sliderBtn:hover{
  background: rgba(34,211,238,.20);
  border-color: rgba(34,211,238,.40);
  box-shadow: 0 4px 16px rgba(34,211,238,.25);
  transform: translateY(-50%) scale(1.05);
}

.sliderBtn:active{
  transform: translateY(-50%) scale(0.95);
}

.sliderBtn--prev{
  left: 0;
}

.sliderBtn--next{
  right: 0;
}

.sliderBtn:disabled{
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}

@media (max-width: 768px) {
  .portfolioSlider{
    padding: 0 40px;
  }
  
  .sliderBtn{
    width: 36px;
    height: 36px;
    font-size: 24px;
  }
  
  .work{
    flex: 0 0 300px;
    min-width: 300px;
  }
}

@media (max-width: 480px) {
  .portfolioSlider{
    padding: 0;
  }
  
  .sliderBtn{
    display: none;
  }
  
  .work{
    flex: 0 0 280px;
    min-width: 280px;
  }
}

.center{ display:flex; justify-content:center; margin-top:24px; }

/* Steps */
.steps{ display:flex; flex-wrap:wrap; gap:12px; }
.step{
  padding:14px;
  border-radius:22px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(11,18,32,.30);
  display:flex;
  gap:12px;
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
}
.step__num{
  width:44px; height:44px;
  border-radius:16px;
  display:grid; place-items:center;
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.12);
  font-weight:900;
}
.step h3{ margin:0 0 6px; }
.step p{ margin:0; color: rgba(234,240,255,.80); font-weight:650; line-height:1.6; }

/* FAQ */
.faq{
  width:min(920px, 100%);
  margin:0 auto;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.faq__q{
  width:100%;
  text-align:left;
  padding:14px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(11,18,32,.28);
  color: rgba(234,240,255,.92);
  font-weight:900;
  display:flex;
  align-items:center;
  justify-content:space-between;
  cursor:pointer;
}
.faq__icon{ font-size:18px; opacity:.85; }
.faq__a{
  display:none;
  padding: 0 14px 14px;
  color: rgba(234,240,255,.80);
  font-weight:650;
  line-height:1.7;
}
.faq__a p{ margin:0; }

/* Contact */
.contact{ display:flex; gap:14px; align-items:flex-start; }
.contact__left{ flex:1; min-width:0; }
.contact__left h2{ margin:0 0 8px; font-size: clamp(26px, 3vw, 40px); letter-spacing:-.6px; }
.contact__left p{ margin:0 0 14px; color: rgba(234,240,255,.80); font-weight:650; line-height:1.7; }
.contactCards{ display:flex; flex-direction:column; gap:10px; }
.infoCard{
  padding:14px;
  border-radius:22px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(11,18,32,.28);
  display:flex;
  gap:12px;
  align-items:center;
}
.infoCard__icon{
  width:44px; height:44px;
  border-radius:16px;
  display:grid; place-items:center;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  font-weight:900;
}

.form{
  flex:1; min-width:0;
  padding:16px;
  border-radius:22px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(11,18,32,.35);
}
.form__row{ display:flex; gap:10px; flex-wrap:wrap; }
.form__row > label{ flex: 1 1 260px; min-width: 220px; }

label{
  display:flex;
  flex-direction:column;
  gap:8px;
  font-weight:900;
  color: rgba(234,240,255,.88);
  margin-bottom:10px;
}
input, select, textarea{
  width:100%;
  padding:12px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  color: var(--text);
  outline:none;
  font-weight:850;
}
input::placeholder, textarea::placeholder{
  color: rgba(234,240,255,.45);
  font-weight:700;
}
input:focus, select:focus, textarea:focus{
  border-color: rgba(34,211,238,.30);
  box-shadow: 0 0 0 6px rgba(34,211,238,.10);
}
.form__note{ margin:12px 0 0; color: rgba(234,240,255,.68); font-weight:650; line-height:1.6; }

.toast{
  display:none;
  margin-top:12px;
  padding:12px 14px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(11,18,32,.75);
  color: rgba(234,240,255,.92);
  font-weight:850;
}

/* WhatsApp Floating */
.wa-float{
  position:fixed;
  right:16px;
  bottom:16px;
  z-index:40;
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px 14px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(11,18,32,.75);
  box-shadow: 0 18px 60px rgba(0,0,0,.35);
  backdrop-filter: blur(10px);
}
.wa-float:hover{ transform: translateY(-1px); }
.wa-icon{
  width:34px; height:34px;
  display:grid; place-items:center;
  border-radius:14px;
  background: linear-gradient(135deg, rgba(96,255,163,.25), rgba(34,211,238,.18));
  border:1px solid rgba(255,255,255,.12);
  font-size:18px;
}
.wa-text{ font-weight:900; }

/* Footer */
.footer{
  padding:26px 0;
  border-top:1px solid rgba(255,255,255,.06);
  background: rgba(0,0,0,.12);
}
.footer__inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
}
.footer__right{
  display:flex;
  gap:10px;
  align-items:center;
  color: rgba(234,240,255,.78);
  font-weight:850;
}
.sep{ opacity:.35; }

/* Responsive */
@media (max-width: 980px){
  .nav{ display:none; }
  .hamburger{ display:block; }

  .hero__inner{ flex-direction:column; }
  .split{ flex-direction:column; }
  .contact{ flex-direction:column; }

  .card{ flex: 1 1 100%; }
  .feature{ flex: 1 1 100%; }
  .work{ flex: 1 1 100%; }
  .step{ flex: 1 1 100%; }

  .stat{ flex: 1 1 100%; }
  .form__row > label{ flex: 1 1 100%; }

  .hero__grid{
    top:-90px;
    width:140vw;
    height:95vh;
  }
}

/* little utilities */
.scrollHint{
  margin-top: 26px;
  display:flex; justify-content:center; align-items:center;
  gap:12px;
  color: rgba(234,240,255,.68);
  font-weight:900;
}
.scrollHint__line{
  width:52px; height:1px;
  background: rgba(255,255,255,.18);
}

/* PORTFOLIO SLIDER - Mobil Uyumlu */

.portfolioSlider {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.portfolioWrapper {
  overflow: visible; /* Önemli: visible olmalı */
  width: 100%;
  position: relative;
}

.portfolio {
  display: flex;
  gap: 20px;
  will-change: transform;
  touch-action: pan-y; /* Dikey kaydırmayı engellemez */
  user-select: none;
}

.work {
  flex: 0 0 360px; /* Sabit genişlik */
  min-width: 360px;
  max-width: 360px;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.2s;
  cursor: grab;
}

.work:active {
  cursor: grabbing;
}

.work img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.work__meta {
  padding: 20px;
}

.work__title {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
}

.work__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.work__tags span {
  padding: 4px 12px;
  background: rgba(96,255,163,0.1);
  color: #60ffa3;
  border-radius: 6px;
  font-size: 13px;
}

/* Slider Buttons */
.sliderBtn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(11,18,32,0.9);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

.sliderBtn:hover:not(:disabled) {
  background: rgba(96,255,163,0.15);
  border-color: #60ffa3;
  transform: translateY(-50%) scale(1.05);
}

.sliderBtn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.sliderBtn--prev {
  left: -24px;
}

.sliderBtn--next {
  right: -24px;
}

/* MOBILE - Çok Önemli */
@media (max-width: 768px) {
  .work {
    flex: 0 0 280px;
    min-width: 280px;
    max-width: 280px;
  }
  
  .work img {
    height: 180px;
  }
  
  .work__meta {
    padding: 16px;
  }
  
  .work__title {
    font-size: 16px;
  }
  
  .sliderBtn {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
  
  .sliderBtn--prev {
    left: 8px;
  }
  
  .sliderBtn--next {
    right: 8px;
  }
}

@media (max-width: 480px) {
  .work {
    flex: 0 0 260px;
    min-width: 260px;
    max-width: 260px;
  }
  
  .portfolio {
    gap: 16px;
  }
}